* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #200646 0%, #2a0a2a 50%, #200646 100%);
    color: #ffffff;
    overflow-x: hidden;
    scroll-behavior: smooth;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(ellipse at center, #200646 0%, #2a0a2a 50%, #200646 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 20, 147, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 105, 180, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(199, 21, 133, 0.3) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { opacity: 0.4; transform: scale(1); }
    100% { opacity: 0.8; transform: scale(1.1); }
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 800px;
}

.hero-logo {
    margin-bottom: 2rem;
    animation: logoFloat 3s ease-in-out infinite;
}

.logo-image {
    max-width: 300px;
    height: auto;
    filter: 
        hue-rotate(10deg) 
        saturate(1.2) 
        brightness(1.1) 
        drop-shadow(0 0 30px rgba(255, 20, 147, 0.6))
        drop-shadow(0 0 60px rgba(255, 105, 180, 0.4));
    transition: all 0.4s ease;
}

.logo-image:hover {
    transform: scale(1.05);
    filter: 
        hue-rotate(15deg) 
        saturate(1.3) 
        brightness(1.2) 
        drop-shadow(0 0 50px rgba(255, 20, 147, 0.8))
        drop-shadow(0 0 80px rgba(255, 105, 180, 0.6))
        drop-shadow(0 0 100px rgba(199, 21, 133, 0.4));
}

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

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff1493, #ff69b4, #c71585, #da70d6);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    text-shadow: 0 0 50px rgba(255, 20, 147, 0.6);
    letter-spacing: -2px;
}

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

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #b0b0b0;
    font-weight: 500;
}

.hero-tagline {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #888;
    font-weight: 400;
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.feature-badge {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    font-weight: 500;
}

.feature-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.5);
    transform: translateY(-5px);
    border-color: rgba(255, 20, 147, 0.6);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(45deg); }
    40% { transform: translateY(-15px) rotate(45deg); }
    60% { transform: translateY(-8px) rotate(45deg); }
}

