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

:root {
    --primary-color: #1a8c3a;
    --secondary-color: #2db85c;
    --accent-color: #4ade80;
    --glow-color: #00ff88;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #0a0f0a;
    --bg-white: #0f1510;
    --bg-card: #141a15;
    --shadow: 0 4px 20px rgba(0, 255, 136, 0.2);
    --shadow-lg: 0 10px 40px rgba(0, 255, 136, 0.3);
    --shadow-glow: 0 0 30px rgba(0, 255, 136, 0.5);
    --border-radius: 16px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: linear-gradient(135deg, #0a0f0a 0%, #0f1510 50%, #0a0f0a 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    overflow-x: hidden;
    position: relative;
}

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

/* Animated Particles Background */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(0, 255, 136, 0.3), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(45, 184, 92, 0.3), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(74, 222, 128, 0.2), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(0, 255, 136, 0.2), transparent),
        radial-gradient(2px 2px at 90% 60%, rgba(45, 184, 92, 0.2), transparent);
    background-size: 200% 200%;
    animation: particleMove 20s linear infinite;
    opacity: 0.6;
}

@keyframes particleMove {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header */
.header {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.header-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    z-index: 1;
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.header-image.parallax {
    will-change: transform;
}

.header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7) contrast(1.1);
}

.header-content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(10, 15, 10, 0.8));
    padding: 60px 20px;
    color: white;
    backdrop-filter: blur(2px);
}

.main-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    text-shadow: 
        0 0 20px rgba(0, 255, 136, 0.8),
        0 0 40px rgba(0, 255, 136, 0.5),
        2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.pulse-glow {
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        text-shadow: 
            0 0 20px rgba(0, 255, 136, 0.8),
            0 0 40px rgba(0, 255, 136, 0.5),
            2px 2px 4px rgba(0, 0, 0, 0.8);
    }
    50% {
        text-shadow: 
            0 0 30px rgba(0, 255, 136, 1),
            0 0 60px rgba(0, 255, 136, 0.7),
            0 0 80px rgba(0, 255, 136, 0.4),
            2px 2px 4px rgba(0, 0, 0, 0.8);
    }
}

.subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    opacity: 0.95;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.slide-in {
    animation: slideInFromLeft 1s ease-out;
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.status-badge {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(45, 184, 92, 0.2));
    border: 2px solid var(--glow-color);
    border-radius: 50px;
    box-shadow: 
        0 0 20px rgba(0, 255, 136, 0.5),
        inset 0 0 20px rgba(0, 255, 136, 0.1);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 
            0 0 20px rgba(0, 255, 136, 0.5),
            inset 0 0 20px rgba(0, 255, 136, 0.1);
    }
    50% {
        box-shadow: 
            0 0 30px rgba(0, 255, 136, 0.8),
            inset 0 0 30px rgba(0, 255, 136, 0.2);
    }
}

.badge-text {
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: var(--glow-color);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.8);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    color: white;
    padding: 100px 0;
    margin-top: -1px;
    position: relative;
    z-index: 1;
    box-shadow: 0 -10px 50px rgba(0, 255, 136, 0.2);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.9;
    margin-bottom: 30px;
    opacity: 0.98;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.lead-text:last-child {
    margin-bottom: 0;
    animation-delay: 0.2s;
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: var(--bg-white);
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 80px;
    color: var(--glow-color);
    text-shadow: 
        0 0 20px rgba(0, 255, 136, 0.5),
        0 0 40px rgba(0, 255, 136, 0.3);
    letter-spacing: 1px;
    animation: fadeInUp 0.8s ease-out;
}

.feature-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
    padding: 50px;
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(20, 26, 21, 0.8) 100%);
    border-radius: var(--border-radius);
    border: 2px solid rgba(0, 255, 136, 0.2);
    box-shadow: 
        var(--shadow),
        0 0 0 1px rgba(0, 255, 136, 0.1);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(50px);
}

.feature-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        var(--shadow-lg),
        var(--shadow-glow),
        0 0 0 2px rgba(0, 255, 136, 0.3);
    border-color: var(--glow-color);
}

.feature-item.reverse {
    grid-template-columns: 1fr 1fr;
}

.feature-item.reverse .feature-content {
    order: 2;
}

.feature-item.reverse .feature-image {
    order: 1;
}

.feature-content {
    padding: 20px;
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: inline-block;
    animation: iconFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.feature-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--glow-color);
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
    letter-spacing: 0.5px;
}

.feature-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 18px;
    color: #d0d0d0;
}

.feature-content ul {
    list-style: none;
    padding-left: 0;
    margin: 25px 0;
}

.feature-content ul li {
    font-size: 1.15rem;
    padding: 12px 0;
    padding-left: 40px;
    position: relative;
    color: #d0d0d0;
    transition: var(--transition);
}

.feature-content ul li:hover {
    color: var(--glow-color);
    transform: translateX(5px);
}

.feature-content ul li::before {
    content: "▶";
    position: absolute;
    left: 0;
    color: var(--glow-color);
    font-weight: bold;
    font-size: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.8);
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

.feature-image {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 
        var(--shadow-lg),
        0 0 30px rgba(0, 255, 136, 0.2);
    border: 2px solid rgba(0, 255, 136, 0.3);
    position: relative;
}

