/* Global Styles */
:root {
    --primary-color: #8B0000;
    --secondary-color: #FFD700;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --accent-color: #4ecca3;
    --text-color: #e0e0e0;
    --text-light: #fff;
    --text-dark: #000;
    --bg-primary: #0a0a14;
    --bg-secondary: #1a1a2e;
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.2);
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
}

/* Disclaimer Modal */
.modal {
    display: flex;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: gradientAnimation 60s ease infinite;
    background-size: 400% 400%;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    margin: auto;
    padding: 30px;
    border: 1px solid var(--primary-color);
    border-radius: 15px;
    width: 80%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 0 30px rgba(139, 0, 0, 0.5);
    position: relative;
}

.modal-content h2 {
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 20px;
    font-size: 2rem;
}

.disclaimer-text {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.disclaimer-text p {
    margin-bottom: 15px;
}

.disclaimer-text strong {
    color: var(--secondary-color);
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    margin: 20px 0;
}

.checkbox-container input {
    margin-right: 10px;
    margin-top: 5px;
}

.checkbox-container label {
    color: var(--text-light);
    font-size: 0.9rem;
}

#acceptDisclaimer {
    display: block;
    margin: 0 auto;
    padding: 12px 30px;
    font-size: 1.1rem;
}

#acceptDisclaimer:disabled {
    background: #555;
    cursor: not-allowed;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    animation: gradientAnimation 60s ease infinite;
    background-size: 400% 400%;
    background-blend-mode: soft-light;
    transition: background 3s ease-in-out;
    font-size: var(--font-size-base);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Ensure all sections inherit the animated background */
.section {
    background: transparent;
    position: relative;
    z-index: 2;
}

/* Make sure dark sections also have transparent background to show animation */
div[class*="-section"] {
    background: transparent;
}

.dark-section {
    background: transparent;
}

/* Apply background animation to any container divs */
.container {
    background: transparent;
}

/* Override any potential background conflicts */
.hero,
.about-section,
.nfts-staking,
.tokenomics,
.gameplay,
.community,
.faq,
.roadmap,
.footer {
    background: transparent;
}

/* Global animated background class */
.animated-bg {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    background-attachment: fixed;
    animation: gradientAnimation 60s ease infinite;
    background-size: 400% 400%;
    background-blend-mode: soft-light;
    transition: background 3s ease-in-out;
}

/* Synchronized background animation */
.synchronized-bg {
    animation: gradientAnimation 60s ease infinite;
    background-size: 400% 400%;
    background-blend-mode: soft-light;
    transition: background 3s ease-in-out;
}