/* Tools Section */
.tools-section {
    min-height: 100vh;
    padding: 6rem 0;
    background: linear-gradient(135deg, #200646 0%, #2a0a2a 50%, #200646 100%);
    position: relative;
}

.tools-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 20, 147, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(199, 21, 133, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.tool-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 20, 147, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.tool-card:hover .card-glow {
    opacity: 1;
}

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

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

.tool-card:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(5deg);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 50px rgba(255, 20, 147, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 20, 147, 0.4);
}

.featured-badge, .premium-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(45deg, #ff1493, #c71585);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(255, 20, 147, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.card-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(255, 20, 147, 0.6);
}

.card-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.badge {
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    border: 1px solid;
    transition: all 0.3s ease;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.badge.safe { border-color: #06ffa5; color: #06ffa5; background: rgba(6, 255, 165, 0.1); }
.badge.undetectable { border-color: #3a86ff; color: #3a86ff; background: rgba(58, 134, 255, 0.1); }
.badge.virus-free { border-color: #8338ec; color: #8338ec; background: rgba(131, 56, 236, 0.1); }
.badge.compatible { border-color: #ffbe0b; color: #ffbe0b; background: rgba(255, 190, 11, 0.1); }
.badge.support { border-color: #fb5607; color: #fb5607; background: rgba(251, 86, 7, 0.1); }
.badge.skin { border-color: #ff006e; color: #ff006e; background: rgba(255, 0, 110, 0.1); }
.badge.skin { border-color: #ff1493; color: #ff1493; background: rgba(255, 20, 147, 0.1); }
.badge.bhop { border-color: #06ffa5; color: #06ffa5; background: rgba(6, 255, 165, 0.1); }
.badge.restricted { border-color: #ff4757; color: #ff4757; background: rgba(255, 71, 87, 0.1); }
.badge.obs { border-color: #ffa502; color: #ffa502; background: rgba(255, 165, 2, 0.1); }
.badge.rage { border-color: #ff3838; color: #ff3838; background: rgba(255, 56, 56, 0.1); }
.badge.tap { border-color: #2ed573; color: #2ed573; background: rgba(46, 213, 115, 0.1); }

.badge:hover {
    background: currentColor;
    color: #000;
    box-shadow: 0 0 20px currentColor;
    transform: translateY(-2px);
}

.pricing {
    margin: 2rem 0;
}

.price-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.price-option:hover {
    background: rgba(255, 255, 255, 0.02);
    padding-left: 1rem;
    border-radius: 10px;
}

.price-option.lifetime {
    border-bottom: none;
    background: rgba(255, 20, 147, 0.08);
    border-radius: 10px;
    margin-top: 0.5rem;
}

.duration {
    color: #b0b0b0;
    font-weight: 500;
}

.price {
    color: #ff69b4;
    font-weight: 700;
    font-size: 1.2rem;
    text-shadow: 0 0 15px rgba(255, 105, 180, 0.6);
}

.buy-btn {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(45deg, #ff1493, #c71585);
    border: none;
    border-radius: 15px;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.buy-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;
}

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

.buy-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 20, 147, 0.5);
    background: linear-gradient(45deg, #c71585, #da70d6);
}

.premium-btn {
    background: linear-gradient(45deg, #ff1493, #8b008b);
}

.premium-btn:hover {
    background: linear-gradient(45deg, #c71585, #9932cc);
}

/* Services Section */
.services-section {
    min-height: 100vh;
    padding: 6rem 0;
    background: linear-gradient(135deg, #2a0a2a 0%, #200646 50%, #200646 100%);
    position: relative;
}

.section-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(45deg, #ff1493, #c71585, #da70d6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    text-shadow: 0 0 30px rgba(255, 20, 147, 0.4);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 105, 180, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover .service-glow {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-15px) rotateY(10deg);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 50px rgba(255, 105, 180, 0.3);
    border-color: rgba(255, 105, 180, 0.4);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #ff69b4;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(255, 105, 180, 0.6);
}

.service-desc {
    color: #b0b0b0;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1rem;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.feature {
    background: rgba(255, 105, 180, 0.1);
    padding: 0.6rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 105, 180, 0.3);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.feature:hover {
    background: rgba(255, 105, 180, 0.2);
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.4);
    transform: translateX(5px);
}

.service-btn {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(45deg, #ff69b4, #da70d6);
    border: none;
    border-radius: 15px;
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 105, 180, 0.5);
    background: linear-gradient(45deg, #da70d6, #c71585);
}

/* Terms of Service Section */
.terms-section {
    min-height: 100vh;
    padding: 6rem 0;
    background: linear-gradient(135deg, #200646 0%, #2a0a2a 50%, #200646 100%);
    position: relative;
}

.terms-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 20, 147, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(199, 21, 133, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.term-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 20, 147, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

.term-item:hover::before {
    left: 100%;
}

.term-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 20, 147, 0.2);
    border-color: rgba(255, 20, 147, 0.4);
}

.term-item h3 {
    color: #ff69b4;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
}

.term-item p {
    color: #e0e0e0;
    line-height: 1.8;
    font-size: 1rem;
}

/* Contact Section */
.contact-section {
    min-height: 100vh;
    padding: 6rem 0;
    background: linear-gradient(135deg, #200646 0%, #200646 50%, #2a0a2a 100%);
    display: flex;
    align-items: center;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 20, 147, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 105, 180, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-desc {
    font-size: 1.3rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
    font-weight: 500;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    text-decoration: none;
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    min-width: 300px;
    position: relative;
    overflow: hidden;
}

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

.contact-link:hover::before {
    left: 100%;
}

.contact-link:hover {
    transform: translateX(15px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.contact-link.facebook:hover {
    border-color: #ff1493;
    box-shadow: 0 15px 40px rgba(255, 20, 147, 0.4);
}

.contact-link.telegram:hover {
    border-color: #ff69b4;
    box-shadow: 0 15px 40px rgba(255, 105, 180, 0.4);
}

.contact-link.discord:hover {
    border-color: #da70d6;
    box-shadow: 0 15px 40px rgba(218, 112, 214, 0.4);
}

/* Weather Controls */
.weather-controls {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 1000;
}

.weather-btn {
    padding: 10px 15px;
    background: rgba(255, 20, 147, 0.1);
    border: 1px solid rgba(255, 20, 147, 0.3);
    border-radius: 25px;
    color: #ff69b4;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-size: 14px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.weather-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;
}

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

.weather-btn:hover {
    background: rgba(255, 20, 147, 0.2);
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.3);
    transform: translateY(-2px);
}

.weather-btn.active {
    background: rgba(255, 20, 147, 0.3);
    border-color: rgba(255, 20, 147, 0.6);
    box-shadow: 0 0 15px rgba(255, 20, 147, 0.4);
}

.weather-btn#thunderToggle {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    color: #ffd700;
}

.weather-btn#thunderToggle:hover {
    background: rgba(255, 215, 0, 0.2);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.weather-btn#thunderToggle.active {
    background: rgba(255, 215, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

/* Weather Effects */
.weather-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.raindrop {
    position: absolute;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1), rgba(173, 216, 230, 0.8), rgba(135, 206, 235, 0.4));
    border-radius: 0 0 50% 50%;
    animation: fall linear infinite;
    box-shadow: 0 0 8px rgba(173, 216, 230, 0.6), 0 0 15px rgba(135, 206, 235, 0.3);
    z-index: 10;
}

.snowflake {
    position: absolute;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 10px rgba(255, 182, 193, 0.6);
    animation: snowfall ease-in-out infinite;
    user-select: none;
    pointer-events: none;
}

.lightning-flash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 999;
    pointer-events: none;
    opacity: 0;
}

.lightning-bolt {
    position: absolute;
    width: 4px;
    background: linear-gradient(to bottom, #ffffff, #e6e6fa, #dda0dd);
    box-shadow: 0 0 20px #ffffff, 0 0 40px #e6e6fa, 0 0 60px #dda0dd;
    z-index: 998;
    opacity: 0;
    animation: lightning-strike 0.3s ease-out;
}

@keyframes lightning-strike {
    0% { opacity: 0; }
    10% { opacity: 1; }
    20% { opacity: 0; }
    30% { opacity: 1; }
    40% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

@keyframes fall {
    0% {
        transform: translateY(-100vh) translateX(0px);
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(100vh) translateX(var(--wind-offset, 0px));
        opacity: 0.1;
    }
}

@keyframes snowfall {
    0% {
        transform: translateY(-100vh) translateX(0px) rotate(0deg);
        opacity: 1;
    }
    25% {
        transform: translateY(-50vh) translateX(var(--drift-1, 10px)) rotate(90deg);
        opacity: 0.9;
    }
    50% {
        transform: translateY(0vh) translateX(var(--drift-2, -5px)) rotate(180deg);
        opacity: 0.8;
    }
    75% {
        transform: translateY(50vh) translateX(var(--drift-3, 15px)) rotate(270deg);
        opacity: 0.6;
    }
    100% {
        transform: translateY(100vh) translateX(var(--drift-4, -10px)) rotate(360deg);
        opacity: 0.1;
    }
}

.link-icon {
    font-size: 1.8rem;
}

.link-text {
    font-weight: 600;
    font-size: 1.1rem;
    flex: 1;
}

.link-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.contact-link:hover .link-arrow {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .tools-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-links {
        width: 100%;
    }
    
    .contact-link {
        min-width: auto;
        width: 100%;
        max-width: 350px;
    }
    
    .tool-card,
    .service-card {
        padding: 2rem;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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

::-webkit-scrollbar-track {
    background: #200646;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ff1493, #c71585);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #c71585, #da70d6);
}

/* Loading Animation */
@keyframes shimmer {
    0% { background-position: -200px 0; }
    100% { background-position: calc(200px + 100%) 0; }
  #rainContainer, #snowContainer {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  pointer-events: none;
  z-index: 999;
  overflow: hidden;
}

.raindrop {
  position: absolute;
  top: -20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.8), rgba(255,255,255,0));
  border-radius: 50%;
  opacity: 0.7;
  animation-name: fall;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes fall {
  to {
    transform: translateY(110vh);
    opacity: 0;
  }
}

.snowflake {
  position: absolute;
  top: -20px;
  color: white;
  font-size: 1em;
  opacity: 0.8;
  animation-name: snowFall;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  user-select: none;
}

@keyframes snowFall {
  to {
    transform: translateY(100vh) translateX(30px);
    opacity: 0;
  }
}

#lightningFlash {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: white;
  opacity: 0;
  pointer-events: none;
  z-index: 1000;
  transition: opacity 0.1s ease-out;
}

}

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