/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #000;
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
    line-height: 1.6;
}

/* Enhanced Background with Multiple Layers */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background:
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 226, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, #1e1e2e 0%, #0f0f23 100%);
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: float 8s ease-in-out infinite;
    opacity: 0.6;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #4834d4, #be2edd);
    top: 50%;
    right: -10%;
    animation-delay: 3s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: linear-gradient(45deg, #0abde3, #006ba6);
    bottom: -10%;
    left: 30%;
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-30px) translateX(20px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translateY(-60px) translateX(-20px) rotate(180deg) scale(0.9);
    }
    75% {
        transform: translateY(-30px) translateX(-30px) rotate(270deg) scale(1.05);
    }
}

/* Enhanced Glassmorphism Effect */
.glass {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

/* Floating Logout Button */
.floating-logout {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 1000;
}

.logout-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 0, 0, 0.4);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.logout-btn:hover {
    background: rgba(255, 107, 157, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
    border-color: rgba(255, 107, 157, 0.4);
    color: #ff8cc8;
}

.logout-btn .material-icons {
    font-size: 1.1rem;
}

/* Brand Header */
.brand-header {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.logo .material-icons {
    font-size: 2.5rem;
    background: linear-gradient(45deg, #ff6b9d, #4834d4, #0abde3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)); }
    50% { filter: drop-shadow(0 4px 20px rgba(255, 107, 157, 0.6)); }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Sections */
.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    position: relative;
}

.hidden {
    display: none;
}

/* Landing Section */
.hero-content {
    text-align: center;
    max-width: 1000px;
    position: relative;
    z-index: 10;
}


.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 4px 20px rgba(0, 0, 0, 0.6);
    color: #ffffff;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gradient-text {
    background: linear-gradient(45deg, #ff8cc8, #6c5ce7, #00d2d3, #fd79a8);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease-in-out infinite;
    position: relative;
    text-shadow: none;
}

.gradient-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #ff8cc8, #6c5ce7, #00d2d3, #fd79a8);
    background-size: 300% 300%;
    opacity: 0.6;
    filter: blur(15px);
    z-index: -1;
    animation: gradient-shift 4s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 4rem;
    opacity: 1;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    color: #ffffff;
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.8),
        0 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.feature-card {
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.feature-card .material-icons {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ff6b9d, #4834d4, #0abde3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.feature-card:hover .material-icons {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #ffffff;
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.8),
        0 2px 10px rgba(0, 0, 0, 0.5);
}

.feature-card p {
    opacity: 1;
    line-height: 1.6;
    font-size: 1.1rem;
    color: #ffffff;
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.8),
        0 2px 8px rgba(0, 0, 0, 0.4);
}

/* CTA Section */
.cta-section {
    margin-top: 4rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, #ff6b9d, #4834d4);
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.8),
        0 2px 8px rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow:
        0 15px 40px rgba(255, 107, 157, 0.4),
        0 5px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #ff8cc8, #6c5ce7);
}

.cta-button .material-icons {
    font-size: 1.75rem;
    transition: transform 0.3s ease;
}

.cta-button:hover .material-icons {
    transform: rotate(90deg) scale(1.1);
}

.cta-subtitle {
    opacity: 1;
    font-size: 1rem;
    color: #ffffff;
    margin-top: 1rem;
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.8),
        0 2px 8px rgba(0, 0, 0, 0.4);
}


/* Login Section */
.login-card {
    max-width: 450px;
    width: 100%;
    padding: 4rem 3rem;
    text-align: center;
    margin: 0 auto;
}

.login-header {
    margin-bottom: 3rem;
}

.login-header .material-icons {
    font-size: 5rem;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #ff6b9d, #4834d4, #0abde3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    animation: bounce-gentle 2s ease-in-out infinite;
}

@keyframes bounce-gentle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.login-header h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.8),
        0 2px 10px rgba(0, 0, 0, 0.5);
}

.login-header p {
    opacity: 1;
    font-size: 1.1rem;
    color: #ffffff;
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.8),
        0 2px 8px rgba(0, 0, 0, 0.4);
}

.google-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    padding: 1.25rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    border: none;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.google-login-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.google-icon {
    width: 24px;
    height: 24px;
}

.login-footer p {
    font-size: 0.85rem;
    opacity: 1;
    line-height: 1.5;
    color: #ffffff;
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.8),
        0 2px 6px rgba(0, 0, 0, 0.3);
}

/* Issue Form */
.issue-card {
    max-width: 700px;
    width: 100%;
    padding: 4rem 3rem;
    margin: 0 auto;
}

.issue-header {
    text-align: center;
    margin-bottom: 3rem;
}