@keyframes gradientAnimation {
    0% {
        background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
        background-position: 0% 50%;
    }
    25% {
        background: linear-gradient(135deg, #16213e, #0f3460, #1a1a2e);
        background-position: 25% 50%;
    }
    50% {
        background: linear-gradient(135deg, #0f3460, #1a1a2e, #16213e);
        background-position: 50% 50%;
    }
    75% {
        background: linear-gradient(135deg, #1a1a2e, #0f3460, #16213e);
        background-position: 75% 50%;
    }
    100% {
        background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
        background-position: 100% 50%;
    }
}

h1, h2, h3, h4 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

h1::after, h2::after, h3::after, h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    border-radius: 2px;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

.section-title {
    position: relative;
    margin-bottom: 30px;
    text-align: center;
    font-size: 2.2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    border-radius: 2px;
}

.container {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: all 1.5s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: 0.95rem;
    font-size: var(--font-size-lg);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn:hover::before {
    opacity: 0.1;
}

.primary-btn {
    background: var(--primary-color);
    color: var(--text-light);
    box-shadow: var(--shadow-md);
}

.primary-btn:hover {
    background: #a50000;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.secondary-btn {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    box-shadow: var(--shadow-sm);
}

.secondary-btn:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.section {
    padding: var(--spacing-lg) 0;
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    font-size: var(--font-size-4xl);
    margin-bottom: var(--spacing-lg);
    color: var(--secondary-color);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.dark-section {
    background: rgba(10, 10, 20, 0.85);
    backdrop-filter: blur(12px);
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 20, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-md);
    padding: 12px 0;
    transition: all 1.5s ease;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

header .container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    width: 100%;
    max-width: 100vw;
    overflow: visible;
    gap: 20px;
    padding: 0 20px;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--text-light);
    font-family: 'MedievalSharp', cursive;
}

.logo span {
    color: var(--secondary-color);
}

.logo-image {
    height: 50px;
    width: auto;
    vertical-align: middle;
}

.logo-text {
    color: var(--text-light);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-left: 15px;
    vertical-align: middle;
}

.navbar {
    display: flex;
    align-items: center;
    min-width: 0;
    flex: 1;
    position: relative;
    margin-left: 0;
}



.nav-menu-wrapper {
    display: flex;
    justify-content: center;
    overflow-x: auto;
    overflow-y: hidden;
    max-width: 100%;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) transparent;
    max-width: 100%;
    flex-wrap: nowrap;
    white-space: nowrap;
    justify-content: center;
    flex-grow: 1;
}

.nav-menu::-webkit-scrollbar {
    height: 6px;
}

.nav-menu::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.nav-menu::-webkit-scrollbar-track {
    background: transparent;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    padding: 15px 8px;
    margin: 0 1px;
    border-radius: 30px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.95rem;
    transition: all 1.5s ease;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    white-space: nowrap;
    border: 1px solid transparent;
    position: relative;
    flex-shrink: 0;
}

.nav-link:hover {
    background: rgba(255, 215, 0, 0.1);
    color: var(--secondary-color);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

.nav-link.active {
    background: var(--primary-color);
    color: var(--text-dark);
    border-color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 1.5s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 70%;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    z-index: 9999999;
}

.dropdown > a::after {
    content: " ▼";
    font-size: 0.8em;
    margin-left: 5px;
    transition: all 1.5s ease;
}

.dropdown:hover > a {
    background: var(--primary-color);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.dropdown:hover > a::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(10, 10, 20, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--border-radius);
    padding: 10px 0;
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 1.5s ease;
    z-index: 9999999;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu .nav-link {
    display: block;
    padding: 12px 12px;
    margin: 1px 3px;
    border-radius: 8px;
    text-align: left;
    transition: all 1.5s ease;
}

.dropdown-menu .nav-link:hover {
    background: rgba(255, 215, 0, 0.2);
    color: var(--secondary-color);
    transform: translateX(5px);
    border-color: transparent;
}

.whitepaper-nav-item {
    margin-left: auto; /* Pushes the whitepaper button to the right */
    display: flex;
    align-items: center;
}

.whitepaper-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: all 1.5s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--text-dark);
    box-shadow: var(--shadow-md);
    font-weight: bold;
}

.whitepaper-btn:hover {
    background: linear-gradient(45deg, #a50000, #ffdf40);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1001;
}

.bar {
    width: 25px;
    height: 3px;
    margin: 3px 0;
    background: var(--text-light);
    transition: all 1.5s ease;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: 
        url('images/Cryt images/crytt 1.2.jpeg') no-repeat center center,
        linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    background-size: cover;
    text-align: center;
    padding-top: 80px;
    z-index: -1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M20,20 Q40,5 50,20 T80,20 Q95,35 80,40 T80,70 Q65,85 50,70 T20,70 Q5,65 20,40 Z" fill="none" stroke="rgba(255,215,0,0.05)" stroke-width="1"/></svg>'),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><circle cx="100" cy="100" r="3" fill="rgba(139,0,0,0.1)"/></svg>');
    background-size: 100px 100px, 200px 200px;
    animation: float 20s infinite linear;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 0;
    max-width: 800px;
    padding: 0 20px;
}

.hero-image {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    max-height: 60vh;
    max-width: 20vw;
    object-fit: cover;
    z-index: 1;
    opacity: 0.7;
    border-radius: 50%;
}

.hero-image.left {
    left: 2%;
}

.hero-image.right {
    right: 2%;
}

.hero h1 {
    font-size: var(--font-size-5xl);
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 0 25px rgba(255, 215, 0, 0.8);
    animation: glow 2s ease-in-out infinite alternate;
    line-height: 1.1;
}

.hero p {
    font-size: var(--font-size-xl);
    color: var(--text-light);
    margin-bottom: var(--spacing-xs);
    font-family: 'Orbitron', sans-serif;
}

.hero-subtitle {
    font-size: var(--font-size-4xl);
    color: var(--secondary-color);
    margin-bottom: var(--spacing-md);
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 25px rgba(255, 215, 0, 0.8);
    animation: glow 2s ease-in-out infinite alternate;
}

.hero-body {
    font-size: var(--font-size-lg);
    color: var(--text-color);
    margin-bottom: var(--spacing-lg);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* Floating dragon styling removed */

/* About Section */
.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    align-items: start;
    width: 100%;
}

.about-intro {
    width: 100%;
}

.about-mission {
    width: 100%;
}

.about-vision {
    width: 100%;
}

.about-values {
    width: 100%;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 15px;
}

/* Responsive layout for better space utilization */
@media (min-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-intro {
        grid-column: 1 / -1; /* Span both columns */
    }
    
    .about-mission {
        grid-column: 1;
    }
    
    .about-vision {
        grid-column: 2;
    }
    
    .about-values {
        grid-column: 1 / -1; /* Span both columns */
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1400px) {
    .content-grid {
        grid-template-columns: repeat(4, 1fr); /* Four equal columns for maximum space usage */
    }
    
    .about-intro {
        grid-column: 1 / 3; /* Span 2 columns */
    }
    
    .about-mission {
        grid-column: 3; /* Single column */
    }
    
    .about-vision {
        grid-column: 4; /* Single column */
    }
    
    .about-values {
        grid-column: 1 / -1; /* Span all columns */
    }
}

/* NFT Collection Info Styles */
.nft-collection-info {
    margin: 30px 0;
}

.nft-collection-info h4 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
}

.nft-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.nft-feature {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 1.5s ease;
}

.nft-feature:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
}

.nft-feature h5 {
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.nft-feature p {
    color: var(--text-light);
    line-height: 1.6;
}

.tier-structure {
    margin: 30px 0;
}

.tier-structure h5 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
    text-align: center;
}

.tier-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.tier-item {
    background: rgba(26, 26, 46, 0.7);
    padding: 20px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(139, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    min-height: 130px;
}

.tier-item h6 {
    color: var(--secondary-color);
    margin: 0 0 10px 0;
    font-size: 1.1rem;
}

.tier-item p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.key-features {
    margin: 30px 0;
    width: 100%;
}

.key-features h5 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
    text-align: center;
}

.key-features .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    width: 100%;
    min-width: 100%;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 215, 0, 0.2);
    display: flex;
    flex-direction: column;
    min-height: 140px;
    width: 100%;
}

.feature-item h6 {
    color: var(--secondary-color);
    margin: 0 0 10px 0;
    font-size: 1.1rem;
}

.feature-item p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.ecosystem-integration {
    margin: 30px 0;
}

