* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', monospace;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a3a 25%, #2a2a5a 50%, #3a3a7a 75%, #4a4a9a 100%);
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Stars background */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        radial-gradient(2px 2px at 20px 30px, #eee, transparent),
        radial-gradient(2px 2px at 40px 70px, #eee, transparent),
        radial-gradient(1px 1px at 90px 40px, #eee, transparent),
        radial-gradient(1px 1px at 130px 80px, #eee, transparent),
        radial-gradient(2px 2px at 160px 30px, #eee, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: stars-move 20s linear infinite;
}

@keyframes stars-move {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

/* Language switcher (top-right) */
.lang-switcher {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.lang-option {
    color: #ffffff;
    text-decoration: none;
    font-weight: 900;
    font-size: 0.95rem;
    padding: 8px 12px;
    border: 2px solid rgba(0, 255, 255, 0.4);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.35);
    transition: all 0.2s ease;
    user-select: none;
}

.lang-option:hover,
.lang-option.active {
    color: #00ffff;
    border-color: #00ffff;
    box-shadow: 0 0 16px rgba(0, 255, 255, 0.45);
}

@media (max-width: 768px) {
    .lang-switcher {
        top: 10px;
        right: 10px;
    }

    .lang-option {
        font-size: 0.85rem;
        padding: 6px 10px;
    }
}

.logo-container {
    margin-bottom: 20px;
}

.logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid #00ffff;
    box-shadow: 
        0 0 30px rgba(0, 255, 255, 0.8),
        0 0 60px rgba(0, 255, 255, 0.4),
        inset 0 0 30px rgba(0, 255, 255, 0.2);
    animation: logo-glow 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.1);
    box-shadow: 
        0 0 40px rgba(0, 255, 255, 1),
        0 0 80px rgba(0, 255, 255, 0.6),
        inset 0 0 40px rgba(0, 255, 255, 0.3);
}

@keyframes logo-glow {
    0%, 100% { 
        box-shadow: 
            0 0 30px rgba(0, 255, 255, 0.8),
            0 0 60px rgba(0, 255, 255, 0.4),
            inset 0 0 30px rgba(0, 255, 255, 0.2);
    }
    50% { 
        box-shadow: 
            0 0 40px rgba(0, 255, 255, 1),
            0 0 80px rgba(0, 255, 255, 0.6),
            inset 0 0 40px rgba(0, 255, 255, 0.3);
    }
}

/* Navigation */
.nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    padding: 10px 20px;
    border: 2px solid transparent;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav a:hover, .nav a.active {
    color: #00ffff;
    border-color: #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 120px;
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: #00ffff;
    text-shadow: 
        0 0 20px rgba(0, 255, 255, 0.8),
        0 0 40px rgba(0, 255, 255, 0.6);
    margin-bottom: 20px;
    animation: title-pulse 2s ease-in-out infinite alternate;
}

@keyframes title-pulse {
    0% { 
        text-shadow: 
            0 0 20px rgba(0, 255, 255, 0.8),
            0 0 40px rgba(0, 255, 255, 0.6);
    }
    100% { 
        text-shadow: 
            0 0 30px rgba(0, 255, 255, 1),
            0 0 60px rgba(0, 255, 255, 0.8),
            0 0 90px rgba(0, 255, 255, 0.6);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #cccccc;
    margin-bottom: 30px;
    font-weight: 400;
}

.hero-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

.hero-description p {
    margin-bottom: 15px;
}

.slug-motto {
    color: #00ffff;
    font-weight: 700;
    font-size: 1.3rem !important;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

/* Goals Section */
.goals {
    margin-bottom: 120px;
}

.goals h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
}

/* Treasure Main Hero */
.treasure-main-hero {
    text-align: center;
    margin-bottom: 100px;
    padding: 60px 40px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.treasure-main-hero h2 {
    font-size: 2.5rem;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
    margin-bottom: 30px;
}

.treasure-main-content {
    max-width: 900px;
    margin: 0 auto;
}

.treasure-main-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.treasure-stats-grid {
    display: grid;
    /* Keep enough width so big numbers like 3,888,888 don't overflow */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.treasure-stat {
    background: rgba(0, 255, 255, 0.1);
    padding: 30px 15px;
    border-radius: 15px;
    border: 2px solid rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.treasure-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
    border-color: #00ffff;
}

.stat-number {
    /* Make the stat number responsive so it fits on smaller cards */
    font-size: clamp(2.2rem, 4vw, 3rem);
    line-height: 1.1;
    font-weight: 900;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
    margin-bottom: 10px;
    max-width: 100%;
    white-space: nowrap;
}

.stat-label {
    font-size: 1rem;
    color: #cccccc;
    font-weight: 400;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.goal-card {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.goal-card:hover {
    transform: translateY(-10px);
    border-color: #00ffff;
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
}

.goal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.goal-card:hover::before {
    left: 100%;
}

.goal-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.goal-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #00ffff;
}

.goal-card p {
    color: #cccccc;
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #cccccc;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #00ffff, #0088ff);
    color: #000000;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.3rem;
    padding: 20px 50px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.6);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.8);
}

.cta-button span {
    position: relative;
    z-index: 2;
}

.button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover .button-glow {
    left: 100%;
}

/* Disclaimer Section */
.disclaimer-section {
    margin-top: 80px;
    padding: 40px 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #00ffff;
    margin-bottom: 10px;
    margin-top: 20px;
}

.disclaimer-section p:not(.disclaimer-title) {
    font-size: 0.7rem;
    line-height: 1.6;
    color: #888888;
    margin-bottom: 15px;
}

/* Legend Page Styles */
.legend-hero {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.legend-hero h1 {
    font-size: 3rem;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
    margin-bottom: 30px;
}

.legend-intro {
    max-width: 800px;
    margin: 0 auto;
}

.legend-text {
    font-size: 1.3rem;
    line-height: 2.2;
    color: #cccccc;
    text-align: center;
}

.legend-story {
    margin-bottom: 120px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.story-content p {
    font-size: 1.2rem;
    line-height: 2.5;
    color: #cccccc;
    margin-bottom: 25px;
    text-align: center;
}

.highlight {
    color: #00ffff !important;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.slug-description {
    font-size: 1.4rem !important;
    line-height: 2.2 !important;
    color: #00ffff !important;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.blue-slug-info {
    margin-bottom: 120px;
    text-align: center;
}

.blue-slug-info h2 {
    font-size: 2.5rem;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
    margin-bottom: 50px;
}

.slug-traits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.trait-card {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.trait-card:hover {
    transform: translateY(-10px);
    border-color: #00ffff;
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
}

.trait-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.trait-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #00ffff;
}

.trait-card p {
    color: #cccccc;
    line-height: 1.8;
    font-size: 1.1rem;
}

.slug-army {
    text-align: center;
    margin-bottom: 120px;
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.army-content p {
    font-size: 1.3rem;
    line-height: 2.5;
    color: #cccccc;
    margin-bottom: 25px;
}

.army-motto {
    color: #00ffff !important;
    font-weight: 700;
    font-size: 1.5rem !important;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.ecosystem {
    margin-bottom: 120px;
    text-align: center;
}

.ecosystem h2 {
    font-size: 2.5rem;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
    margin-bottom: 40px;
}

.ecosystem-content p {
    font-size: 1.2rem;
    line-height: 2.5;
    color: #cccccc;
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.slug-benefits {
    margin-bottom: 120px;
    text-align: center;
}

.slug-benefits h2 {
    font-size: 2.5rem;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.benefit-card {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: #00ffff;
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: #00ffff;
    line-height: 1.5;
}

.benefits-outro {
    font-size: 1.2rem;
    color: #cccccc;
    font-style: italic;
    margin-top: 30px;
}

.final-message {
    text-align: center;
    padding: 40px 0;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.final-content p {
    font-size: 1.3rem;
    line-height: 2.5;
    color: #cccccc;
    margin-bottom: 25px;
}

.final-highlight {
    color: #00ffff !important;
    font-weight: 700;
    font-size: 1.5rem !important;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

/* Utility Page Styles */
.utility-hero {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.utility-hero h1 {
    font-size: 3rem;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
    margin-bottom: 30px;
}

.utility-intro {
    font-size: 1.3rem;
    line-height: 2;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto;
}

.utility-features {
    margin-bottom: 120px;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #00ffff;
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
}

.feature-number {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #00ffff, #0088ff);
    color: #000000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-weight: 900;
    font-size: 1.2rem;
}

.feature-card h2 {
    display: flex;
    gap: 10px;
    font-size: 1.8rem;
    color: #00ffff;
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 15px;
    flex-grow: 1;
}

.feature-benefit {
    color: #00ffff !important;
    font-weight: 700;
    font-style: italic;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.utility-summary {
    text-align: center;
    padding: 40px 0;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.summary-content h2 {
    font-size: 2.5rem;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
    margin-bottom: 20px;
}

.summary-content p {
    font-size: 1.2rem;
    line-height: 2;
    color: #cccccc;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.utility-hero {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.utility-hero h1 {
    font-size: 3rem;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
    margin-bottom: 30px;
}

.utility-intro {
    font-size: 1.3rem;
    line-height: 2;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto;
}

.utility-features {
    margin-bottom: 120px;
}

.feature-card {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #00ffff;
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
}

.feature-number {
    position: absolute;
    top: -15px;
    left: 30px;
    background: linear-gradient(45deg, #00ffff, #0088ff);
    color: #000000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
}

.feature-card h2 {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.8rem;
    color: #00ffff;
    margin-bottom: 20px;
    margin-top: 10px;
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 15px;
}

.feature-benefit {
    color: #00ffff !important;
    font-weight: 700;
    font-style: italic;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.utility-summary {
    text-align: center;
    padding: 40px 0;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.summary-content h2 {
    font-size: 2.5rem;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
    margin-bottom: 20px;
}

.summary-content p {
    font-size: 1.2rem;
    line-height: 2;
    color: #cccccc;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.summary-highlight {
    margin-top: 30px;
}

.summary-highlight p {
    color: #00ffff !important;
    font-weight: 700;
    font-size: 1.5rem !important;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

/* Game Page Styles */
.game-hero {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.game-hero h1 {
    font-size: 3rem;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
    margin-bottom: 20px;
}

.game-status {
    font-size: 1.2rem;
    color: #ffff00;
    margin-bottom: 20px;
    font-style: italic;
}

.game-intro {
    font-size: 1.3rem;
    line-height: 2;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto;
}

.game-features {
    margin-bottom: 120px;
    text-align: center;
}

.game-features h2 {
    font-size: 2.5rem;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.feature-item {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-item:hover {
    transform: translateY(-10px);
    border-color: #00ffff;
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
}

.feature-item .feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #00ffff;
}

.feature-item p {
    color: #cccccc;
    line-height: 1.8;
    font-size: 1.1rem;
}

.game-cta {
    text-align: center;
    padding: 40px 0;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.game-cta h2 {
    font-size: 2.5rem;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
    margin-bottom: 20px;
}

.game-cta p {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 30px;
}

.coming-soon {
    margin-top: 30px;
}

.coming-soon p {
    color: #00ffff !important;
    font-weight: 700;
    font-size: 1.5rem !important;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

/* New Game Page Styles */
.game-modes {
    margin-bottom: 120px;
    text-align: center;
}

.game-modes h2 {
    font-size: 2.5rem;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
    margin-bottom: 50px;
}

.mode-card {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: left;
}

.mode-card:hover {
    transform: translateY(-10px);
    border-color: #00ffff;
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
}

.mode-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 2fr);
    gap: 24px;
    align-items: center;
}

.mode-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(0, 255, 255, 0.35);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.35);
    background: radial-gradient(circle at 20% 0%, rgba(0,255,255,0.2), transparent 60%);
}

.mode-image {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 260px;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.mode-card:hover .mode-image {
    transform: scale(1.05);
    filter: saturate(1.15);
}

@media (max-width: 900px) {
    .mode-layout {
        grid-template-columns: 1fr;
    }
}

.mode-header h3 {
    font-size: 1.8rem;
    color: #00ffff;
    margin-bottom: 15px;
    text-align: center;
}

.mode-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    font-style: italic;
    text-align: center;
    margin-bottom: 30px;
}

.mode-features ul {
    list-style: none;
    padding: 0;
}

.mode-features li {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 15px;
    line-height: 1.6;
}

.game-revolution {
    margin-bottom: 120px;
    text-align: center;
}

.game-revolution h2 {
    font-size: 2.5rem;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
    margin-bottom: 50px;
}

.revolution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.revolution-card {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: left;
}

.revolution-card:hover {
    transform: translateY(-10px);
    border-color: #00ffff;
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
}

.revolution-card h3 {
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 20px;
    text-align: center;
}

.revolution-card ul {
    list-style: none;
    padding: 0;
}

.revolution-card li {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 10px;
    line-height: 1.6;
}

.game-phenomenon {
    margin-bottom: 120px;
    text-align: center;
}

.game-phenomenon h2 {
    font-size: 2.5rem;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
    margin-bottom: 40px;
}

.phenomenon-content {
    max-width: 800px;
    margin: 0 auto;
}

.phenomenon-quote {
    font-size: 1.4rem;
    color: #cccccc;
    font-style: italic;
    margin-bottom: 40px;
    line-height: 1.8;
}

.phenomenon-highlight {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.phenomenon-highlight .highlight {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.phenomenon-highlight .slug-motto {
    font-size: 1.2rem;
    margin-bottom: 0;
}

/* NFT Page Styles */
.nft-hero {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.nft-hero h1 {
    font-size: 3rem;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
    margin-bottom: 30px;
}

.nft-intro {
    font-size: 1.3rem;
    line-height: 2;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto;
}

.nft-features {
    margin-bottom: 120px;
    text-align: center;
}

.nft-feature {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.nft-feature:hover {
    transform: translateY(-10px);
    border-color: #00ffff;
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
}

.nft-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.nft-feature h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #00ffff;
}

.nft-feature p {
    color: #cccccc;
    line-height: 1.8;
    font-size: 1.1rem;
}

.nft-summary {
    text-align: center;
    padding: 40px 0;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.nft-summary .summary-content p {
    font-size: 1.2rem;
    line-height: 2;
    color: #cccccc;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.nft-highlight {
    margin-top: 30px;
}

.nft-highlight p {
    color: #00ffff !important;
    font-weight: 700;
    font-size: 1.5rem !important;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

/* NFT Gallery Styles */
.nft-gallery-section {
    margin-bottom: 120px;
    text-align: center;
}

.nft-gallery-section h2 {
    font-size: 2.5rem;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
    margin-bottom: 50px;
}

.nft-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.nft-item {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.nft-item:hover {
    transform: translateY(-10px);
    border-color: #00ffff;
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
}

.nft-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.nft-item:hover::before {
    left: 100%;
}

.nft-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.nft-item:hover .nft-image {
    transform: scale(1.05);
}

.nft-info h3 {
    font-size: 1.3rem;
    color: #00ffff;
    margin-bottom: 10px;
    font-weight: 700;
}

.nft-rarity {
    font-size: 1rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 15px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nft-rarity.common {
    background: rgba(128, 128, 128, 0.3);
    color: #cccccc;
    border: 1px solid rgba(128, 128, 128, 0.5);
}

.nft-rarity.rare {
    background: rgba(0, 255, 255, 0.2);
    color: #00ffff;
    border: 1px solid rgba(0, 255, 255, 0.5);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.nft-rarity.epic {
    background: rgba(255, 0, 255, 0.2);
    color: #ff00ff;
    border: 1px solid rgba(255, 0, 255, 0.5);
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}

.nft-rarity.legendary {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    border: 1px solid rgba(255, 215, 0, 0.5);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

/* NFT item borders by rank */
.nft-item.nft-common {
    border: 3px solid #cccccc;
    box-shadow: 0 0 20px rgba(128, 128, 128, 0.5);
}

.nft-item.nft-rare {
    border: 3px solid #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.nft-item.nft-epic {
    border: 3px solid #ff00ff;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

.nft-info h3.common {
    color: #cccccc;
}

.nft-info h3.rare {
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.nft-info h3.epic {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}

.nft-roi {
    font-size: 1rem;
    color: #00ff00;
    font-weight: 600;
    margin-top: 10px;
}

.nft-summary h2 {
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 20px;
}

/* Treasure/Slug Pool rank colors to match NFT rarity */
.treasure-rank.common h3 { color: #cccccc; }
.treasure-rank.rare h3 { color: #00ffff; text-shadow: 0 0 10px rgba(0, 255, 255, 0.8); }
.treasure-rank.epic h3 { color: #ff00ff; text-shadow: 0 0 10px rgba(255, 0, 255, 0.8); }

/* Ambassador Page Styles */
.ambassador-hero {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.ambassador-hero h1 {
    font-size: 3rem;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
    margin-bottom: 30px;
}

.ambassador-intro {
    font-size: 1.3rem;
    line-height: 2;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto;
}

.ambassador-benefits {
    margin-bottom: 120px;
    text-align: center;
}

.benefit-content {
    max-width: 800px;
    margin: 0 auto;
}

.benefit-content p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 30px;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.benefit-item {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.benefit-item:hover {
    transform: translateY(-10px);
    border-color: #00ffff;
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
}

.benefit-item .benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.benefit-item p {
    color: #cccccc;
    line-height: 1.8;
    font-size: 1.1rem;
}

.how-to-participate {
    margin-bottom: 120px;
    text-align: center;
}

.how-to-participate h2 {
    font-size: 2.5rem;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
    margin-bottom: 50px;
}

.participation-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.step-item {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
}

.step-item:hover {
    transform: translateY(-10px);
    border-color: #00ffff;
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #00ffff, #0088ff);
    color: #000000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
}

.step-content h3 {
    font-size: 1.3rem;
    color: #00ffff;
    margin-top: 20px;
    line-height: 1.5;
}

.slug-challenge {
    margin-bottom: 120px;
    text-align: center;
}

.slug-challenge h2 {
    font-size: 2.5rem;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
    margin-bottom: 30px;
}

.challenge-content {
    max-width: 800px;
    margin: 0 auto;
}

.challenge-content p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 30px;
}

.challenge-conditions {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.challenge-conditions h3 {
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 20px;
}

.conditions-list p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 10px;
    text-align: left;
}

.challenge-prizes {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.challenge-prizes h3 {
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 20px;
}

.form-link {
    display: inline-block;
    background: linear-gradient(45deg, #00ffff, #0088ff);
    color: #000000;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.2rem;
    padding: 15px 30px;
    border-radius: 25px;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
}

.form-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.8);
}

.ambassador-outro {
    text-align: center;
    padding: 40px 0;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.outro-content p {
    font-size: 1.2rem;
    line-height: 2;
    color: #cccccc;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.outro-highlight {
    margin-top: 30px;
}

.outro-highlight p {
    color: #00ffff !important;
    font-weight: 700;
    font-size: 1.5rem !important;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

/* Tokenomics Page Styles */
.tokenomics-hero {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.tokenomics-hero h1 {
    font-size: 3rem;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
    margin-bottom: 30px;
}

.tokenomics-intro {
    font-size: 1.3rem;
    line-height: 2;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto;
}

.token-distribution {
    margin-bottom: 120px;
    text-align: center;
}

.token-distribution h2 {
    font-size: 2.5rem;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
    margin-bottom: 50px;
}

.distribution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

/* Центрирование нижних элементов для 5-элементной сетки */
.distribution-grid .distribution-item:nth-child(4),
.distribution-grid .distribution-item:nth-child(5) {
    grid-column: span 1;
}

.distribution-grid .distribution-item:nth-child(4) {
    grid-column: 1 / 2;
    margin: 0 auto;
}

.distribution-grid .distribution-item:nth-child(5) {
    grid-column: 3 / 4;
    margin: 0 auto;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .distribution-grid {
        grid-template-columns: 1fr;
    }
    
    .distribution-grid .distribution-item:nth-child(4),
    .distribution-grid .distribution-item:nth-child(5) {
        grid-column: 1;
        margin: 0;
    }
}

.distribution-item {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.distribution-item:hover {
    transform: translateY(-10px);
    border-color: #00ffff;
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
}

.distribution-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.distribution-item h3 {
    font-size: 1.5rem;
    color: #00ffff;
    line-height: 1.5;
}

.early-investors {
    margin-bottom: 120px;
    text-align: center;
}

.early-investors h2 {
    font-size: 2.5rem;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
    margin-bottom: 30px;
}

.early-investors p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.early-investors ul {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.early-investors li {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.early-investors li:before {
    content: "💎";
    position: absolute;
    left: 0;
}

.burn-mechanism {
    text-align: center;
    padding: 40px 0;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.burn-mechanism h2 {
    font-size: 2.5rem;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
    margin-bottom: 30px;
}

.burn-mechanism p {
    font-size: 1.2rem;
    line-height: 2;
    color: #cccccc;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Treasure Pool Page Styles */
.treasure-hero {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.treasure-hero h1 {
    font-size: 3rem;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
    margin-bottom: 30px;
}

/* Animated Bubble */
.bubble-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
    padding: 20px;
}

.bubble {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(0, 255, 255, 0.4), rgba(0, 255, 255, 0.1), transparent);
    border: 3px solid rgba(0, 255, 255, 0.6);
    box-shadow: 
        0 0 40px rgba(0, 255, 255, 0.6),
        inset 0 0 60px rgba(0, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: bubble-float 4s ease-in-out infinite, bubble-pulse 2s ease-in-out infinite;
}

@keyframes bubble-float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

@keyframes bubble-pulse {
    0%, 100% {
        box-shadow: 
            0 0 40px rgba(0, 255, 255, 0.6),
            inset 0 0 60px rgba(0, 255, 255, 0.2);
    }
    50% {
        box-shadow: 
            0 0 60px rgba(0, 255, 255, 0.8),
            inset 0 0 80px rgba(0, 255, 255, 0.3);
    }
}

.bubble-content {
    text-align: center;
    z-index: 2;
}

.bubble-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: #00ffff;
    text-shadow: 
        0 0 20px rgba(0, 255, 255, 1),
        0 0 40px rgba(0, 255, 255, 0.8);
    margin-bottom: 10px;
    animation: text-glow 2s ease-in-out infinite;
}

.bubble-label {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

@keyframes text-glow {
    0%, 100% {
        text-shadow: 
            0 0 20px rgba(0, 255, 255, 1),
            0 0 40px rgba(0, 255, 255, 0.8);
    }
    50% {
        text-shadow: 
            0 0 30px rgba(0, 255, 255, 1),
            0 0 60px rgba(0, 255, 255, 1),
            0 0 90px rgba(0, 255, 255, 0.8);
    }
}

.bubble-shine {
    position: absolute;
    top: 20%;
    left: 20%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8), transparent 60%);
    animation: shine-rotate 6s linear infinite;
}

@keyframes shine-rotate {
    0% {
        transform: rotate(0deg) translate(20px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translate(20px) rotate(-360deg);
    }
}

.treasure-intro {
    font-size: 1.3rem;
    line-height: 2;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto;
}

.treasure-distribution {
    margin-bottom: 80px;
    text-align: center;
}

.treasure-distribution h2 {
    font-size: 2.5rem;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
    margin-bottom: 50px;
}

.treasure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.treasure-item {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.treasure-item:hover {
    transform: translateY(-10px);
    border-color: #00ffff;
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
}

.treasure-rank h3 {
    font-size: 1.8rem;
    color: #00ffff;
    margin-bottom: 15px;
}

.treasure-percentage {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.treasure-schedule {
    margin-bottom: 80px;
    text-align: center;
}

.treasure-schedule h2 {
    font-size: 2.5rem;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
    margin-bottom: 30px;
}

.schedule-info {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.schedule-info p {
    font-size: 1.3rem;
    color: #cccccc;
    line-height: 1.8;
}

.treasure-future {
    text-align: center;
    margin-bottom: 60px;
}

.future-highlight {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(0, 255, 255, 0.2));
    border: 2px solid #00ffff;
    border-radius: 20px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    backdrop-filter: blur(15px);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
}

.future-highlight p {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00ffff;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
    animation: future-glow 2s ease-in-out infinite alternate;
}

@keyframes future-glow {
    0% {
        text-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
    }
    100% {
        text-shadow: 0 0 25px rgba(0, 255, 255, 1), 0 0 35px rgba(0, 255, 255, 0.8);
    }
}

/* Roadmap Page Styles */
.roadmap-hero {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.roadmap-hero h1 {
    font-size: 3rem;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
    margin-bottom: 30px;
}

.roadmap-intro {
    font-size: 1.3rem;
    line-height: 2;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto;
}

.roadmap-phases {
    text-align: center;
}

.phase {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.phase:hover {
    transform: translateY(-5px);
    border-color: #00ffff;
    box-shadow: 0 15px 30px rgba(0, 255, 255, 0.3);
}

/* Завершенные фазы */
.phase.completed {
    background: rgba(0, 255, 0, 0.1);
    border-color: rgba(0, 255, 0, 0.5);
}

.phase.completed h2 {
    color: #00ff00;
    text-shadow: 0 0 15px rgba(0, 255, 0, 0.8);
}

.phase.completed:hover {
    border-color: #00ff00;
    box-shadow: 0 15px 30px rgba(0, 255, 0, 0.3);
}

/* Текущая фаза */
.phase.current {
    background: rgba(255, 255, 0, 0.1);
    border-color: rgba(255, 255, 0, 0.8);
    animation: current-phase-glow 2s ease-in-out infinite alternate;
}

.phase.current h2 {
    color: #ffff00;
    text-shadow: 0 0 15px rgba(255, 255, 0, 0.8);
}

@keyframes current-phase-glow {
    0% {
        border-color: rgba(255, 255, 0, 0.5);
        box-shadow: 0 0 20px rgba(255, 255, 0, 0.3);
    }
    100% {
        border-color: rgba(255, 255, 0, 1);
        box-shadow: 0 0 40px rgba(255, 255, 0, 0.6);
    }
}

.phase h2 {
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 20px;
}

.phase p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 25px;
    font-style: italic;
}

.phase ul {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.phase li {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.phase li:before {
    content: "🐌";
    position: absolute;
    left: 0;
}

/* FAQ Section Styles */
.faq-section {
    margin-bottom: 120px;
    text-align: center;
}

.faq-content {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-content h2 {
    font-size: 2.5rem;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
    margin-bottom: 50px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: left;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.faq-item:hover {
    transform: translateY(-5px);
    border-color: #00ffff;
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
}

.faq-item h3 {
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 15px;
    text-align: center;
}

.faq-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 15px;
    text-align: center;
}

.faq-item p:last-child {
    margin-bottom: 0;
}

.faq-image {
    text-align: center;
    margin: 20px 0;
}

.wallet-image {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 2px solid rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.faq-subitem {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    padding: 20px;
    margin: 15px 0;
    text-align: center;
}

.faq-subitem p {
    font-size: 1rem;
    margin-bottom: 10px;
}

.faq-subitem strong {
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
}

.waiting-text {
    color: #00ffff !important;
    font-weight: 700;
    font-size: 1.3rem !important;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
    font-style: italic;
}

/* Instruction Images */
.instruction-image {
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 2px solid rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.instruction-image:hover {
    border-color: #00ffff;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
}

/* Warning Block */
.warning-block {
    background: rgba(255, 255, 0, 0.1);
    border: 1px solid rgba(255, 255, 0, 0.4);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.warning-block p {
    color: #ffff00 !important;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.6);
}

/* Creator Info Section */
.creator-info {
    margin-bottom: 120px;
    text-align: center;
}

.creator-info h2 {
    font-size: 2.5rem;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
    margin-bottom: 50px;
}

.creator-hero {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.3);
    padding: 60px 40px;
    margin-bottom: 50px;
}

.creator-content {
    max-width: 800px;
    margin: 0 auto;
}

.creator-avatar {
    margin-bottom: 30px;
}

.avatar-cosmic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00ffff, #0088ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    margin: 0 auto;
    box-shadow: 
        0 0 40px rgba(0, 255, 255, 0.8),
        0 0 80px rgba(0, 255, 255, 0.4),
        inset 0 0 40px rgba(0, 255, 255, 0.2);
    animation: avatar-pulse 3s ease-in-out infinite;
}

@keyframes avatar-pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 
            0 0 40px rgba(0, 255, 255, 0.8),
            0 0 80px rgba(0, 255, 255, 0.4),
            inset 0 0 40px rgba(0, 255, 255, 0.2);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 
            0 0 60px rgba(0, 255, 255, 1),
            0 0 120px rgba(0, 255, 255, 0.6),
            inset 0 0 60px rgba(0, 255, 255, 0.3);
    }
}

.creator-title {
    font-size: 3rem;
    font-weight: 900;
    color: #00ffff;
    text-shadow: 
        0 0 20px rgba(0, 255, 255, 0.8),
        0 0 40px rgba(0, 255, 255, 0.6);
    margin-bottom: 15px;
    animation: title-glow 2s ease-in-out infinite alternate;
}

.creator-subtitle {
    font-size: 1.5rem;
    color: #cccccc;
    margin-bottom: 30px;
    font-weight: 400;
    font-style: italic;
}

.creator-story {
    max-width: 700px;
    margin: 0 auto;
}

.creator-story p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 20px;
}

.creator-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.stat-card {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: #00ffff;
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.stat-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #00ffff;
    font-weight: 700;
}

.stat-card p {
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.creator-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.creator-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #00ffff, #0088ff);
    color: #000000;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 15px 25px;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
}

.creator-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.8);
}

.link-icon {
    font-size: 1.3rem;
}

.link-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.creator-link:hover .link-glow {
    left: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .goals-grid {
        grid-template-columns: 1fr;
    }
    
    .logo {
        width: 100px;
        height: 100px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero {
        padding: 30px 0;
    }
    
    .goal-card {
        padding: 20px;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .creator-title {
        font-size: 2rem;
    }
    
    .creator-hero {
        padding: 40px 20px;
    }
    
    .creator-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .creator-links {
        flex-direction: column;
        gap: 20px;
    }
    
    .avatar-cosmic {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .nft-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .nft-image {
        height: 200px;
    }
    
    .nft-item {
        padding: 15px;
    }
}

/* Whitepaper Styles */
.whitepaper-treasure-pool {
    margin-bottom: 80px;
}

.treasure-pool-content {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.treasure-overview,
.treasure-mechanics,
.treasure-distribution {
    margin-bottom: 40px;
}

.treasure-overview h3,
.treasure-mechanics h3,
.treasure-distribution h3 {
    color: #00ffff;
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.mechanics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.mechanic-item {
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.mechanic-item:hover {
    transform: translateY(-5px);
    border-color: #00ffff;
    box-shadow: 0 10px 20px rgba(0, 255, 255, 0.2);
}

.mechanic-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.mechanic-item h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.mechanic-item p {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.4;
}

.distribution-table {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.dist-row {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    padding: 15px;
    transition: all 0.3s ease;
}

.dist-row:hover {
    border-color: #00ffff;
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.2);
}

.rank {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
    margin-right: 20px;
    padding: 10px;
    border-radius: 8px;
}

.rank.common {
    background: rgba(128, 128, 128, 0.2);
    border: 1px solid #808080;
}

.rank.rare {
    background: rgba(0, 255, 0, 0.2);
    border: 1px solid #00ff00;
}

.rank.epic {
    background: rgba(128, 0, 128, 0.2);
    border: 1px solid #8000ff;
}

.rank.reserved {
    background: rgba(255, 165, 0, 0.2);
    border: 1px solid #ffa500;
}

.rank-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: #ffffff;
}

.rank-percentage {
    font-size: 1.5rem;
    font-weight: 900;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.rank-description {
    flex: 1;
    color: #cccccc;
    line-height: 1.5;
}

.whitepaper-hero {
    text-align: center;
    margin-bottom: 60px;
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.whitepaper-hero h1 {
    font-size: 3.5rem;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
    margin-bottom: 30px;
}

.whitepaper-intro {
    max-width: 800px;
    margin: 0 auto;
}

.whitepaper-subtitle {
    font-size: 1.5rem;
    color: #cccccc;
    margin-bottom: 15px;
    font-weight: 400;
}

.whitepaper-description {
    font-size: 1.2rem;
    color: #00ffff;
    font-style: italic;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
}

/* Whitepaper sections */
.whitepaper-abstract,
.whitepaper-problem,
.whitepaper-technology,
.whitepaper-tokenomics,
.whitepaper-game-design,
.whitepaper-nft,
.whitepaper-roadmap,
.whitepaper-team,
.whitepaper-risks,
.whitepaper-conclusion {
    margin-bottom: 80px;
}

.whitepaper-abstract h2,
.whitepaper-problem h2,
.whitepaper-technology h2,
.whitepaper-tokenomics h2,
.whitepaper-game-design h2,
.whitepaper-nft h2,
.whitepaper-roadmap h2,
.whitepaper-team h2,
.whitepaper-risks h2,
.whitepaper-conclusion h2 {
    font-size: 2.5rem;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
    margin-bottom: 40px;
    text-align: center;
}

.abstract-content {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 40px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.abstract-content:hover {
    border-color: #00ffff;
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
}

.abstract-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 20px;
    text-align: justify;
}

/* Problem-Solution Section */
.problem-solution {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.problem-card,
.solution-card {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.problem-card:hover,
.solution-card:hover {
    transform: translateY(-5px);
    border-color: #00ffff;
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
}

.problem-card h3,
.solution-card h3 {
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 20px;
    text-align: center;
}

.problem-card ul,
.solution-card ul {
    list-style: none;
    padding: 0;
}

.problem-card li,
.solution-card li {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 10px;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

.problem-card li:before {
    content: "❌";
    position: absolute;
    left: 0;
}

.solution-card li:before {
    content: "✅";
    position: absolute;
    left: 0;
}

/* Technology Section */
.tech-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.tech-card {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.tech-card:hover {
    transform: translateY(-10px);
    border-color: #00ffff;
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
}

.tech-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.tech-card h3 {
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 15px;
}

.tech-card p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Tokenomics Breakdown */
.tokenomics-breakdown {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.tokenomics-overview {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.tokenomics-overview:hover {
    border-color: #00ffff;
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
}

.tokenomics-overview h3 {
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 20px;
    text-align: center;
}

.tokenomics-overview ul {
    list-style: none;
    padding: 0;
}

.tokenomics-overview li {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 15px;
    line-height: 1.6;
}

.tokenomics-overview strong {
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
}

.distribution-visual {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.distribution-visual:hover {
    border-color: #00ffff;
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
}

.distribution-visual h3 {
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 20px;
    text-align: center;
}

.distribution-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.dist-item {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.dist-item:hover {
    transform: translateY(-5px);
    background: rgba(0, 255, 255, 0.2);
    border-color: #00ffff;
}

.dist-percentage {
    font-size: 2rem;
    font-weight: 900;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.dist-label {
    font-size: 1rem;
    color: #cccccc;
    margin: 10px 0;
    font-weight: 600;
}

.dist-amount {
    font-size: 0.9rem;
    color: #00ffff;
    font-weight: 700;
}

/* Game Design Section */
.game-design-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.game-mode-detailed {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.game-mode-detailed:hover {
    border-color: #00ffff;
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
}

.game-mode-detailed h3 {
    font-size: 1.8rem;
    color: #00ffff;
    margin-bottom: 20px;
    text-align: center;
}

.game-mechanics h4 {
    font-size: 1.3rem;
    color: #00ffff;
    margin-bottom: 15px;
    margin-top: 25px;
}

.game-mechanics ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.game-mechanics li {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 10px;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

.game-mechanics li:before {
    content: "🎮";
    position: absolute;
    left: 0;
}

/* NFT System */
.nft-system {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.nft-overview {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    text-align: center;
    transition: all 0.3s ease;
}

.nft-overview:hover {
    border-color: #00ffff;
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
}

.nft-overview h3 {
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 15px;
}

.nft-overview p {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.6;
}

.nft-rarity-system {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.nft-rarity-system:hover {
    border-color: #00ffff;
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
}

.nft-rarity-system h3 {
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 30px;
    text-align: center;
}

.rarity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.rarity-item {
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.rarity-item:hover {
    transform: translateY(-5px);
}

.rarity-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.rarity-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.rarity-item p {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

/* Rarity specific styles */
.rarity-item.common {
    background: rgba(128, 128, 128, 0.2);
    border: 1px solid rgba(128, 128, 128, 0.4);
    color: #cccccc;
}

.rarity-item.rare {
    background: rgba(0, 255, 255, 0.2);
    border: 1px solid rgba(0, 255, 255, 0.4);
    color: #00ffff;
}

.rarity-item.epic {
    background: rgba(255, 0, 255, 0.2);
    border: 1px solid rgba(255, 0, 255, 0.4);
    color: #ff00ff;
}

.rarity-item.legendary {
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.4);
    color: #ffd700;
}

.nft-utility {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.nft-utility:hover {
    border-color: #00ffff;
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
}

.nft-utility h3 {
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 20px;
    text-align: center;
}

.nft-utility ul {
    list-style: none;
    padding: 0;
}

.nft-utility li {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 10px;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

.nft-utility li:before {
    content: "💎";
    position: absolute;
    left: 0;
}

/* Technical Roadmap */
.tech-roadmap {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.roadmap-phase {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.roadmap-phase:hover {
    border-color: #00ffff;
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
}

.roadmap-phase h3 {
    font-size: 1.8rem;
    color: #00ffff;
    margin-bottom: 20px;
    text-align: center;
}

.phase-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.tech-milestones,
.marketing-milestones {
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    padding: 20px;
}

.tech-milestones h4,
.marketing-milestones h4 {
    font-size: 1.2rem;
    color: #00ffff;
    margin-bottom: 15px;
}

.tech-milestones ul,
.marketing-milestones ul {
    list-style: none;
    padding: 0;
}

.tech-milestones li,
.marketing-milestones li {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 8px;
    line-height: 1.5;
    position: relative;
    padding-left: 20px;
}

.tech-milestones li:before {
    content: "⚙️";
    position: absolute;
    left: 0;
}

.marketing-milestones li:before {
    content: "📈";
    position: absolute;
    left: 0;
}

/* Team Section */
.team-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

.team-member {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.team-member:hover {
    border-color: #00ffff;
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
}

.member-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00ffff, #0088ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
}

.team-member h3 {
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 10px;
}

.member-role {
    font-size: 1.1rem;
    color: #cccccc;
    font-style: italic;
    margin-bottom: 15px;
}

.member-description {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.6;
}

.team-vision {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.team-vision:hover {
    border-color: #00ffff;
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
}

.team-vision h3 {
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 20px;
    text-align: center;
}

.team-vision p {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.team-values h4 {
    font-size: 1.2rem;
    color: #00ffff;
    margin-bottom: 15px;
}

.team-values ul {
    list-style: none;
    padding: 0;
}

.team-values li {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 8px;
    line-height: 1.5;
    position: relative;
    padding-left: 20px;
}

.team-values li:before {
    content: "🌟";
    position: absolute;
    left: 0;
}

/* Risks Section */
.risks-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.risk-category,
.risk-mitigation {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.risk-category:hover,
.risk-mitigation:hover {
    border-color: #00ffff;
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
}

.risk-category h3,
.risk-mitigation h3 {
    font-size: 1.3rem;
    color: #00ffff;
    margin-bottom: 20px;
    text-align: center;
}

.risk-category ul,
.risk-mitigation ul {
    list-style: none;
    padding: 0;
}

.risk-category li,
.risk-mitigation li {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 10px;
    line-height: 1.5;
    position: relative;
    padding-left: 20px;
}

.risk-category li:before {
    content: "⚠️";
    position: absolute;
    left: 0;
}

.risk-mitigation li:before {
    content: "🛡️";
    position: absolute;
    left: 0;
}

/* Conclusion Section */
.conclusion-content {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 40px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: center;
}

.conclusion-content:hover {
    border-color: #00ffff;
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
}

.conclusion-content p {
    font-size: 1.2rem;
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 20px;
}

.conclusion-highlight {
    margin-top: 30px;
    padding: 20px;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 10px;
}

.conclusion-highlight .highlight {
    font-size: 1.4rem;
    color: #00ffff;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
    margin-bottom: 10px;
}

.conclusion-highlight .slug-motto {
    font-size: 1.2rem;
    color: #00ffff;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

/* Footer Section */
.whitepaper-footer {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 40px;
    backdrop-filter: blur(10px);
    text-align: center;
    margin-top: 60px;
}

.footer-content p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 10px;
}

.footer-content a {
    color: #00ffff;
    text-decoration: none;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
}

.footer-content a:hover {
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
}

.disclaimer {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 0, 0.1);
    border: 1px solid rgba(255, 255, 0, 0.3);
    border-radius: 10px;
}

.disclaimer h4 {
    font-size: 1.2rem;
    color: #ffff00;
    margin-bottom: 15px;
}

.disclaimer p {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.6;
    font-style: italic;
}

/* Responsive Design for Whitepaper */
@media (max-width: 768px) {
    .whitepaper-hero h1 {
        font-size: 2.5rem;
    }
    
    .problem-solution {
        grid-template-columns: 1fr;
    }
    
    .tokenomics-breakdown {
        grid-template-columns: 1fr;
    }
    
    .phase-details {
        grid-template-columns: 1fr;
    }
    
    .team-content {
        grid-template-columns: 1fr;
    }
    
    .risks-content {
        grid-template-columns: 1fr;
    }
    
    .distribution-items {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    
    .rarity-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}
