body {
    font-family: "Cairo", sans-serif;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before,
body::after {
    content: "";
    position: fixed;
    border-radius: 50%;
    z-index: -1;
    filter: blur(100px);
    opacity: 0.15;
    animation: pulse 10s infinite alternate ease-in-out;
}

body::before {
    background-color: #ff007f;
    width: 500px;
    height: 500px;
    top: -150px;
    right: -100px;
}

body::after {
    background-color: #0070f3;
    width: 600px;
    height: 600px;
    bottom: -150px;
    left: -100px;
    animation-delay: -5s;
}

@media (max-width: 768px) {
    body::before,
    body::after {
        width: 250px;
        height: 250px;
        filter: blur(60px);
        opacity: 0.12;
    }

    body::before {
        top: -50px;
        right: -50px;
    }

    body::after {
        bottom: -50px;
        left: -50px;
    }
}

@keyframes pulse {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, 20px) scale(1.1);
    }
}

.login-container {
    min-height: 100vh;
    padding: 2rem 1rem;
}

.side-img {
    width: 75px;
    height: 75px;
    border-radius: 100px;
}

@media (max-width: 768px) {
    .login-container {
        padding: 0;
    }

    .login-card {
        border-radius: 0;
        max-width: 100%;
        margin: 0;
        min-height: 100vh;
    }
}

.login-card {
    border-radius: 15px;
    padding: 2rem;
    max-width: 500px;
    margin: auto;
}

.welcome-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.main-slogan {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 0;
    font-weight: 500;
}

.sub-slogan {
    font-size: 0.95rem;
    color: #718096;
    margin-top: 5px;
}

.counter-unit {
    font-size: 0.85rem;
    color: #64748b;
    margin-right: 5px;
}

.origin-tag {
    font-size: 0.9rem;
    color: #94a3b8;
    background: #f8fafc;
    display: inline-flex;
    align-items: center;
    padding: 6px 15px;
    border-radius: 20px;
}

.gaza-highlight {
    color: #ef4444;
    font-weight: bold;
    margin-right: 4px;
}

.heart-icon {
    margin-left: 8px;
}

.app-logo {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.app-logo:hover {
    transform: scale(1.05);
}

.form-control {
    border-radius: 10px;
    padding: 0.75rem 1rem;
    border: 1px solid #e0e0e0;
}

.form-control:focus {
    border: 2px solid transparent;
    background-image:
        linear-gradient(white, white),
        linear-gradient(30deg, #ff9a9e, #a18cd1, #fbc2eb);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    outline: none;
}

.btn-primary {
    background-color: var(--x-pink-500);
    border: none;
    border-radius: 8px;
    padding: 12px 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-color);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-light);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.1);
    background: var(--bg-light);
}

.social-icons svg {
    width: 20px;
    height: 20px;
    fill: var(--bg-light);
}

.social-icons a:hover svg {
    fill: #b4b6ff23;
}

.rating-section {
    background: var(--bg-light);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.rating-bars .progress {
    height: 8px;
    border-radius: 4px;
    background-color: #e9ecef;
}

.rating-bars .progress-bar {
    background: linear-gradient(30deg, #ff9a9e, #a18cd1, #fbc2eb);
    background-size: 200% 200%;
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1rem 0;
    box-shadow: 0 2px 10px var(--shadow-color);
}

.swiper-button-next,
.swiper-button-prev {
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 5px var(--shadow-color);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 14px;
    color: var(--primary-color);
}

#userCounter {
    transition: color 0.3s ease;
    font-weight: bold;
    font-size: 20px;
}

.google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    color: #444;
    border: 1px solid #dadce0;
    border-radius: 8px;
    padding: 8px 16px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 10px;
}

.google-btn:hover {
    background-color: #f8f9fa;
    border-color: #d2e3fc;
    color: #202124;
}

.google-icon-wrapper {
    margin-left: 12px;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .login-card {
        padding: 1.5rem;
    }

    .rating-section {
        padding: 1rem;
    }

    .social-icons a {
        width: 35px;
        height: 35px;
    }

    .social-icons svg {
        width: 18px;
        height: 18px;
    }
}