.ecosystem-integration h5 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
    text-align: center;
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.integration-item {
    background: rgba(26, 26, 46, 0.7);
    padding: 18px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(139, 0, 0, 0.3);
}

.integration-item p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}



/* Responsive adjustments for NFT section */
@media (max-width: 768px) {
    .nft-features-grid,
    .integration-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .tier-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .nft-collection-info h4 {
        font-size: 1.5rem;
    }
    
    .tier-boxes {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 15px;
        padding: 10px 5px 20px 5px;
    }
    
    .tier-box {
        min-width: 150px;
        flex-shrink: 0;
    }
    
    .tier-box img {
        width: 100%;
        height: auto;
        max-width: 100px;
        display: block;
        margin: 0 auto;
    }
    
    .tier-content {
        text-align: center;
    }
}

/* Mobile and tablet responsiveness */
@media (max-width: 1024px) {
    .container {
        width: 95%;
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .logo {
        position: static;
        margin-right: auto;
    }
    
    .whitepaper-nav-item {
        width: 100%;
        justify-content: center;
        margin-bottom: 10px;
    }
    
    .whitepaper-btn {
        width: 100%;
        text-align: center;
        margin: 0 15px;
    }
    
    .menu-toggle {
        position: static;
        display: flex;
        order: 2;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 20, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        align-items: stretch;
        padding: 20px 0;
        transition: 0.3s;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        margin: 0;
    }
    
    .nav-link {
        display: block;
        padding: 15px 20px;
        margin: 5px 15px;
        border-radius: 8px;
        text-align: left;
        font-size: 1rem;
    }
    
    .nav-link:hover {
        background: rgba(255, 215, 0, 0.1);
        transform: none;
    }
    
    .hero {
        min-height: 80vh;
        padding-top: 120px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-image {
        max-height: 40vh;
        max-width: 50vw;
    }
    
    .tokenomics-grid {
        grid-template-columns: 1fr;
    }
    
    .token-card {
        min-width: auto;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .h2 {
        font-size: 1.5rem;
    }
    
    .h3 {
        font-size: 1.3rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .token-card {
        padding: 15px;
    }
    
    .token-card .large-number {
        font-size: 1.5rem;
    }
    
    .feature-item,
    .nft-feature,
    .integration-item {
        padding: 15px;
    }
}

/* Staking System Styles */
.staking-system-overview {
    margin: 30px 0;
}

/* Additional responsive styles */
@media (max-width: 768px) {
    .staking-process {
        flex-direction: column;
    }
    
    .process-step {
        min-width: 100%;
        margin-bottom: 20px;
    }
    
    .callout-items {
        flex-direction: column;
    }
    
    .callout-item {
        min-width: 100%;
    }
    
    .tokenomics-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .token-card {
        min-width: auto;
        padding: 15px;
    }
    
    .roadmap-container {
        overflow-x: auto;
    }
    
    .roadmap-track {
        min-width: 800px;
        flex-wrap: nowrap;
    }
    
    .roadmap-card {
        min-width: 300px;
        margin-right: 15px;
    }
    
    .tier-boxes {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 15px;
        padding: 10px 5px 20px 5px;
    }
    
    .tier-box {
        min-width: 150px;
        flex-shrink: 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .token-card h3 {
        font-size: 1rem;
    }
    
    .token-card .large-number {
        font-size: 1.2rem;
    }
    
    .token-card p {
        font-size: 0.9rem;
    }
    
    .tier-box {
        min-width: 130px;
        padding: 15px;
    }
    
    .tier-content {
        padding: 8px;
    }
    
    .tier-subtitle {
        font-size: 0.8rem;
    }
    
    .tier-label {
        font-size: 0.9rem;
    }
    
    .faq-item {
        padding: 15px;
    }
    
    .faq-question {
        font-size: 0.95rem;
        padding: 12px 15px;
    }
    
    .faq-answer {
        padding: 10px 15px 15px;
    }
}

.staking-system-overview h4 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 30px;
}

.staking-process {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    margin-bottom: 30px;
}

.process-step {
    flex: 1;
    min-width: 250px;
    background: rgba(26, 26, 46, 0.7);
    padding: 25px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(139, 0, 0, 0.3);
    position: relative;
    transition: all 1.5s ease;
    overflow: hidden;
}

.process-step:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
}

.step-icon {
    text-align: center;
    margin-bottom: 15px;
}

.step-icon i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    background: rgba(139, 0, 0, 0.2);
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    display: inline-block;
}

.process-step h5 {
    color: var(--secondary-color);
    margin: 0 0 20px 0;
    font-size: 1.3rem;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

.step-content {
    margin-top: 15px;
}

.step-item {
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.step-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.step-item h6 {
    color: var(--secondary-color);
    margin: 0 0 8px 0;
    font-size: 1.1rem;
}

.step-item p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.staking-callout {
    background: rgba(139, 0, 0, 0.2);
    padding: 25px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 215, 0, 0.3);
    text-align: center;
    margin-top: 20px;
}

.staking-callout h5 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.callout-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.callout-item {
    flex: 1;
    min-width: 250px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px;
}

.callout-item i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    min-width: 24px;
}

.callout-item p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
    text-align: left;
}

.cta-button {
    margin-top: 10px;
}

/* General responsive improvements */
@media (max-width: 1200px) {
    .container {
        width: 95%;
        max-width: 95%;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.9rem;
    }
}

/* Tablet responsiveness */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-intro {
        grid-column: 1;
    }
    
    .about-mission {
        grid-column: 1;
    }
    
    .about-vision {
        grid-column: 1;
    }
    
    .about-values {
        grid-column: 1;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
    }
    
    .tokenomics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Footer responsive adjustments */
@media (max-width: 768px) {
    .footer {
        padding: 30px 15px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 25px;
    }
    
    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .footer-links a {
        margin: 5px;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-disclaimer {
        text-align: center;
    }
    
    .footer-legal-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .copyright {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-links {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-legal-links {
        flex-direction: column;
        align-items: center;
    }
}

/* Responsive adjustments for staking system */
@media (max-width: 768px) {
    .staking-process {
        flex-direction: column;
    }
    
    .process-step {
        min-width: 100%;
    }
    
    .callout-items {
        flex-direction: column;
    }
    
    .callout-item {
        min-width: 100%;
    }
    
    .roadmap-container {
        overflow-x: auto;
    }
    
    .roadmap-track {
        min-width: 800px;
        flex-wrap: nowrap;
    }
    
    .roadmap-card {
        min-width: 300px;
        margin-right: 15px;
    }
    
    .faq-container {
        padding: 20px 10px;
    }
    
    .faq-item {
        margin-bottom: 15px;
    }
    
    .faq-question {
        padding: 15px;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 15px;
    }
    
    .codex-section {
        margin-bottom: 30px;
    }
    
    .codex-feature {
        margin-bottom: 20px;
        padding: 15px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .value-item {
        margin-bottom: 15px;
    }
    
    .nft-feature {
        margin-bottom: 20px;
    }
    
    .integration-grid {
        grid-template-columns: 1fr;
    }
    
    .integration-item {
        margin-bottom: 15px;
    }
    
    .feature-item {
        margin-bottom: 15px;
    }
    
    .key-features .features-grid {
        grid-template-columns: 1fr;
    }
    
    .ecosystem-integration .integration-grid {
        grid-template-columns: 1fr;
    }
    
    .nft-features-grid {
        grid-template-columns: 1fr;
    }
    
    .tier-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .tier-item {
        padding: 15px;
        min-height: auto;
    }
    
    .token-card {
        padding: 15px;
    }
    
    .token-card h3 {
        font-size: 1.1rem;
    }
    
    .token-card .large-number {
        font-size: 1.3rem;
    }
    
    .process-step {
        padding: 20px;
    }
    
    .step-item {
        margin-bottom: 15px;
    }
    
    .callout-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .callout-item i {
        margin-bottom: 10px;
    }
    
    .roadmap-progress {
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }
    
    .progress-dot {
        margin: 2px;
    }
    
    .roadmap-nav {
        position: sticky;
        left: auto;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .roadmap-card {
        min-width: 280px;
        padding: 20px;
    }
    
    .codex-feature {
        padding: 15px;
    }
    
    .codex-section {
        padding: 20px 15px;
    }
    
    .codex-intro {
        padding: 0 10px;
    }
    
    .staking-system-overview h4 {
        font-size: 1.5rem;
    }
}

.text-content {
    position: relative;
    overflow: hidden;
    line-height: 1.8;
    font-size: 1.1rem;
}

.text-content h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.text-content p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

.mission-vision {
    margin: 20px 0;
}

.mission, .vision {
    margin-bottom: 30px;
}

.mission h4, .vision h4 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.mission h4::after, .vision h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    border-radius: 2px;
}

.mission p, .vision p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

.core-values {
    margin-top: 20px;
}

.core-values h4 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.core-values h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    border-radius: 2px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.value-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 1.5s ease;
}

.value-item:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
}

.value-item h5 {
    color: var(--secondary-color);
    margin: 0 0 12px 0;
    font-size: 1.2rem;
}

.value-item p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Responsive adjustments for mission/vision section */
@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .mission h4, .vision h4, .core-values h4 {
        font-size: 1.3rem;
    }
}

.nft-tiers-heading {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin: 25px 0 30px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.nft-tier-summary {
    margin: 20px 0;
}

.nft-tier-summary .tier {
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(30, 30, 46, 0.6);
    border-radius: 8px;
    border-left: 3px solid var(--secondary-color);
}

.nft-tier-summary .tier h5 {
    color: var(--secondary-color);
    margin: 0 0 12px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.2rem;
}

.nft-tier-summary .tier ul {
    margin: 0;
    padding-left: 20px;
    list-style-type: none;
}

.nft-tier-summary .tier ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
    line-height: 1.5;
}

.nft-tier-summary .tier ul li::before {
    content: "•";
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.nft-tier-summary .tier-features {
    margin-top: 30px;
    padding: 20px;
    background: rgba(40, 40, 60, 0.7);
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.nft-tier-summary .tier-features h5 {
    color: var(--secondary-color);
    margin: 0 0 15px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.3rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 8px;
}

.image-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.decorative-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite;
    max-width: 300px;
    max-height: 200px;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .image-content {
        margin-bottom: 0;
        margin-left: 20px;
        float: right;
    }
    
    .image-content-small {
        margin: 15px 15px 15px 0;
    }
    
    .text-content {
        overflow: hidden;
    }
}

/* Shooting star effect */
.shooting-star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px 2px #fff;
    animation: shoot 3s linear infinite;
    z-index: 1;
}

.shooting-star::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 2px;
    background: linear-gradient(to right, #fff, transparent);
    top: -1px;
    left: 2px;
    transform: rotate(-45deg);
    opacity: 0;
    animation: tail 3s linear infinite;
}

@keyframes shoot {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(100px);
        opacity: 0;
    }
}

@keyframes tail {
    0% {
        width: 0;
        opacity: 0;
    }
    10% {
        width: 100px;
        opacity: 1;
    }
    100% {
        width: 0;
        opacity: 0;
    }
}

/* Tokenomics Section */
#tokenomics {
    position: relative;
    overflow: hidden;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
    padding: 20px;
    align-items: stretch;
    justify-items: center;
    align-content: flex-start;
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive layout for tokenomics grid */
@media (max-width: 1500px) {
    .tokenomics-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1200px) {
    .tokenomics-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .tokenomics-grid {
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
        gap: 12px;
        padding: 15px;
    }
    
    .token-card {
        min-height: 180px;
        padding: 12px;
    }
    
    .token-card h3 {
        font-size: 0.95rem;
        white-space: nowrap;
        word-break: keep-all;
        overflow-wrap: normal;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media (max-width: 480px) {
    .tokenomics-grid {
        grid-template-columns: 1fr;
    }
    
    .token-card {
        min-height: auto;
        padding: 18px 15px;
    }
    
    .large-number {
        font-size: 1.8rem;
    }
    
    .token-card h3 {
        font-size: 0.95rem;
        white-space: nowrap;
        word-break: keep-all;
        overflow-wrap: normal;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

.centered-cards {
    display: none;
}

.token-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 1.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 200px;
    height: 100%;
    box-shadow: var(--shadow-sm);
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
}

.token-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 215, 0, 0.4);
}

.token-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.0rem;
    white-space: nowrap;
    word-break: keep-all;
    overflow-wrap: normal;
    text-align: center;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.large-number {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    color: var(--text-light);
    margin: 10px 0;
    word-break: break-word;
    overflow-wrap: break-word;
    text-align: center;
}

.token-card p {
    color: var(--text-light);
    font-size: var(--font-size-lg);
    line-height: 1.6;
}

.presale-timer {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: var(--spacing-xl);
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
}

.timer-placeholder {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-light);
}

.timer-placeholder h3 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-family: 'Orbitron', sans-serif;
}

