/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff6b6b;
    --secondary-color: #4ecdc4;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --light-text: #ffffff;
    --gray-text: #a0a0a0;
    --accent-gold: #ffd700;
    --accent-purple: #9333ea;
    --border-color: #2a2a2a;
    --card-bg: #1a1a1a;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h1 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* OpenSea link styling */
.opensea-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--light-text);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

.opensea-link svg {
    width: 20px;
    height: 20px;
}

.opensea-link:hover {
    color: var(--primary-color);
}

.opensea-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.opensea-link:hover::after {
    width: 100%;
}

.nav-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-link {
    color: var(--gray-text);
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    color: var(--primary-color);
    background: rgba(255, 107, 107, 0.1);
    transform: translateY(-2px);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--light-text);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
        position: relative;
    }
    
    .mobile-menu-btn {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        z-index: 1001;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        gap: 2rem;
        transition: left 0.3s ease;
        overflow-y: auto;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-social {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .nav-logo h1 {
        font-size: 1.2rem;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transform: scale(1.1);
    animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    0% { transform: scale(1.1); }
    100% { transform: scale(1.2); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(255, 107, 107, 0.1) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    animation: overlayPulse 8s ease-in-out infinite;
}

@keyframes overlayPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 0.6; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    padding: 0 2rem;
}

.hero-text {
    animation: heroSlideIn 1.5s ease-out;
}

@keyframes heroSlideIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.pixel {
    display: block;
    background: linear-gradient(45deg, #ff6b6b, #ffd93d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pixelGlow 3s ease-in-out infinite;
}

@keyframes pixelGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.reborn {
    display: block;
    background: linear-gradient(45deg, #6bcf7f, #4a90e2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rebornGlow 3s ease-in-out infinite 1.5s;
}

@keyframes rebornGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: var(--gray-text);
    margin-bottom: 3rem;
    font-weight: 300;
    animation: fadeInUp 1.5s ease-out 0.5s both;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: clamp(1.5rem, 4vw, 4rem);
    flex-wrap: wrap;
    animation: fadeInUp 1.5s ease-out 1s both;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat::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.5s ease;
}

.stat:hover::before {
    left: 100%;
}

.stat:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.2);
}

.stat-number {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 900;
    color: var(--light-text);
    margin-bottom: 0.5rem;
    animation: numberGlow 2s ease-in-out infinite;
}

@keyframes numberGlow {
    0%, 100% { text-shadow: 0 0 10px rgba(255, 255, 255, 0.3); }
    50% { text-shadow: 0 0 20px rgba(255, 255, 255, 0.5); }
}

.stat-label {
    display: block;
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    transform: rotate(45deg);
    animation: arrowGlow 2s ease-in-out infinite;
}

@keyframes arrowGlow {
    0%, 100% { border-color: var(--primary-color); }
    50% { border-color: #ff8787; }
}

/* Container */
/* Main content area */
main {
    flex: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Mobile Container Padding */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .hero {
        min-height: 100vh;
        padding-top: 80px; /* Increase for taller navbar */
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    /* Increase section padding to prevent header overlap */
    section {
        padding-top: 90px !important;
    }
    
    .whitelist {
        padding: 90px 0 !important;
    }
    
    .about {
        padding: 90px 0 !important;
    }
    
    .section-header {
        margin-bottom: 2rem;
        padding-top: 30px;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Fix footer layout */
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .footer-links {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .footer-section {
        width: 100%;
    }

    .social-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* Mobile footer improvements */
    .footer {
        padding: 1.5rem 0 4rem;
        margin-bottom: 0;
        /* Remove previous conflicting styles */
    }
    
    .footer-content {
        gap: 1rem;
        margin-bottom: 1rem;
        text-align: left;
    }
    
    .footer-brand {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .footer-section {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        color: var(--primary-color);
        border-bottom: 1px solid rgba(255, 107, 107, 0.3);
        padding-bottom: 0.3rem;
    }
    
    .footer-section a {
        font-size: 0.85rem;
        margin-bottom: 0.2rem;
        padding: 0.2rem 0;
        display: block;
        color: var(--gray-text);
    }
    
    .footer-section a:hover {
        color: var(--light-text);
        padding-left: 0.5rem;
        transition: all 0.3s ease;
    }
    
    .footer-brand h3 {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }
    
    .footer-brand p {
        font-size: 0.8rem;
        margin-bottom: 0;
    }
    
    .footer-social {
        text-align: center;
        margin-top: 0.5rem;
    }
    
    .footer-social h4 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        color: var(--primary-color);
    }
    
    .social-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.8rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255, 107, 107, 0.3);
        border-radius: 50%;
        transition: all 0.3s ease;
    }
    
    .social-link:hover {
        border-color: var(--primary-color);
        transform: translateY(-2px);
    }
    
    /* Increase navbar height on mobile */
    .navbar {
        height: 80px;
        padding: 1rem 0;
    }
    
    .nav-links {
        top: 80px;
        height: calc(100vh - 80px);
    }
    
    /* Global Mobile Fix */
@viewport {
    width: device-width;
    zoom: 1.0;
}

/* Remove right gap completely */
    body {
        overflow-x: hidden;
        width: 100%;
        margin: 0;
        padding: 0; /* Remove bottom padding since footer is hidden */
        min-height: 100vh;
        position: relative;
    }
    
    * {
        box-sizing: border-box;
    }
    
    .container {
        width: 100%;
        padding: 0 1rem;
        max-width: 100%;
    }
    
    html {
        scroll-behavior: smooth;
        height: 100%;
        overflow-x: hidden;
    }
    
    /* Ensure footer is always visible */
    html, body {
        height: auto;
        min-height: 100vh;
        position: relative;
    }
    
    /* Footer positioning fix */
    .footer {
        position: relative;
        z-index: 10;
        margin-top: auto;
        padding-bottom: 100px !important; /* Force bottom padding */
        margin-bottom: 100px !important; /* Force bottom margin */
        min-height: 300px; /* Minimum footer height */
    }
    
    /* Ensure footer bottom is visible */
    .footer-bottom {
        padding-top: 3rem !important;
        padding-bottom: 100px !important;
        margin-bottom: 50px !important;
        position: relative;
        z-index: 10;
    }
    
    /* Footer content spacing */
    .footer-content {
        margin-bottom: 100px !important;
    }
    
    /* Hide footer on mobile */
    .footer {
        display: none !important;
    }
    
    /* Add simple copyright for mobile */
    .mobile-copyright {
        display: block !important;
        text-align: center;
        padding: 2rem 1rem;
        color: var(--gray-text);
        font-size: 0.8rem;
        border-top: 1px solid var(--border-color);
        background: var(--darker-bg);
    }
}

/* Hide mobile copyright on desktop */
.mobile-copyright {
    display: none;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-text);
    font-weight: 300;
}

/* Whitelist Section */
.whitelist {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.whitelist-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.whitelist-form {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--light-text);
}

.form-group input {
    width: 100%;
    padding: 1rem;
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--light-text);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Password input container and toggle styling */
.password-input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-container input {
    width: 100%;
    padding-right: 3rem; /* Space for the toggle button */
}

.password-toggle {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    color: var(--light-text);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.password-toggle:hover {
    color: var(--primary-color);
    background: rgba(255, 107, 107, 0.1);
}

.password-toggle svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.eye-icon, .eye-off-icon {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.eye-icon.hidden, .eye-off-icon.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
    position: absolute;
}

.eye-icon:not(.hidden), .eye-off-icon:not(.hidden) {
    opacity: 1;
    transform: scale(1);
}

.submit-btn {
    width: 100%;
    padding: 1.2rem 2rem;
    background: linear-gradient(45deg, var(--primary-color), #ff8787);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.submit-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.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    background: var(--gray-text);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.password-container {
    max-width: 400px;
    margin: 0 auto 2rem;
    transition: all 0.5s ease;
}

.password-container.hidden {
    display: none;
}

.password-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    transition: all 0.5s ease;
}

/* Success animation for password form */
.password-form.success {
    animation: passwordSuccess 0.5s ease;
    border-color: #4caf50;
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.3);
}

@keyframes passwordSuccess {
    0% {
        transform: scale(1);
        border-color: var(--border-color);
    }
    50% {
        transform: scale(1.05);
        border-color: #4caf50;
        box-shadow: 0 0 30px rgba(76, 175, 80, 0.5);
    }
    100% {
        transform: scale(1);
        border-color: #4caf50;
        box-shadow: 0 0 20px rgba(76, 175, 80, 0.3);
    }
}

.whitelist-form-container.hidden {
    display: none;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
}

.whitelist-form-container {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.whitelist-form-container.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Entrance animation for whitelist form */
.whitelist-form-container.show .whitelist-form {
    animation: formEntrance 0.8s ease;
}

@keyframes formEntrance {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-5px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Form field stagger entrance animation */
.whitelist-form-container.show .form-group {
    opacity: 0;
    transform: translateY(20px);
    animation: fieldEntrance 0.5s ease forwards;
}

.whitelist-form-container.show .form-group:nth-child(1) { animation-delay: 0.1s; }
.whitelist-form-container.show .form-group:nth-child(2) { animation-delay: 0.2s; }
.whitelist-form-container.show .form-group:nth-child(3) { animation-delay: 0.3s; }
.whitelist-form-container.show .form-group:nth-child(4) { animation-delay: 0.4s; }
.whitelist-form-container.show .form-group:nth-child(5) { animation-delay: 0.5s; }

@keyframes fieldEntrance {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.wl-notice {
    text-align: center;
    margin-top: 1.5rem;
    padding: 1rem;
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.1), rgba(255, 135, 135, 0.1));
    border: 2px solid rgba(255, 107, 107, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    animation: noticePulse 2s ease-in-out infinite;
}

.wl-notice::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 107, 0.2), transparent);
    animation: noticeShimmer 3s ease-in-out infinite;
}

@keyframes noticePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(255, 107, 107, 0.4);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 20px rgba(255, 107, 107, 0.4);
    }
}