.issue-header .material-icons {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ff6b9d, #4834d4, #0abde3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.issue-header h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.8),
        0 2px 10px rgba(0, 0, 0, 0.5);
}

.issue-header p {
    opacity: 1;
    font-size: 1.1rem;
    color: #ffffff;
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.8),
        0 2px 8px rgba(0, 0, 0, 0.4);
}

.issue-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-group label {
    font-weight: 600;
    color: #ffffff;
    font-size: 1.1rem;
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.8),
        0 2px 6px rgba(0, 0, 0, 0.4);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 1rem;
    backdrop-filter: blur(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b9d;
    box-shadow:
        0 0 0 3px rgba(255, 107, 157, 0.2),
        0 4px 20px rgba(255, 107, 157, 0.1);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
    line-height: 1.6;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group select option {
    background: #1e1e2e;
    color: #ffffff;
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(45deg, #ff6b9d, #4834d4);
    color: #ffffff;
    border: none;
    border-radius: 16px;
    font-size: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow:
        0 12px 40px rgba(255, 107, 157, 0.4),
        0 4px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #ff8cc8, #6c5ce7);
}

/* Calendar Section */
.calendar-card {
    max-width: 900px;
    width: 100%;
    padding: 4rem 3rem;
    margin: 0 auto;
}

.calendar-header {
    text-align: center;
    margin-bottom: 3rem;
}

.calendar-header .material-icons {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ff6b9d, #4834d4, #0abde3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.calendar-header h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.calendar-header p {
    opacity: 0.8;
    font-size: 1.1rem;
    color: #e0e0e0;
}

.cal-embed {
    width: 100%;
    min-height: 600px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Thank You Section */
.thank-you-card {
    max-width: 700px;
    width: 100%;
    padding: 4rem 3rem;
    text-align: center;
    margin: 0 auto;
}

.success-icon {
    margin-bottom: 2rem;
}

.success-icon .material-icons {
    font-size: 6rem;
    color: #00d2d3;
    animation: success-bounce 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 20px rgba(0, 210, 211, 0.5));
}

@keyframes success-bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) scale(1); }
    40% { transform: translateY(-15px) scale(1.1); }
    60% { transform: translateY(-8px) scale(1.05); }
}

.thank-you-card h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.thank-you-card > p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    line-height: 1.6;
    color: #e0e0e0;
}

.next-steps {
    text-align: left;
    margin-bottom: 3rem;
}

.next-steps h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.step:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.step .material-icons {
    font-size: 2.5rem;
    color: #ff6b9d;
    margin-top: 0.25rem;
    filter: drop-shadow(0 2px 8px rgba(255, 107, 157, 0.3));
}

.step h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.step p {
    opacity: 0.8;
    line-height: 1.6;
    color: #e0e0e0;
}

.home-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 2.5rem;
    background: linear-gradient(45deg, #ff6b9d, #4834d4);
    color: #ffffff;
    border: none;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.home-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 107, 157, 0.4);
    background: linear-gradient(45deg, #ff8cc8, #6c5ce7);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .hero-title {
        font-size: clamp(2.5rem, 7vw, 4.5rem);
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }
}

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

    .floating-logout {
        top: 1rem;
        right: 1rem;
    }

    .logout-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .logout-text {
        display: none;
    }

    .section {
        padding: 2rem 0;
    }

    .brand-header {
        margin-bottom: 2rem;
    }

    .logo {
        font-size: 1.3rem;
    }

    .hero-title {
        font-size: clamp(2rem, 6vw, 3.5rem);
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }


    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }


    .login-card,
    .issue-card,
    .calendar-card,
    .thank-you-card {
        padding: 3rem 2rem;
    }

    .cta-button {
        padding: 1.25rem 2rem;
        font-size: 1.1rem;
    }

    .steps {
        gap: 1.5rem;
    }

    .step {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .step .material-icons {
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .floating-logout {
        top: 0.75rem;
        right: 0.75rem;
    }

    .hero-title {
        font-size: clamp(1.8rem, 5vw, 2.8rem);
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .login-card,
    .issue-card,
    .calendar-card,
    .thank-you-card {
        padding: 2rem 1.5rem;
    }

    .cta-button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1rem 1.25rem;
    }
}

/* Additional Enhancements */
.section {
    scroll-snap-align: start;
}

html {
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes shimmer {
    0% { background-position: -200px 0; }
    100% { background-position: calc(200px + 100%) 0; }
}

.loading {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    background-size: 200px 100%;
    animation: shimmer 1.5s infinite;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ff6b9d, #4834d4);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #ff8cc8, #6c5ce7);
}