.countdown {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.countdown-number {
    font-size: var(--font-size-3xl);
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    color: var(--text-light);
    background: rgba(139, 0, 0, 0.3);
    border-radius: calc(var(--border-radius) / 2);
    padding: var(--spacing-xs);
    min-width: 80px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.presale-live {
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-family: 'Orbitron', sans-serif;
    margin-top: 20px;
    text-align: center;
}

/* Roadmap Section */
.roadmap-content {
    margin-bottom: 40px;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.roadmap-content h3 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.roadmap-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
}

.roadmap-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--secondary-color) transparent;
    -ms-overflow-style: none;
}

.roadmap-track::-webkit-scrollbar {
    height: 8px;
}

.roadmap-track::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 4px;
}

.roadmap-track::-webkit-scrollbar-track {
    background: transparent;
}

.roadmap-card {
    min-width: 350px;
    background: rgba(26, 26, 46, 0.9);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.roadmap-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.roadmap-card:hover::before {
    transform: scaleX(1);
}

.roadmap-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.4);
}

.roadmap-card h4 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin: 0 0 15px 0;
    font-family: 'Orbitron', sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.roadmap-card h4 span {
    font-size: 1rem;
    background: rgba(139, 0, 0, 0.4);
    padding: 3px 12px;
    border-radius: 15px;
}