.feature-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), transparent);
    z-index: 1;
    pointer-events: none;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    filter: brightness(0.9) contrast(1.1);
}

.feature-image:hover img {
    transform: scale(1.1) rotate(1deg);
    filter: brightness(1) contrast(1.2);
}

/* Status Section */
.status {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 50%, var(--secondary-color) 100%);
    background-size: 200% 200%;
    animation: gradientShift 10s ease infinite;
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 -10px 50px rgba(0, 255, 136, 0.3);
}

.status .section-title {
    color: white;
    margin-bottom: 50px;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

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

.progress-container {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

.progress-bar {
    width: 100%;
    height: 30px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.5);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--glow-color), var(--accent-color), var(--glow-color));
    background-size: 200% 100%;
    animation: progressGlow 2s linear infinite, progressFill 2s ease-out;
    border-radius: 15px;
    box-shadow: 
        0 0 20px rgba(0, 255, 136, 0.8),
        inset 0 0 20px rgba(255, 255, 255, 0.3);
}

@keyframes progressGlow {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

@keyframes progressFill {
    from { width: 0%; }
    to { width: var(--progress-width, 65%); }
}

.progress-text {
    margin-top: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

.progress-percentage {
    color: var(--glow-color);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.8);
    font-weight: 800;
}

/* Disclaimer Box */
.disclaimer-box {
    max-width: 900px;
    margin: 50px auto;
    padding: 40px;
    background: rgba(255, 193, 7, 0.15);
    border: 3px solid rgba(255, 193, 7, 0.6);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    box-shadow: 
        0 0 30px rgba(255, 193, 7, 0.4),
        inset 0 0 30px rgba(255, 193, 7, 0.1);
    animation: disclaimerPulse 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.disclaimer-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes disclaimerPulse {
    0%, 100% {
        box-shadow: 
            0 0 30px rgba(255, 193, 7, 0.4),
            inset 0 0 30px rgba(255, 193, 7, 0.1);
        border-color: rgba(255, 193, 7, 0.6);
    }
    50% {
        box-shadow: 
            0 0 40px rgba(255, 193, 7, 0.6),
            inset 0 0 40px rgba(255, 193, 7, 0.2);
        border-color: rgba(255, 193, 7, 0.8);
    }
}

.disclaimer-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: iconShake 2s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(255, 193, 7, 0.8));
}

@keyframes iconShake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.disclaimer-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffc107;
    text-shadow: 
        0 0 20px rgba(255, 193, 7, 0.8),
        0 0 40px rgba(255, 193, 7, 0.4);
    letter-spacing: 1px;
}

.disclaimer-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.disclaimer-text:last-of-type {
    margin-bottom: 0;
}

.disclaimer-text strong {
    color: #ffc107;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.8);
}

.status-text {
    font-size: 1.3rem;
    line-height: 1.9;
    max-width: 800px;
    margin: 50px auto 0;
    opacity: 0.98;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0f0a 0%, #000000 100%);
    color: #888;
    padding: 40px 0;
    text-align: center;
    border-top: 2px solid rgba(0, 255, 136, 0.2);
    position: relative;
    z-index: 1;
}

.footer p {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* Responsive Design */
@media (max-width: 968px) {
    .main-title {
        font-size: 3rem;
    }
    
    .subtitle {
        font-size: 1.4rem;
    }
    
    .header {
        height: 60vh;
        min-height: 400px;
    }
    
    .feature-item,
    .feature-item.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 35px;
    }
    
    .feature-item.reverse .feature-content,
    .feature-item.reverse .feature-image {
        order: 0;
    }
    
    .feature-image {
        min-height: 280px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .feature-title {
        font-size: 1.8rem;
    }
    
    .feature-icon {
        font-size: 3rem;
    }
    
    .disclaimer-box {
        padding: 30px 25px;
        margin: 40px auto;
    }
    
    .disclaimer-title {
        font-size: 1.5rem;
    }
    
    .disclaimer-text {
        font-size: 1rem;
    }
    
    .disclaimer-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 640px) {
    .main-title {
        font-size: 2.2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .header {
        height: 50vh;
        min-height: 300px;
    }
    
    .header-content {
        padding: 40px 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .lead-text {
        font-size: 1.1rem;
    }
    
    .features {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.9rem;
        margin-bottom: 50px;
    }
    
    .feature-item {
        padding: 25px 20px;
        margin-bottom: 50px;
    }
    
    .feature-title {
        font-size: 1.5rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .feature-content p,
    .feature-content ul li {
        font-size: 1rem;
    }
    
    .status {
        padding: 60px 0;
    }
    
    .status-text {
        font-size: 1.1rem;
    }
    
    .disclaimer-box {
        padding: 25px 20px;
        margin: 30px auto;
    }
    
    .disclaimer-title {
        font-size: 1.3rem;
    }
    
    .disclaimer-text {
        font-size: 0.95rem;
    }
    
    .disclaimer-icon {
        font-size: 2rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: var(--glow-color);
    color: #000;
}

::-moz-selection {
    background: var(--glow-color);
    color: #000;
}