@keyframes noticeShimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.wl-warning {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
    animation: warningGlow 1.5s ease-in-out infinite alternate;
    position: relative;
    z-index: 1;
}

@keyframes warningGlow {
    0% {
        text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
        transform: translateY(0);
    }
    100% {
        text-shadow: 0 0 20px rgba(255, 107, 107, 0.8), 0 0 30px rgba(255, 107, 107, 0.4);
        transform: translateY(-2px);
    }
}

.wl-notice p {
    color: var(--gray-text);
    font-size: 0.9rem;
    margin: 0;
    font-style: italic;
}

.requirements-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.requirements-section h3 {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    text-align: center;
}

.requirements-list {
    display: grid;
    gap: 1rem;
}

.requirement-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.requirement-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 107, 0.1), transparent);
    transition: left 0.5s ease;
}

.requirement-link:hover::before {
    left: 100%;
}

.requirement-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.2);
}

.requirement {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.requirement-link:hover .requirement {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(255, 255, 255, 0.05));
    border-color: rgba(255, 107, 107, 0.3);
    transform: translateX(5px);
}

.requirement-icon {
    font-size: 1.8rem;
    min-width: 35px;
    text-align: center;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.requirement-link:hover .requirement-icon {
    transform: scale(1.1);
    animation: iconSpin 0.5s ease;
}

@keyframes iconSpin {
    0% { transform: scale(1.1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(10deg); }
    100% { transform: scale(1.1) rotate(0deg); }
}

.requirement span:not(.requirement-icon):not(.requirement-arrow) {
    color: var(--light-text);
    font-weight: 500;
    font-size: 1rem;
    flex: 1;
    transition: color 0.3s ease;
}

.requirement-link:hover .requirement span:not(.requirement-icon):not(.requirement-arrow) {
    color: var(--primary-color);
}

.requirement-arrow {
    font-size: 1.5rem;
    color: var(--primary-color);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    min-width: 20px;
    text-align: center;
}

.requirement-link:hover .requirement-arrow {
    opacity: 1;
    transform: translateX(0);
}

.requirement a {
    color: inherit;
    text-decoration: none;
    font-weight: inherit;
    transition: none;
}

.requirement a:hover {
    color: inherit;
    text-decoration: none;
}

.captcha-container {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.captcha-question {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.captcha-input {
    width: 100%;
    padding: 0.8rem;
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--light-text);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.captcha-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(255, 107, 107, 0.2);
}

.success-message {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.1), rgba(0, 0, 0, 0.9));
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.success-message:not(.hidden) {
    opacity: 1;
    visibility: visible;
    animation: backdropPulse 2s ease-in-out infinite;
}

@keyframes backdropPulse {
    0%, 100% {
        background: radial-gradient(circle at center, rgba(16, 185, 129, 0.1), rgba(0, 0, 0, 0.9));
    }
    50% {
        background: radial-gradient(circle at center, rgba(16, 185, 129, 0.2), rgba(0, 0, 0, 0.95));
    }
}

.success-modal {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 25px;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    backdrop-filter: blur(25px);
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(16, 185, 129, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: scale(0.7) translateY(100px) rotateX(15deg);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.success-modal::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(16, 185, 129, 0.1),
        transparent
    );
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.success-message:not(.hidden) .success-modal {
    transform: scale(1) translateY(0) rotateX(0);
    animation: modalBounce 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalBounce {
    0% {
        transform: scale(0.7) translateY(100px) rotateX(15deg);
        opacity: 0;
    }
    25% {
        transform: scale(1.1) translateY(-20px) rotateX(-5deg);
        opacity: 1;
    }
    50% {
        transform: scale(0.95) translateY(10px) rotateX(2deg);
    }
    75% {
        transform: scale(1.02) translateY(-5px) rotateX(-1deg);
    }
    100% {
        transform: scale(1) translateY(0) rotateX(0);
        opacity: 1;
    }
}

.success-icon-container {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.success-icon {
    font-size: 4.5rem;
    display: block;
    animation: iconSpin 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.5));
    position: relative;
    z-index: 2;
}

.success-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    pointer-events: none;
}

.success-particles::before,
.success-particles::after {
    content: '✨';
    position: absolute;
    font-size: 1.5rem;
    animation: particleFloat 3s ease-in-out infinite;
}

.success-particles::before {
    top: -20px;
    left: -30px;
    animation-delay: 0s;
}

.success-particles::after {
    top: -25px;
    right: -35px;
    animation-delay: 0.5s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    50% {
        transform: translateY(-15px) rotate(180deg);
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
}

@keyframes iconSpin {
    0% {
        transform: rotate(0deg) scale(0) rotateX(90deg);
        opacity: 0;
    }
    25% {
        transform: rotate(90deg) scale(1.3) rotateX(45deg);
        opacity: 0.8;
    }
    50% {
        transform: rotate(180deg) scale(1.1) rotateX(0deg);
        opacity: 1;
    }
    75% {
        transform: rotate(270deg) scale(1.05) rotateX(-10deg);
        opacity: 1;
    }
    100% {
        transform: rotate(360deg) scale(1) rotateX(0deg);
        opacity: 1;
    }
}

.success-modal h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #10b981, #059669, #34d399);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    animation: gradientShift 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.success-modal p {
    color: var(--light-text);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease 0.3s both;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.x-share-btn {
    background: linear-gradient(45deg, #000000, #1a1a1a);
    color: white;
    border: 1px solid #333;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.x-share-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.x-share-btn:hover::before {
    left: 100%;
}

.x-share-btn:hover {
    background: linear-gradient(45deg, #1a1a1a, #333);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.x-share-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.close-modal-btn {
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.close-modal-btn::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.5s;
}

.close-modal-btn:hover::before {
    left: 100%;
}

.close-modal-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.close-modal-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.success-details {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 1rem;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease 0.7s both;
    backdrop-filter: blur(10px);
}

.success-details::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(45deg, rgba(16, 185, 129, 0.2), transparent, rgba(16, 185, 129, 0.2));
    border-radius: 15px;
    z-index: -1;
    opacity: 0.5;
}

.success-details p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--gray-text);
    position: relative;
    z-index: 1;
}

.success-details strong {
    color: var(--primary-color);
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

.success-details a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.success-details a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.success-details a:hover::after {
    width: 100%;
}

.success-details a:hover {
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.hidden {
    display: none;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--gray-text);
}

.mystery-traits {
    font-style: italic;
    color: var(--primary-color) !important;
    font-weight: 600;
    text-align: center;
    margin-top: 2.5rem !important;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    position: relative;
    overflow: hidden;
}

.mystery-traits::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%; }
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.feature h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.feature p {
    color: var(--gray-text);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--darker-bg);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--border-color);
    position: relative;
    margin-bottom: 0;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo {
    width: 100%;
    display: flex;
    justify-content: center;
}

.footer-logo-text {
    text-align: center;
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    line-height: 1;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 15px;
    border: 2px solid rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
}

.footer-logo-text:hover {
    transform: scale(1.05);
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.logo-pixel {
    display: block;
    font-size: 2rem;
    background: linear-gradient(45deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-punk {
    display: block;
    font-size: 2rem;
    background: linear-gradient(45deg, #8b5cf6, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-reborn {
    font-size: 1.2rem;
    margin-top: 0.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.2em;
}

.footer-brand h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: var(--gray-text);
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.footer-section a {
    display: block;
    color: var(--gray-text);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--light-text);
}

.footer-social h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    color: var(--gray-text);
    font-size: 0.9rem;
}

/* Copyright Section */
.copyright {
    text-align: center;
    padding: 1.5rem 0;
    background: var(--darker-bg);
    border-top: 1px solid var(--border-color);
    color: var(--gray-text);
    font-size: 0.85rem;
    margin-top: 0;
}

.copyright p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .hero-stats {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .stat {
        width: 100%;
        max-width: 200px;
        padding: 1rem;
    }
    
    .whitelist-form {
        padding: 2rem;
    }
    
    .form-group input {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--darker-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff5252;
}
