/* Hero Section */
.hero {
    padding: 6rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
}

.hero::before {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: url('../../photos/eye.png') center/contain no-repeat;
    opacity: 0.15;
    z-index: 0;
    animation: pulseEye 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulseEye {
    0% {
        opacity: 0.1;
        transform: translate(-50%, -50%) scale(0.95);
    }
    50% {
        opacity: 0.2;
        transform: translate(-50%, -50%) scale(1.05);
    }
    100% {
        opacity: 0.1;
        transform: translate(-50%, -50%) scale(0.95);
    }
}

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

.cyber-glitch {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--primary-cyan);
    text-shadow: 0 0 15px var(--glow-cyan);
    font-family: 'Phonk Contrast', sans-serif;
}

.hero-text {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text);
    letter-spacing: 2px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Features Section */
.features {
    padding: 4rem 2rem;
    background: var(--background);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(0, 242, 255, 0.03);
    border: 1px solid rgba(0, 242, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 2s cubic-bezier(0.19, 1, 0.22, 1);
    text-decoration: none;
    color: var(--text);
    position: relative;
    overflow: hidden;
    transform: translateY(0) scale(1);
    box-shadow: 0 0 0 rgba(0, 242, 255, 0);
}

.feature-card::before {
    display: none;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 8px 35px rgba(0, 242, 255, 0.2);
    border-color: var(--primary-cyan);
    background: rgba(0, 242, 255, 0.08);
}

.feature-icon, .feature-card h3, .feature-card p, .feature-details {
    position: relative;
    z-index: 1;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-cyan);
    margin-bottom: 1.5rem;
    transition: all 2s cubic-bezier(0.19, 1, 0.22, 1);
    filter: drop-shadow(0 0 0 rgba(0, 242, 255, 0));
}

.feature-card:hover .feature-icon {
    filter: drop-shadow(0 0 15px rgba(0, 242, 255, 0.5));
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-cyan);
    transition: all 2s cubic-bezier(0.19, 1, 0.22, 1);
    text-shadow: 0 0 0 rgba(0, 242, 255, 0);
}

.feature-card:hover h3 {
    text-shadow: 0 0 15px rgba(0, 242, 255, 0.5);
}

.feature-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    opacity: 0.8;
}

.feature-details span {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.xp-tag {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.vip-tag {
    background: rgba(255, 0, 255, 0.1);
    color: #ff00ff;
    border: 1px solid rgba(255, 0, 255, 0.3);
}

.gallery-tag {
    background: rgba(0, 255, 0, 0.1);
    color: #00ff00;
    border: 1px solid rgba(0, 255, 0, 0.3);
}

.prize-tag {
    background: rgba(0, 191, 255, 0.1);
    color: #00bfff;
    border: 1px solid rgba(0, 191, 255, 0.3);
}

/* Progression Section */
.progression-section {
    padding: 4rem 2rem;
    background: var(--background);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--primary-cyan);
}

.progression-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.progression-card {
    background: rgba(0, 242, 255, 0.03);
    border: 1px solid rgba(0, 242, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: all 2s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    overflow: hidden;
    transform: translateY(0) scale(1);
    box-shadow: 0 0 0 rgba(0, 242, 255, 0);
}

.progression-card::before {
    display: none;
}

.progression-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 8px 35px rgba(0, 242, 255, 0.2);
    border-color: var(--primary-cyan);
    background: rgba(0, 242, 255, 0.08);
}

.card-icon, .progression-card h3, .progression-list {
    position: relative;
    z-index: 1;
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary-cyan);
    margin-bottom: 1.5rem;
    text-align: center;
    transition: all 2s cubic-bezier(0.19, 1, 0.22, 1);
    filter: drop-shadow(0 0 0 rgba(0, 242, 255, 0));
}

.progression-card:hover .card-icon {
    filter: drop-shadow(0 0 15px rgba(0, 242, 255, 0.5));
}

.progression-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-cyan);
    text-align: center;
    transition: all 2s cubic-bezier(0.19, 1, 0.22, 1);
    text-shadow: 0 0 0 rgba(0, 242, 255, 0);
}

.progression-card:hover h3 {
    text-shadow: 0 0 15px rgba(0, 242, 255, 0.5);
}

.progression-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.progression-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.progression-list li i {
    color: var(--primary-cyan);
}

/* VIP Section */
.vip-section {
    padding: 4rem 2rem;
    background: var(--background);
}

.vip-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.vip-card {
    background: rgba(0, 242, 255, 0.03);
    border: 1px solid rgba(0, 242, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 2s cubic-bezier(0.19, 1, 0.22, 1);
    text-decoration: none;
    color: var(--text);
    position: relative;
    overflow: hidden;
    transform: translateY(0) scale(1);
    box-shadow: 0 0 0 rgba(0, 242, 255, 0);
}

.vip-card::before {
    display: none;
}

.vip-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 8px 35px rgba(0, 242, 255, 0.2);
    border-color: var(--primary-cyan);
    background: rgba(0, 242, 255, 0.08);
}

