/* ============================================
   GLOBAL STYLES & RESET
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary-dark: #0a0e27;
    --secondary-dark: #151932;
    --accent-blue: #00d4ff;
    --accent-green: #00ff88;
    --neon-purple: #b026ff;
    --gold: #ffd700;
    --white: #ffffff;
    --light-gray: #e0e0e0;
    --text-gray: #a0a0a0;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #00d4ff 0%, #00ff88 100%);
    --gradient-secondary: linear-gradient(135deg, #b026ff 0%, #00d4ff 100%);
    --gradient-india: linear-gradient(90deg, #ff9933 0%, #ffffff 50%, #138808 100%);
    
    /* Fonts */
    --font-heading: 'Bebas Neue', cursive;
    --font-subheading: 'Rajdhani', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--primary-dark);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

body.loaded {
    overflow-x: hidden;
}

/* ============================================
   PRELOADER / LOADER
   ============================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0e27 0%, #151932 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    position: relative;
}

.loader-logo {
    margin-bottom: 30px;
    animation: logoFloat 2s ease-in-out infinite;
}

.loader-logo i {
    font-size: 5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.6));
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.loader-title {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 900;
    letter-spacing: 15px;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 60px rgba(0, 212, 255, 0.8);
    animation: titlePulse 2s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(0, 255, 136, 0.8));
    }
}

.loader-subtitle-container {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 40px;
}

.loader-subtitle {
    font-family: var(--font-subheading);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    letter-spacing: 3px;
    background: var(--gradient-india);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
}

.loader-cursor {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--accent-blue);
    animation: cursorBlink 0.8s infinite;
    font-weight: 100;
}

@keyframes cursorBlink {
    0%, 49% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0;
    }
}

.loader-progress {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.loader-progress-bar {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 10px;
    width: 0%;
    animation: progressBar 8s ease-in-out forwards;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
}

@keyframes progressBar {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

/* ============================================
   BACKGROUND LAYERS
   ============================================ */
.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95) 0%, rgba(21, 25, 50, 0.95) 100%);
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,212,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    z-index: -2;
}

.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(176, 38, 255, 0.05) 0%, transparent 50%);
    z-index: -1;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

/* ============================================
   MAIN WRAPPER
   ============================================ */
.main-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

/* ============================================
   LOGO SECTION
   ============================================ */
.logo-section {
    margin-bottom: 50px;
}

.logo-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

/* Typing Animation */
.typing-container {
    margin-top: 25px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.typed-text {
    font-family: var(--font-subheading);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--gradient-india);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: flash 1.5s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 153, 51, 0.5);
}

@keyframes flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; filter: brightness(1.3); }
}

.typed-cursor {
    display: inline-block;
    width: 3px;
    height: 2.2rem;
    background: var(--accent-blue);
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

.logo-wrapper:hover {
    border-color: var(--accent-blue);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
    transform: translateY(-5px);
}

.logo-wrapper i {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    0%, 100% { transform: rotateY(0deg); }
    50% { transform: rotateY(180deg); }
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    letter-spacing: 3px;
    color: var(--white);
}

.brand-name .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   CRICKET THEMED ELEMENTS
   ============================================ */
.cricket-elements {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.cricket-ball {
    position: absolute;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at 30% 30%, #ff4444, #cc0000);
    border-radius: 50%;
    opacity: 0.15;
    animation: float 15s ease-in-out infinite;
}

.cricket-ball::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    width: 80%;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%);
}

.cricket-ball::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    width: 80%;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) translateY(8px);
}

.cricket-ball-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.cricket-ball-2 {
    top: 70%;
    right: 15%;
    animation-delay: 7s;
}

.cricket-bat {
    position: absolute;
    width: 150px;
    height: 20px;
    background: linear-gradient(90deg, #8B4513, #D2691E);
    border-radius: 10px;
    opacity: 0.1;
    animation: swing 20s ease-in-out infinite;
}

.cricket-bat::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 80px;
    background: linear-gradient(180deg, #654321, #8B4513);
    border-radius: 4px;
}

.cricket-bat-1 {
    top: 40%;
    right: 5%;
    transform: rotate(-45deg);
}

.cricket-stumps {
    position: absolute;
    bottom: 10%;
    left: 5%;
    display: flex;
    gap: 8px;
    opacity: 0.12;
}

.cricket-stumps::before,
.cricket-stumps::after {
    content: '';
    width: 6px;
    height: 100px;
    background: linear-gradient(180deg, #DEB887, #8B7355);
    border-radius: 3px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-50px) rotate(180deg);
    }
}

@keyframes swing {
    0%, 100% {
        transform: rotate(-45deg);
    }
    50% {
        transform: rotate(-60deg);
    }
}

/* ============================================
   CRICKET FEATURES SECTION
   ============================================ */
.cricket-features {
    margin: 50px 0;
    padding: 40px 0;
}

.features-title {
    font-family: var(--font-subheading);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.feature-card {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    border-color: var(--accent-blue);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.4);
    transform: translateY(-10px) scale(1.05);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gradient-primary);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.feature-icon i {
    font-size: 2.5rem;
    color: var(--primary-dark);
}

.feature-card h4 {
    font-family: var(--font-subheading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.feature-card p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ============================================
   HERO SECTION
   ============================================ */
.main-headline {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 40px rgba(0, 212, 255, 0.5);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.7)); }
    50% { filter: drop-shadow(0 0 40px rgba(0, 255, 136, 0.9)); }
}

.sub-headline {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--light-gray);
    margin-bottom: 40px;
    line-height: 1.8;
    font-weight: 300;
}