.roadmap-card ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.roadmap-card li {
    padding: 10px 0;
    position: relative;
    padding-left: 25px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    transition: color 0.3s ease;
}

.roadmap-card li:last-child {
    border-bottom: none;
}

.roadmap-card li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 1rem;
}

.roadmap-card li:hover {
    color: var(--secondary-color);
}

/* Progress indicators */
.roadmap-progress {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.progress-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.progress-dot.active {
    background: var(--secondary-color);
    transform: scale(1.3);
    box-shadow: 0 0 10px var(--secondary-color);
}

/* Navigation arrows */
.roadmap-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.nav-btn {
    background: rgba(139, 0, 0, 0.4);
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: var(--secondary-color);
    color: var(--text-dark);
    transform: scale(1.1);
}

/* Animation for cards */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.roadmap-card:nth-child(odd) {
    animation: slideInFromLeft 0.8s ease-out;
}

.roadmap-card:nth-child(even) {
    animation: slideInFromRight 0.8s ease-out;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .roadmap-card {
        min-width: 300px;
        padding: 20px;
    }
    
    .roadmap-card h4 {
        font-size: 1.3rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .roadmap-card h4 span {
        align-self: flex-end;
    }
}

/* Animated Crytt Image */


/* Bubble styles for Tokenomics section */
.bubble-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.bubble {
    position: absolute;
    background-image: url('images/Cryt images/crytt 1.1.jpeg');
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    opacity: 0.7;
    animation-duration: 8s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.bubble-1 {
    width: 40px;
    height: 40px;
    top: 10%;
    left: 5%;
    animation-name: bounce;
}

.bubble-2 {
    width: 30px;
    height: 30px;
    top: 20%;
    right: 10%;
    animation-name: drift;
    animation-duration: 10s;
}

.bubble-3 {
    width: 50px;
    height: 50px;
    bottom: 30%;
    left: 15%;
    animation-name: bounce;
    animation-duration: 12s;
}

.bubble-4 {
    width: 35px;
    height: 35px;
    bottom: 20%;
    right: 20%;
    animation-name: drift;
    animation-duration: 9s;
}

.bubble-5 {
    width: 45px;
    height: 45px;
    top: 40%;
    left: 25%;
    animation-name: bounce;
    animation-duration: 11s;
}

.bubble-6 {
    width: 25px;
    height: 25px;
    top: 60%;
    right: 15%;
    animation-name: drift;
    animation-duration: 7s;
}

.bubble-7 {
    width: 55px;
    height: 55px;
    bottom: 40%;
    left: 10%;
    animation-name: bounce;
    animation-duration: 13s;
}

.bubble-8 {
    width: 30px;
    height: 30px;
    bottom: 10%;
    right: 25%;
    animation-name: drift;
    animation-duration: 8s;
}

/* Bubble styles for About section */
.bubble-container-about {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.about-bubble {
    position: absolute;
    background-image: url('images/Cryt images/crytt 1.2.jpeg');
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    opacity: 0.7;
    animation-duration: 8s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.about-bubble-1 {
    width: 40px;
    height: 40px;
    top: 10%;
    left: 5%;
    animation-name: bounce;
}

.about-bubble-2 {
    width: 30px;
    height: 30px;
    top: 20%;
    right: 10%;
    animation-name: drift;
    animation-duration: 10s;
}

.about-bubble-3 {
    width: 50px;
    height: 50px;
    bottom: 30%;
    left: 15%;
    animation-name: bounce;
    animation-duration: 12s;
}

.about-bubble-4 {
    width: 35px;
    height: 35px;
    bottom: 20%;
    right: 20%;
    animation-name: drift;
    animation-duration: 9s;
}

.about-bubble-5 {
    width: 45px;
    height: 45px;
    top: 40%;
    left: 25%;
    animation-name: bounce;
    animation-duration: 11s;
}

.about-bubble-6 {
    width: 25px;
    height: 25px;
    top: 60%;
    right: 15%;
    animation-name: drift;
    animation-duration: 7s;
}

.about-bubble-7 {
    width: 55px;
    height: 55px;
    bottom: 40%;
    left: 10%;
    animation-name: bounce;
    animation-duration: 13s;
}

.about-bubble-8 {
    width: 30px;
    height: 30px;
    bottom: 10%;
    right: 25%;
    animation-name: drift;
    animation-duration: 8s;
}

/* Bubble styles for NFTs & Staking section */
.bubble-container-nft {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 3;
}

.nft-bubble {
    position: absolute;
    background-image: url('images/Cryt images/crytt 1.0.jpeg');
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    opacity: 0.7;
    animation-duration: 8s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.nft-bubble.bubble-1 {
    width: 30px;
    height: 30px;
    top: 5%;
    left: 8%;
    animation-name: drift;
    animation-duration: 9s;
}

.nft-bubble.bubble-2 {
    width: 40px;
    height: 40px;
    top: 15%;
    right: 12%;
    animation-name: bounce;
    animation-duration: 11s;
}

.nft-bubble.bubble-3 {
    width: 25px;
    height: 25px;
    top: 25%;
    left: 18%;
    animation-name: drift;
    animation-duration: 7s;
}

.nft-bubble.bubble-4 {
    width: 35px;
    height: 35px;
    top: 35%;
    right: 22%;
    animation-name: bounce;
    animation-duration: 10s;
}

.nft-bubble.bubble-5 {
    width: 45px;
    height: 45px;
    bottom: 45%;
    left: 28%;
    animation-name: drift;
    animation-duration: 12s;
}

.nft-bubble.bubble-6 {
    width: 30px;
    height: 30px;
    bottom: 35%;
    right: 18%;
    animation-name: bounce;
    animation-duration: 8s;
}

.nft-bubble.bubble-7 {
    width: 50px;
    height: 50px;
    bottom: 25%;
    left: 12%;
    animation-name: drift;
    animation-duration: 13s;
}

.nft-bubble.bubble-8 {
    width: 25px;
    height: 25px;
    bottom: 15%;
    right: 28%;
    animation-name: bounce;
    animation-duration: 9s;
}

.nft-bubble.bubble-9 {
    width: 35px;
    height: 35px;
    top: 45%;
    left: 35%;
    animation-name: drift;
    animation-duration: 10s;
}

.nft-bubble.bubble-10 {
    width: 40px;
    height: 40px;
    top: 20%;
    right: 35%;
    animation-name: bounce;
    animation-duration: 11s;
}

.nft-bubble.bubble-11 {
    width: 30px;
    height: 30px;
    bottom: 50%;
    left: 40%;
    animation-name: drift;
    animation-duration: 8s;
}

.nft-bubble.bubble-12 {
    width: 45px;
    height: 45px;
    bottom: 20%;
    right: 40%;
    animation-name: bounce;
    animation-duration: 12s;
}

.nft-bubble.bubble-13 {
    width: 25px;
    height: 25px;
    top: 55%;
    left: 45%;
    animation-name: drift;
    animation-duration: 7s;
}

.nft-bubble.bubble-14 {
    width: 35px;
    height: 35px;
    top: 30%;
    right: 45%;
    animation-name: bounce;
    animation-duration: 10s;
}

.nft-bubble.bubble-15 {
    width: 50px;
    height: 50px;
    bottom: 30%;
    left: 50%;
    animation-name: drift;
    animation-duration: 13s;
}

/* NFTs & Staking Section */
#nfts {
    position: relative;
    overflow: hidden;
}

.nft-staking-description {
    background: transparent;
    border-radius: 0;
    padding: 0;
    backdrop-filter: none;
    border: none;
    margin-bottom: 40px;
    color: var(--text-light);
    position: relative;
    z-index: 2;
}

.nft-staking-description h3 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.nft-staking-description h4 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin: 25px 0 15px;
}

.nft-staking-description h5 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin: 20px 0 10px;
}

.nft-staking-description p {
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 2.0;
}

.nft-staking-description strong {
    color: var(--secondary-color);
}

.nft-collection-info {
    background: transparent;
    padding: 0;
    margin: 20px 0;
    border-radius: 0;
    backdrop-filter: none;
}

.nft-collection-info h4 {
    color: var(--secondary-color);
    margin-top: 0;
}

.nft-collection-info h5 {
    color: var(--accent-color);
    margin-bottom: 10px;
}

/* Tier Boxes */
.tier-boxes {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin: 20px 0;
    padding: 10px 5px;
    width: 100%;
    max-width: 1400px;
    margin: 20px auto;
    justify-items: center;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) rgba(255, 255, 255, 0.1);
}

.tier-boxes::-webkit-scrollbar {
    height: 8px;
}

.tier-boxes::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.tier-boxes::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

/* Responsive layout for NFT tier boxes */
@media (max-width: 1200px) {
    .tier-boxes {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .tier-boxes {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .tier-boxes {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 15px;
        padding: 10px 5px;
        scrollbar-width: thin;
        scrollbar-color: var(--primary-color) rgba(255, 255, 255, 0.1);
    }
    
    .tier-box {
        min-width: 180px;
        flex-shrink: 0;
    }
    
    .tier-boxes::-webkit-scrollbar {
        height: 8px;
    }
    
    .tier-boxes::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 4px;
    }
    
    .tier-boxes::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 4px;
    }
}

@media (max-width: 480px) {
    .tier-boxes {
        padding: 10px;
    }
    
    .tier-box {
        min-width: 160px;
        padding: 12px;
    }
}

.tier-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 1.5s ease;
    display: flex;
    flex-direction: column;
    min-width: 200px;
    width: 100%;
    max-width: 250px;
    flex-shrink: 0;
    height: 100%;
    min-height: 280px;
    justify-content: space-between;
}

.tier-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.4);
}