.vip-card h3, .vip-benefits {
    position: relative;
    z-index: 1;
}

.vip-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-cyan);
    transition: all 2s cubic-bezier(0.19, 1, 0.22, 1);
    text-shadow: 0 0 0 rgba(0, 242, 255, 0);
}

.vip-card:hover h3 {
    text-shadow: 0 0 15px rgba(0, 242, 255, 0.5);
}

.vip-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.vip-benefits li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.vip-benefits li i {
    color: var(--primary-cyan);
}

.cta-container {
    text-align: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(88, 101, 242, 0.2);
    border: 1px solid #5865f2;
    border-radius: 8px;
    color: #5865f2;
    text-decoration: none;
    font-weight: bold;
    transition: all 2s cubic-bezier(0.19, 1, 0.22, 1);
    transform: translateY(0);
    box-shadow: 0 0 0 rgba(88, 101, 242, 0);
    letter-spacing: 1px;
}

.cta-button:hover {
    background: rgba(88, 101, 242, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 35px rgba(88, 101, 242, 0.25);
    letter-spacing: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 4rem 1rem 2rem;
    }

    .cyber-glitch {
        font-size: 3rem;
    }

    .hero-text {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .feature-grid,
    .progression-grid,
    .vip-tiers {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

/* Particles Animation */
.particles span {
    position: absolute;
    display: block;
    pointer-events: none;
    width: 2px;
    height: 2px;
    background: var(--primary-cyan);
    box-shadow: 0 0 10px var(--glow-cyan);
    border-radius: 50%;
    animation: particleMove linear infinite;
    opacity: var(--opacity);
    top: var(--top);
    left: var(--left);
    animation-duration: var(--duration);
}

@keyframes particleMove {
    0% {
        transform: translate(var(--start-x), var(--start-y));
    }
    100% {
        transform: translate(var(--end-x), var(--end-y));
    }
}

/* Page Reveal Animation */
.page-wrapper {
    position: relative;
    min-height: 100vh;
    animation: revealContent 1.5s ease-out forwards;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}

@keyframes revealContent {
    0% {
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }
    100% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

/* Liquid Overlay */
.liquid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background);
    z-index: 1000;
    animation: liquidDevour 2s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
    pointer-events: none;
}

.liquid-overlay::before,
.liquid-overlay::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(
        circle at center,
        var(--primary-cyan) 0%,
        transparent 70%
    );
    opacity: 0.1;
    animation: liquidPulse 4s ease-in-out infinite;
}

.liquid-overlay::after {
    animation-delay: -2s;
}

@keyframes liquidDevour {
    0% {
        clip-path: circle(0% at 50% 0);
        background: var(--background);
    }
    40% {
        clip-path: circle(100% at 50% 0);
        background: var(--background);
    }
    60% {
        clip-path: circle(150% at 50% 0);
        background: transparent;
    }
    100% {
        clip-path: circle(200% at 50% 0);
        background: transparent;
    }
}

@keyframes liquidPulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.2) rotate(180deg);
    }
}

/* Tendrils Animation */
.tendril {
    position: fixed;
    width: 2px;
    height: 0;
    background: var(--primary-cyan);
    filter: blur(1px);
    opacity: 0.5;
    z-index: 999;
}

.tendril:nth-child(1) { left: 20%; animation: tendrilGrow 1.2s ease-out forwards 0.2s; }
.tendril:nth-child(2) { left: 40%; animation: tendrilGrow 1.4s ease-out forwards 0.4s; }
.tendril:nth-child(3) { left: 60%; animation: tendrilGrow 1.3s ease-out forwards 0.3s; }
.tendril:nth-child(4) { left: 80%; animation: tendrilGrow 1.5s ease-out forwards 0.5s; }

@keyframes tendrilGrow {
    0% {
        height: 0;
        top: 0;
    }
    100% {
        height: 100vh;
        top: 0;
    }
}

/* Content Reveal */
.hero-content,
.feature-grid,
.progression-grid {
    opacity: 0;
    transform: translateY(30px);
    animation: contentFadeIn 0.8s ease-out forwards;
}

.hero-content { animation-delay: 1.5s; }
.feature-grid { animation-delay: 1.8s; }
.progression-grid { animation-delay: 2.1s; }

@keyframes contentFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Particle Effects */
.particle {
    position: fixed;
    width: 4px;
    height: 4px;
    background: var(--primary-cyan);
    border-radius: 50%;
    filter: blur(2px);
    opacity: 0;
    z-index: 998;
    animation: particleFade 2s ease-out forwards;
}

@keyframes particleFade {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }
    50% {
        opacity: 0.8;
        transform: translateY(100vh) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(200vh) scale(0);
    }
} 