.sub-headline strong {
    color: var(--accent-blue);
    font-weight: 600;
}

.tagline-emphasis {
    display: block;
    margin-top: 15px;
    font-size: 1.5rem;
    font-weight: 600;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-tagline {
    margin-bottom: 60px;
}

.tagline-box {
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 25px 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.tagline-box p {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 500;
    color: var(--white);
}

.india-gradient {
    font-weight: 700;
    background: var(--gradient-india);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

/* ============================================
   COUNTDOWN TIMER
   ============================================ */
.countdown-section {
    margin-bottom: 60px;
}

.countdown-title {
    font-family: var(--font-subheading);
    font-size: 2rem;
    letter-spacing: 5px;
    margin-bottom: 30px;
    color: var(--accent-green);
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
}

.countdown-timer {
    max-width: 600px;
    margin: 0 auto;
}

.time-box {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(0, 212, 255, 0.4);
    border-radius: 15px;
    padding: 25px 15px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.time-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s linear infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.time-box:hover {
    border-color: var(--accent-blue);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
    transform: translateY(-10px);
}

.time-value {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}

.time-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-gray);
    font-weight: 500;
}

/* ============================================
   EMAIL SUBSCRIPTION FORM
   ============================================ */
.notify-section {
    margin-bottom: 60px;
}

.notify-title {
    font-family: var(--font-subheading);
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--accent-blue);
    letter-spacing: 2px;
}

.subscribe-form {
    max-width: 600px;
    margin: 0 auto;
}

.subscribe-form .input-group {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    border-radius: 50px;
    overflow: hidden;
}

.email-input {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(0, 212, 255, 0.3);
    color: var(--white);
    padding: 18px 25px;
    font-size: 1rem;
    border-radius: 50px 0 0 50px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.email-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-blue);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
    color: var(--white);
    outline: none;
}

.email-input::placeholder {
    color: var(--text-gray);
}

.btn-subscribe {
    background: var(--gradient-primary);
    border: none;
    padding: 18px 40px;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-subscribe::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-subscribe:hover::before {
    width: 300px;
    height: 300px;
}

.btn-subscribe:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.6);
}

.btn-subscribe .btn-text {
    position: relative;
    z-index: 1;
    margin-right: 10px;
}

.btn-subscribe i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.btn-subscribe:hover i {
    transform: translateX(5px);
}

.form-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background: rgba(0, 255, 136, 0.2);
    border: 1px solid var(--accent-green);
    color: var(--accent-green);
    display: block;
}

.form-message.error {
    background: rgba(255, 0, 0, 0.2);
    border: 1px solid #ff4444;
    color: #ff4444;
    display: block;
}

/* ============================================
   SOCIAL MEDIA SECTION
   ============================================ */
.social-section {
    margin-bottom: 60px;
}

.social-title {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--light-gray);
    font-weight: 400;
}

.social-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    transition: all 0.3s ease;
    text-decoration: none;
    backdrop-filter: blur(10px);
}

.social-icon:hover {
    transform: translateY(-10px) scale(1.1);
    border-color: var(--accent-blue);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.5);
}

.social-icon.instagram:hover {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    border-color: #fd1d1d;
}

.social-icon.twitter:hover {
    background: #1DA1F2;
    border-color: #1DA1F2;
}

.social-icon.youtube:hover {
    background: #FF0000;
    border-color: #FF0000;
}

.social-icon.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
}

/* ============================================
   FOOTER
   ============================================ */
.footer-section {
    text-align: center;
    padding: 40px 0 20px;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-text {
    font-size: 1.3rem;
    font-weight: 600;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.footer-bottom {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .main-wrapper {
        padding: 30px 15px;
    }
    
    .preloader-content {
        padding: 20px;
    }
    
    .loader-title {
        letter-spacing: 8px;
    }
    
    .loader-subtitle {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }
    
    .loader-progress {
        width: 250px;
    }
    
    .logo-wrapper {
        padding: 12px 25px;
    }
    
    .brand-name {
        font-size: 2rem;
    }
    
    .logo-wrapper i {
        font-size: 2rem;
    }
    
    .typed-text {
        font-size: 1.2rem;
    }
    
    .typed-cursor {
        height: 1.5rem;
    }
    
    .cricket-features {
        padding: 30px 0;
    }
    
    .features-title {
        font-size: 1.8rem;
    }
    
    .feature-card {
        padding: 25px 15px;
        margin-bottom: 15px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 2rem;
    }
    
    .cricket-ball {
        width: 40px;
        height: 40px;
    }
    
    .cricket-bat {
        width: 100px;
        height: 15px;
    }
    
    .main-headline {
        margin-bottom: 20px;
    }
    
    .sub-headline {
        margin-bottom: 30px;
    }
    
    .tagline-box {
        padding: 20px 25px;
    }
    
    .countdown-title {
        font-size: 1.5rem;
        letter-spacing: 3px;
    }
    
    .time-box {
        padding: 20px 10px;
    }
    
    .subscribe-form .input-group {
        flex-direction: column;
        border-radius: 15px;
    }
    
    .email-input {
        border-radius: 15px;
        border: 2px solid rgba(0, 212, 255, 0.3);
        margin-bottom: 15px;
    }
    
    .btn-subscribe {
        border-radius: 15px;
        width: 100%;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .tagline-box {
        padding: 15px 20px;
    }
    
    .time-value {
        font-size: 2rem;
    }
    
    .time-label {
        font-size: 0.8rem;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Smooth scroll for webkit browsers */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-blue);
}