.tier-box img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    object-fit: contain;
    flex-grow: 1;
}

.tier-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: flex-end;
}

.tier-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-family: 'Orbitron', sans-serif;
}

.tier-label {
    color: var(--secondary-color);
    font-size: 1.3rem;
    font-weight: bold;
    font-family: 'Orbitron', sans-serif;
    margin-top: auto;
    padding-top: 10px;
}

/* Remove the centering for the fourth tier box since we're using horizontal scrolling */
.tier-4-centered {
    grid-column: unset;
    grid-row: unset;
}

.coming-soon {
    text-align: center;
    margin: 30px 0 20px;
    font-size: 1.8rem;
    color: var(--secondary-color);
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.coming-soon strong {
    animation: pulse 2s infinite;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 20px 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 1.5s ease;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 320px;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 215, 0, 0.4);
}

.feature-card .icon {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    flex-shrink: 0;
}

.feature-card h3 {
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0;
    padding: 0 5px;
}

/* Whitepaper Section */
.whitepaper-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.document-preview {
    font-size: 8rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    animation: pulse 4s infinite;
}

.document-preview p {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-top: 20px;
}

.download-options {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
    flex-wrap: wrap;
    padding: var(--spacing-md) 0;
}

.highlights {
    text-align: left;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: var(--shadow-sm);
}

