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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.text-yellow {
    color: #fbbf24;
}

.text-purple {
    color: #8b5cf6;
}

.white {
    color: white;
}

/* Background Gradients */
.bg-gradient {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 50%, #3b82f6 100%);
    min-height: 100vh;
}

/* Navigation */
.nav {
    position: relative;
    z-index: 10;
    padding: 1rem 1.5rem;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo {
    width: 2.5rem;
    height: 2.5rem;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.logo i {
    color: #ff6b6b;
    width: 1.5rem;
    height: 1.5rem;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.nav-links {
    display: none;
    gap: 1.5rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #fce7f3;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

/* Hero Section */
.hero {
    position: relative;
    padding: 5rem 1.5rem;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hero-content {
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

/* Waitlist Form */
.waitlist-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border-radius: 1.5rem;
    padding: 2rem;
    margin-bottom: 4rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.form-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.email-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 9999px;
    font-size: 1.125rem;
    border: none;
    outline: none;
}

.email-input:focus {
    box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.3);
}

.submit-btn {
    padding: 1rem 2rem;
    background: linear-gradient(to right, #ec4899, #8b5cf6);
    color: white;
    font-weight: 600;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.submit-btn:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .waitlist-form {
        padding: 3rem;
    }
    
    .form-group {
        flex-direction: row;
    }
}

/* Success Message */
.success-message {
    text-align: center;
}

.success-icon {
    width: 4rem;
    height: 4rem;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.success-icon i {
    color: #ffd93d;
    width: 2rem;
    height: 2rem;
}

.success-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.5rem;
}

.success-text {
    color: rgba(255, 255, 255, 0.9);
}

/* Form Stats */
.form-stats {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
}

.stat i {
    color: #4ecdc4;
    width: 1rem;
    height: 1rem;
}

.stat-divider {
    width: 0.25rem;
    height: 0.25rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

/* Scroll Indicator */
.scroll-indicator {
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    width: 2rem;
    height: 2rem;
    color: #ff9ff3;
    margin: 0 auto;
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translateY(0);
    }
    40%, 43% {
        transform: translateY(-30px);
    }
    70% {
        transform: translateY(-15px);
    }
    90% {
        transform: translateY(-4px);
    }
}

/* Features Section */
.features {
    padding: 5rem 1.5rem;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

/* Features Grid */
.features-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    text-align: center;
    transition: transform 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon i {
    width: 2.5rem;
    height: 2.5rem;
    color: white;
}

.pink-purple {
    background: linear-gradient(to right, #ec4899, #8b5cf6);
}

.blue-teal {
    background: linear-gradient(to right, #3b82f6, #14b8a6);
}

.green-blue {
    background: linear-gradient(to right, #10b981, #3b82f6);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}

.feature-text {
    color: #6b7280;
    line-height: 1.6;
}

/* Game Preview */
.game-preview {
    background: linear-gradient(to right, #8b5cf6, #ec4899);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    color: white;
}

.preview-title {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.preview-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.preview-image {
    width: 16rem;
    height: 10rem;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.features-list {
    list-style: none;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.feature-item i {
    width: 1.25rem;
    height: 1.25rem;
    color: #ff6b6b;
}

@media (min-width: 768px) {
    .game-preview {
        padding: 4rem;
    }
    
    .preview-title {
        font-size: 2.25rem;
    }
    
    .preview-content {
        flex-direction: row;
    }
}

/* Tokenomics Section */
.tokenomics {
    padding: 5rem 1.5rem;
    background: linear-gradient(to right, #4f46e5, #8b5cf6, #ec4899);
}

.tokenomics-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .tokenomics-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.tokenomics-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.token-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.token-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.token-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.token-icon i {
    width: 1.5rem;
    height: 1.5rem;
    color: #ffffff;
}

.yellow {
    background: #fbbf24;
}

.green {
    background: #10b981;
}

.blue {
    background: #3b82f6;
}

.token-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: white;
}

.token-value {
    color: rgba(255, 255, 255, 0.8);
}

.tokenomics-info {
    color: white;
}

.info-title {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.info-subtitle {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.info-list {
    list-style: none;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.info-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
}

.info-dot.green {
    background: #10b981;
}

.info-dot.blue {
    background: #3b82f6;
}

.info-dot.purple {
    background: #8b5cf6;
}

.info-dot.pink {
    background: #ec4899;
}

/* Community Section */
.community {
    padding: 5rem 1.5rem;
    background: white;
}

.community-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .community-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.community-card {
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    color: white;
    transition: transform 0.2s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.community-card:hover {
    transform: scale(1.05);
}

.community-card i {
    color: #ffffff;
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
}

.twitter {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.discord {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.newsletter {
    background: linear-gradient(135deg, #10b981, #059669);
}

.community-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.community-text {
    opacity: 0.9;
    margin-bottom: 1rem;
}

.community-handle {
    color: rgba(255, 255, 255, 0.8);
}

/* Early Adopter */
.early-adopter {
    background: linear-gradient(to right, #f97316, #ec4899);
    border-radius: 1.5rem;
    padding: 2rem;
    color: white;
}

.adopter-title {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-align: center;
}

.adopter-grid {
    display: grid;
    gap: 2rem;
    text-align: left;
}

@media (min-width: 768px) {
    .early-adopter {
        padding: 4rem;
    }
    
    .adopter-title {
        font-size: 2.25rem;
    }
    
    .adopter-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.adopter-subtitle {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.adopter-list {
    list-style: none;
}

.adopter-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.adopter-item i {
    width: 1.25rem;
    height: 1.25rem;
    color: #ffd93d;
}

/* Footer */
.footer {
    padding: 3rem 1.5rem;
    background: #111827;
    color: white;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo {
    width: 2rem;
    height: 2rem;
    background: #ec4899;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo i {
    width: 1.25rem;
    height: 1.25rem;
    color: #ffd93d;
}

.footer-text {
    font-size: 1.25rem;
    font-weight: bold;
}

.footer-info {
    text-align: center;
}

.footer-domain {
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.footer-copyright {
    color: #6b7280;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .footer-brand {
        margin-bottom: 0;
    }
    
    .footer-info {
        text-align: right;
    }
}

.footer-bottom {
    border-top: 1px solid #374151;
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
}

.footer-cta {
    color: #9ca3af;
    margin-bottom: 1.5rem;
}

.social-button-container {
    margin-top: 1.5rem;
}

.social-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(to right, #3b82f6, #8b5cf6, #ec4899);
    color: white;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.social-button:hover {
    background: linear-gradient(to right, #1d4ed8, #7c3aed, #db2777);
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.social-button i {
    color: #ffffff;
    width: 1.5rem;
    height: 1.5rem;
}

.social-button span {
    font-size: 1.125rem;
}