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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0a0a0f;
    overflow-x: hidden;
}

/* Color Variables */
:root {
    --primary-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #06b6d4 100%);
    --secondary-gradient: linear-gradient(135deg, #06b6d4 0%, #8b5cf6 100%);
    --dark-bg: #0a0a0f;
    --dark-secondary: #1a1a2e;
    --dark-tertiary: #16213e;
    --neon-cyan: #06b6d4;
    --neon-purple: #8b5cf6;
    --neon-blue: #6366f1;
    --text-primary: #ffffff;
    --text-secondary: #e4e4e7;
    --text-muted: #a1a1aa;
}

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

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.92) 0%, rgba(26, 26, 46, 0.88) 50%, rgba(10, 10, 15, 0.92) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 900px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
    background: rgba(10, 10, 15, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

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

.hero-logo {
    width: 240px;
    height: auto;
    filter: drop-shadow(0 0 25px rgba(139, 92, 246, 0.5));
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-shadow: 0 0 40px rgba(139, 92, 246, 0.6), 0 0 80px rgba(139, 92, 246, 0.4), 0 4px 20px rgba(0, 0, 0, 0.8);
    line-height: 1.1;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.7));
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 500;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8), 0 0 30px rgba(139, 92, 246, 0.3);
    filter: drop-shadow(0 1px 5px rgba(0, 0, 0, 0.6));
}

/* Highlight Chips - Fixed Symmetry */
.highlight-chips {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    padding: 1.5rem 1rem;
    transition: all 0.3s ease;
    animation: slideInUp 0.8s ease-out;
    min-height: 140px;
    position: relative;
}

.chip:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--neon-purple);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.3);
    background: rgba(26, 26, 46, 0.9);
}

/* Fixed Icon Proportions */
.chip-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.4));
}

.chip-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.chip-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
    line-height: 1.2;
}

.chip-value {
    font-size: 1.4rem;
    color: var(--text-primary);
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* CTA Buttons - Proper Sizing */
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    min-width: 200px;
    justify-content: center;
}

.cta-button.primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: var(--text-primary);
    border-color: rgba(139, 92, 246, 0.5);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.4);
}

.cta-button.secondary:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: var(--neon-purple);
}

.button-icon {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-arrow {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid var(--neon-cyan);
    filter: drop-shadow(0 0 8px rgba(6, 182, 212, 0.6));
}

.scroll-arrow::after {
    display: none;
}

/* About Section */
.about-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-secondary) 50%, var(--dark-bg) 100%);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 500;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 0;
}

.feature-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-gradient);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.4);
}

.about-illustration {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(139, 92, 246, 0.3));
    animation: float 4s ease-in-out infinite;
}

/* Rewards Section */
.rewards-section {
    padding: 8rem 0;
    background: var(--dark-bg);
    text-align: center;
    position: relative;
}

.rewards-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 4rem;
    font-weight: 500;
}

.rewards-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.flow-step {
    padding: 2rem 1.5rem;
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 24px;
    transition: all 0.3s ease;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
}

.flow-step:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--neon-purple);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.25);
    background: rgba(26, 26, 46, 0.8);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    border: 2px solid rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
}

.step-icon img {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.4));
}

.step-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.95rem;
    font-weight: 500;
}

.flow-arrow {
    font-size: 2rem;
    color: var(--neon-cyan);
    font-weight: bold;
    animation: pulse 2s infinite;
    filter: drop-shadow(0 0 15px rgba(6, 182, 212, 0.4));
}

/* Join Section */
.join-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--dark-secondary) 0%, var(--dark-tertiary) 100%);
    text-align: center;
    position: relative;
}

.join-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(6, 182, 212, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.join-content {
    max-width: 700px;
    margin: 0 auto;
}

.join-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 500;
}

.join-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.join-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2.5rem;
    border-radius: 18px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 220px;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.join-button.telegram {
    background: linear-gradient(135deg, #0088cc 0%, #006bb3 100%);
    color: white;
}

.join-button.twitter {
    background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%);
    color: white;
}

.join-button:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 20px 45px rgba(139, 92, 246, 0.4);
}

.join-button img {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
}

/* Footer */
.footer {
    padding: 3rem 0;
    background: var(--dark-bg);
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo-img {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.2));
}

.footer-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-links {
    display: flex;
    gap: 1rem;
}

.footer-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.footer-link img {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.3));
}

.footer-link:hover {
    background: rgba(139, 92, 246, 0.2);
    transform: translateY(-2px) scale(1.05);
    border-color: var(--neon-purple);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

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

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

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .rewards-flow {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-logo {
        width: 180px;
    }
    
    .highlight-chips {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 400px;
    }
    
    .chip {
        padding: 1.25rem 1rem;
        min-height: 120px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .join-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .join-button {
        width: 100%;
        max-width: 280px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 1.5rem 1rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-section,
    .rewards-section,
    .join-section {
        padding: 5rem 0;
    }
    
    .chip {
        padding: 1rem 0.75rem;
    }
}