.highlights h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    text-align: center;
}

.highlights h4 {
    color: var(--secondary-color);
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.highlights ul {
    list-style-type: none;
    padding: 0;
}

.highlights li {
    padding: 10px 0;
    color: var(--text-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 30px;
}

.highlights li:last-child {
    border-bottom: none;
}

.highlights li::before {
    content: '»';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.highlights p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 2.0;
}

.whitepaper-content > p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 2.0;
    text-align: left;
}

.whitepaper-content ul {
    color: var(--text-light);
    padding-left: 20px;
    margin-bottom: 20px;
}

.whitepaper-content li {
    margin-bottom: 10px;
    line-height: 2.0;
    text-align: left;
}

/* Key Features Section */
#features .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    #features .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    #features .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Disclaimer Section */
.disclaimer-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.disclaimer-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 2.0;
}

.disclaimer-content strong {
    color: var(--secondary-color);
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-category {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin: 30px 0 15px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
}

.faq-intro,
.faq-outro {
    color: var(--text-light);
    text-align: center;
    margin: 15px 0;
    line-height: 1.6;
}

.faq-intro {
    margin-top: 0;
}

.faq-update-notice {
    background: rgba(139, 0, 0, 0.25);
    border-left: 4px solid var(--secondary-color);
    padding: 15px;
    margin: 15px 0;
    color: var(--text-light);
    font-style: italic;
    text-align: center;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.faq-item {
    margin-bottom: var(--spacing-sm);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.faq-question {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    border: none;
    padding: 20px;
    text-align: left;
    font-size: 1.2rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 1.5s ease;
}

.faq-question:hover {
    background: rgba(139, 0, 0, 0.3);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    background: rgba(255, 255, 255, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 20px;
    color: var(--text-light);
    margin: 0;
    line-height: 2.0;
}

.faq-answer br {
    margin: 5px 0;
}

/* Codex Section */
.codex-content {
    margin-bottom: 40px;
    color: var(--text-light);
    position: relative;
    z-index: 2;
}

.codex-intro {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.codex-intro p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 2.0;
    margin: 0;
}

.codex-section {
    margin-bottom: 30px;
    padding: 20px 0;
}

.codex-section h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.codex-feature {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    border-left: 3px solid var(--primary-color);
    transition: all 1.5s ease;
}

.codex-feature:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateX(5px);
}

.codex-feature h4 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin: 0 0 10px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.codex-feature p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.8;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    padding: var(--spacing-md);
}

.contact-info h3,
.newsletter h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.contact-info p,
.newsletter p {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    font-size: var(--font-size-lg);
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-light);
    font-size: 1.1rem;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    width: 30px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-form input {
    padding: var(--spacing-sm);
    border-radius: calc(var(--border-radius) * 2);
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: var(--font-size-base);
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 1.5s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form button {
    align-self: flex-start;
}

/* Gameplay Section */
.gameplay-content {
    margin-bottom: var(--spacing-lg);
    color: var(--text-light);
    position: relative;
    z-index: 2;
}

.gameplay-content p {
    font-size: var(--font-size-lg);
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
}

.gameplay-section {
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md) 0;
}

.gameplay-section h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.gameplay-feature {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    padding: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    border-left: 3px solid var(--primary-color);
    transition: all 1.5s ease;
    box-shadow: var(--shadow-sm);
}

.gameplay-feature:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateX(5px);
}

.gameplay-feature h4 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin: 0 0 10px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.gameplay-feature p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.8;
}

/* Community Section */
.community-content {
    margin-bottom: var(--spacing-lg);
    color: var(--text-light);
    position: relative;
    z-index: 2;
}

.community-content p {
    font-size: var(--font-size-lg);
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
}

.community-section {
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md) 0;
}

.community-section h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.community-feature {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    padding: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    border-left: 3px solid var(--primary-color);
    transition: all 1.5s ease;
    box-shadow: var(--shadow-sm);
}

.community-feature:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateX(5px);
}

.community-feature h4 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin: 0 0 10px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.community-feature p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.8;
}

.gameplay-intro {
    margin-bottom: var(--spacing-md);
}

.community-intro {
    margin-bottom: var(--spacing-md);
}

.gameplay-intro p,
.community-intro p {
    font-size: var(--font-size-xl);
    color: var(--text-light);
    line-height: 1.7;
    margin: 0 0 var(--spacing-sm) 0;
}

.gameplay-intro p:last-child,
.community-intro p:last-child {
    margin-bottom: 0;
}

/* Section Icons */
.section-icon {
    text-align: center;
    margin: 30px 0;
}

.section-icon i {
    font-size: 4rem;
    color: var(--secondary-color);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.85);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    color: var(--text-light);
    margin-top: var(--spacing-xl);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
}

.footer-logo span {
    color: var(--secondary-color);
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 1.5s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 1.5rem;
    transition: all 1.5s ease;
}

.social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.footer-disclaimer {
    text-align: center;
    padding: 10px 0;
    color: var(--text-light);
}

.footer-disclaimer p {
    margin: 0;
    line-height: 1.4;
    font-size: 1.1rem;
}

.footer-legal-links {
    text-align: center;
    padding: 10px 0 10px;
}

.footer-legal-links a {
    color: var(--text-light);
    text-decoration: underline;
    margin: 0 15px;
    transition: all 1.5s ease;
}

.footer-legal-links a:hover {
    color: var(--secondary-color);
}

/* Animations */
@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(139, 0, 0, 0.5);
    }
    to {
        text-shadow: 0 0 20px rgba(139, 0, 0, 0.8), 0 0 30px rgba(139, 0, 0, 0.6);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.7;
    }
}

@keyframes bounce {
    0% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-20px) translateX(10px);
    }
    50% {
        transform: translateY(10px) translateX(20px);
    }
    75% {
        transform: translateY(-15px) translateX(-10px);
    }
    100% {
        transform: translateY(0) translateX(0);
    }
}

@keyframes drift {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(15px, -10px);
    }
    50% {
        transform: translate(25px, 15px);
    }
    75% {
        transform: translate(-10px, 20px);
    }
    100% {
        transform: translate(0, 0);
    }
}

/* Desktop Navigation Enhancements */
@media screen and (min-width: 769px) {
    .nav-link {
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background: rgba(255, 215, 0, 0.15);
        color: var(--secondary-color);
        border-color: rgba(255, 215, 0, 0.5);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(139, 0, 0, 0.2);
    }
    
    .nav-menu {
        gap: 5px;
    }
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .hero-body {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .image-content {
        order: -1;
    }
    
    .dragon-icon {
        font-size: 7rem;
    }
    
    .download-options {
        flex-direction: column;
        align-items: center;
    }
    
    .download-options .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 20, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        overflow-y: auto;
        max-height: calc(100vh - 70px);
        align-items: center;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        padding: 15px 20px;
        display: block;
        margin: 5px auto;
        border-radius: 8px;
        width: 90%;
        max-width: 300px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-body {
        font-size: 0.9rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .floating-dragon {
        font-size: 3rem;
        bottom: 20px;
        right: 20px;
    }
    
    .section {
        padding: 60px 0;
    }
}

@media screen and (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-body {
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .token-card,
    .feature-card {
        padding: 20px 15px;
    }
    
    .large-number {
        font-size: 2rem;
    }
    
    .document-preview {
        font-size: 5rem;
    }
    
    .document-preview p {
        font-size: 1.2rem;
    }
    
    .social-icons a {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Contract Address Visualization */
.contract-visual {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 12px 15px;
    margin-top: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
}

.contract-icon {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-right: 15px;
    min-width: 40px;
    text-align: center;
}

.contract-text p {
    margin: 0 0 5px 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contract-hash {
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: var(--secondary-color);
    word-break: break-all;
    background: rgba(0, 0, 0, 0.3);
    padding: 5px 8px;
    border-radius: 4px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}