/* --- Global Variables --- */
:root {
    --primary-bg: #0f0a28; /* Your main dark background */
    --secondary-bg: #120a1f; /* Slightly lighter dark background */
    --text-light: #e0e0e0; /* Main light grey text */
    --text-muted: #a0a0a0; /* Muted text for paragraphs */

    --accent-cyan: #00bcd4;
    --accent-cyan-light: #00e5ff; /* Lighter cyan for highlights/hovers */
    --accent-purple: #8A2BE2; /* For Nickname Generator button/promo */

    --glow-cyan-light: rgba(0, 255, 255, 0.5); /* Lighter cyan glow */
    --glow-cyan-strong: rgba(0, 229, 255, 0.7); /* Stronger cyan glow */
    --hover-primary: #a765e9; /* Lighter purple for hover states */
}


*, *::before, *::after {
    box-sizing: border-box;
}

/* General Body & Reset */
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, var(--secondary-bg), var(--primary-bg), #0b071e); /* Deep, dark, futuristic gradient */
    color: var(--text-light); /* Light grey text */
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
    font-size: 16px; /* STANDARD BASE FONT SIZE */
}

/* Base styles for sections */
.section {
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden; /* Keep this to manage inner elements */
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3em;
    color: var(--accent-cyan); /* Cyan accent */
    margin-bottom: 60px;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent-cyan);
    margin: 15px auto 0;
    border-radius: 2px;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    white-space: nowrap; /* Prevent text wrapping inside button */
}

.btn-primary {
    background-color: var(--accent-cyan); /* Cyan */
    color: var(--primary-bg); /* Dark background color */
    box-shadow: 0 5px 15px rgba(0, 188, 212, 0.4);
}

.btn-primary:hover {
    background-color: var(--accent-cyan-light); /* Lighter cyan */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 229, 255, 0.6);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-cyan);
    border: 2px solid var(--accent-cyan);
    box-shadow: 0 5px 15px rgba(0, 188, 212, 0.2);
}

.btn-secondary:hover {
    background-color: rgba(0, 188, 212, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 229, 255, 0.4);
}

.btn.disabled-btn {
    opacity: 0.6;
    cursor: not-allowed;
    background-color: #555;
    color: #ccc;
    box-shadow: none;
    border: none;
}

.btn.disabled-btn:hover {
    transform: none;
    box-shadow: none;
}

/* Header */
.main-header {
    background-color: rgba(15, 10, 40, 0.9); /* Darker, slightly transparent */
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.main-header .logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.main-header .logo img {
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.main-header .logo h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2em;
    color: var(--accent-cyan);
    margin: 0;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.5);
}

.main-nav .nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

.main-nav .nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.05em;
    font-weight: 500;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.main-nav .nav-links a:hover,
.main-nav .nav-links a.active-nav-link { /* Added active-nav-link styling */
    color: var(--accent-cyan-light);
    text-shadow: 0 0 8px rgba(0, 229, 255, 0.7);
}

.main-nav .nav-links .whitepaper-link {
    background-color: var(--primary-bg); /* Dark background */
    border: 1px solid var(--accent-cyan);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.95em;
    transition: background-color 0.3s ease;
}

.main-nav .nav-links .whitepaper-link:hover {
    background-color: rgba(0, 188, 212, 0.1);
    color: var(--accent-cyan-light);
    text-shadow: none;
}

.nav-buttons {
    display: flex;
    gap: 20px;
    margin-left: 30px;
}

/* Styling for the Nickname Generator link in the nav */
.nav-generator-button {
    color: var(--accent-purple); /* White text for contrast */
    border: 4px solid var(--accent-purple); /* Matching border */
    padding: 8px 15px; /* Similar padding to whitepaper-link */
    border-radius: 20px; /* Rounded corners */
    font-size: 0.95em; /* Consistent font size */
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    display: inline-block; /* Ensure padding and border are applied correctly */
    text-align: center; /* Center text if button is wider */
    box-shadow: 0 4px 12px rgba(138, 43, 226, 0.4); /* Subtle purple shadow */
    animation: pulsateButtonGlow 0.4s infinite;
}

.nav-game-button {
    color: Cyan; /* White text for contrast */
    border: 4px solid var(--accent-purple); /* Matching border */
    padding: 8px 15px; /* Similar padding to whitepaper-link */
    border-radius: 20px; /* Rounded corners */
    font-size: 0.95em; /* Consistent font size */
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    display: inline-block; /* Ensure padding and border are applied correctly */
    text-align: center; /* Center text if button is wider */
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.4); /* Subtle purple shadow */
    animation: neonBorderPulse 0.5s infinite;
}

.nav-generator-button:hover {
    background-color: var(--hover-primary); /* Lighter purple on hover */
    border-color: var(--hover-primary);
    color: var(--accent-purple); /* Keep text white on hover */
    box-shadow: 0 6px 15px rgba(138, 43, 226, 0.6); /* Enhanced shadow on hover */
    transform: translateY(-2px); /* Slight lift on hover */
}

/* If you want it to behave like other nav links for active state (optional, if you track active page) */
.main-nav .nav-links .nav-generator-button.active-nav-link {
    background-color: var(--hover-primary);
    border-color: var(--accent-cyan-light); /* Or keep purple, depends on desired active look */
    color: white;
    text-shadow: none; /* Remove text shadow if background is solid */
    border-bottom: none; /* Remove bottom border from general active-nav-link rule */
}

/* Adjustments for mobile menu if needed (assuming nav-generator-button is within .nav-buttons or .nav-links) */
@media (max-width: 768px) {
    .main-nav .nav-links .nav-generator-button {
        width: 100%; /* Make it full width like other hamburger menu buttons */
        margin-top: 10px; /* Add some space if it's directly below whitepaper-link */
    }
}


.hamburger-menu {
    display: none; /* Hidden on desktop */
    font-size: 1.8em;
    color: var(--accent-cyan);
    cursor: pointer;
}

/* --- Common Hero Section Styles --- */
.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    padding: 80px 20px; /* Ensure consistent padding */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Default overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
    text-align: center; /* Ensure content is centered */
}

.hero-content h2,
.hero-content h1 { /* Apply to both h1 and h2 within hero content */
    font-family: 'Orbitron', sans-serif;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.9);
}

.hero-content p {
    font-size: 1.4em;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* --- Specific Styles for the First Hero Section (Home) --- */
#hero {
    /* Background Image for the Main Hero Section */
    background: url('https://i.supaimg.com/f25a9437-12b2-4d05-ac1f-c9ff7a1c5d3d.jpg') no-repeat center center/cover;
    /* This URL is a placeholder. Replace it with your actual image path (e.g., ../images/hero-bg.jpg) */

    /* Add this for the glow effect */
    border: 2px solid var(--accent-cyan-light); /* A visible border to glow */
    box-shadow: 0 0 30px var(--glow-cyan-strong); /* Initial glow effect */
    animation: pulseBorderGlow 3s infinite alternate; /* Apply the animation */
}

#hero .hero-content h2 {
    font-size: 2.5em; /* Larger font size for the main hero heading */
    text-shadow: 0 0 25px var(--accent-cyan-light); /* Stronger glow for main title */
}

#hero .hero-content p {
    font-size: 1.1em; /* Slightly larger text for main hero paragraph */
    max-width: 700px; /* Control width for better readability */
    margin-left: auto;
    margin-right: auto;
}

/* --- Specific Styles for the Second Hero Section (Nickname Generator Promo) --- */
#nickname-generator-promo {
    /* Distinct background for the promo section */
    background: linear-gradient(135deg, var(--secondary-bg) 0%, var(--accent-purple) 100%);
    /* Modify/Enhance these lines for the glow */
    border: 3px solid var(--accent-cyan-light); /* Make border slightly thicker and brighter */
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.7), /* Strong cyan glow */
                0 0 20px rgba(138, 43, 226, 0.8); /* Added a purple internal glow from the button's color */
    animation: neonBorderPulse 0.8s infinite alternate; /* New animation for this section */
    min-height: auto; /* Allow height to adjust to content */
    padding: 100px 20px; /* More vertical padding for prominence */
    margin-top: 60px; /* Spacing from previous section */
    margin-bottom: 60px; /* Spacing from next section */
    overflow: hidden; /* Important for background effects */
}

/* Remove default overlay for this specific section if you want the gradient to show clearly */
#nickname-generator-promo::before {
    content: none; /* No dark overlay on this section */
}

#nickname-generator-promo .hero-content {
    max-width: 800px; /* Adjust max width for promo content */
    margin-top: -20px;
    margin-bottom: -40px;
}

#nickname-generator-promo .hero-content h1 {
    font-size: 1.8em; /* Adjusted font size for promo heading */
    color: var(--text-light); /* White text for contrast */
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    margin-top: -35px;
}

#nickname-generator-promo .hero-content p {
    font-size: 1em; /* Smaller paragraph for promo section */
    color: var(--text-light); /* White text for contrast */
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px; /* More space before the button */
}
/* Guess the Number Game Promo Section Specific Styles (Similar to Nickname Generator) */
#guess-the-number-promo {
    /* Distinct background for the promo section */
    background: linear-gradient(135deg, var(--secondary-bg) 0%, var(--accent-cyan) 100%); /* Changed gradient to cyan accent */
    /* Modify/Enhance these lines for the glow */
    border: 3px solid var(--accent-purple); /* Border from purple accent */
    box-shadow: 0 0 40px rgba(138, 43, 226, 0.7), /* Strong purple glow */
                0 0 20px rgba(100, 255, 218, 0.8); /* Added a cyan internal glow from the button's color */
    animation: neonBorderPulse 1s infinite alternate; /* Reuses the same animation */
    min-height: auto; /* Allow height to adjust to content */
    padding: 100px 20px; /* More vertical padding for prominence */
    margin-top: 60px; /* Spacing from previous section */
    margin-bottom: 60px; /* Spacing from next section */
    overflow: hidden; /* Important for background effects */
}

/* Reusing the general hero-section, section, and hero-content styles */
/* If you want the overlay for other hero sections but not this one: */
#guess-the-number-promo::before {
    content: none; /* No dark overlay on this specific section */
}

#guess-the-number-promo .hero-content {
    max-width: 800px; /* Adjust max width for promo content */
    margin-bottom: -20px;
    margin-top: -40px;
}

#guess-the-number-promo .hero-content h1 {
    font-size: 1.8em; /* Adjusted font size for promo heading */
    color: var(--text-light); /* White text for contrast */
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    margin-top: -20px;
}

#guess-the-number-promo .hero-content p {
    font-size: 1em; /* Smaller paragraph for promo section */
    color: var(--text-light); /* White text for contrast */
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px; /* More space before the button */
}

/* Specific styling for the button if needed (optional, as primary-button covers most) */
.game-cta-button {
    font-size: 0.8em;
    padding: 18px 50px;
    margin-top: 30px;
    margin-bottom: 30px;
    background-color: darkgray; /* Defined in :root as purple */
    color: Cyan; /* Changed from floralwhite to white for consistency */
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    box-shadow: 10px 10px 10px rgba(258, 255, 226, 0.6);
    animation: pulsateButtonGlow 0.2s infinite alternate;
}

/* Animation definition (ensure this is present somewhere in your CSS) */
@keyframes neonBorderPulse {
    0% {
        box-shadow: 0 0 40px var(--accent-cyan), 0 0 20px var(--accent-purple);
        border-color: var(--accent-cyan);
    }
    100% {
        box-shadow: 0 0 50px var(--accent-cyan), 0 0 25px var(--accent-purple);
        border-color: var(--accent-purple);
    }
}

/* Specific button styles for the generator CTA (inherits from .primary-button) */
.generator-cta-button {
    font-size: 0.8em;
    padding: 18px 30px;
    margin-top: 30px;
    margin-bottom: 30px;
    background-color: silver; /* Defined in :root as purple */
    color: var(--accent-purple); /* Changed from floralwhite to white for consistency */
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.6); /* Purple shadow */
    animation: pulsateButtonGlow 0.2s infinite alternate; /* Pulsating glow */
}

.generator-cta-button:hover {
    background-color: var(--hover-primary); /* Lighter purple on hover */
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(138, 43, 226, 0.8);
}

/* About Section */
.about-section {
    background-color: #0b071e;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    text-align: left;
}

.about-item {
    background-color: #1a1a2e;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 188, 212, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.about-item h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--accent-cyan);
    font-size: 1.8em;
    margin-bottom: 15px;
}

/* Features Section */
.features-section {
    background: linear-gradient(135deg, var(--secondary-bg), var(--primary-bg), #0b071e);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-item {
    background-color: #1a1a2e;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 188, 212, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.feature-item .feature-icon {
    font-size: 3.5em;
    color: var(--accent-cyan);
    margin-bottom: 20px;
}

.feature-item h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6em;
    color: #fff;
    margin-bottom: 10px;
}

/* Tokenomics Section */
.tokenomics-section {
    background-color: #0b071e;
}

.token-overview, .token-utilities, .token-distribution {
    background-color: #1a1a2e;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 188, 212, 0.1);
    margin-bottom: 40px;
    text-align: left;
}

.token-overview p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

.token-overview ul, .token-utilities ul, .token-distribution ul {
    list-style: none;
    padding-left: 0;
}

.token-overview ul li, .token-utilities ul li, .token-distribution ul li {
    margin-bottom: 10px;
    font-size: 1.05em;
    position: relative;
    padding-left: 25px;
}

.token-overview ul li::before, .token-utilities ul li::before, .token-distribution ul li::before {
    content: '\2022'; /* Bullet point */
    color: var(--accent-cyan);
    font-size: 1.5em;
    line-height: 1;
    position: absolute;
    left: 0;
    top: 0;
}

.token-overview h3, .token-utilities h3, .token-distribution h3 {
    font-family: 'Orbitron', sans-serif;
    color: #fff;
    font-size: 1.8em;
    margin-bottom: 20px;
}

.token-distribution .small-text {
    font-size: 0.9em;
    color: var(--text-muted);
    margin-top: 20px;
}

/* Roadmap Section */
.roadmap-section {
    background: linear-gradient(135deg, var(--secondary-bg), var(--primary-bg), #0b071e);
}

.roadmap-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    background: var(--accent-cyan);
    height: 100%;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-item {
    position: relative;
    padding: 20px;
    margin-bottom: 40px;
    text-align: left;
    background-color: #1a1a2e;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 188, 212, 0.1);
    z-index: 2;
    width: calc(50% - 40px); /* Adjust width to account for gap */
}

.timeline-item:nth-child(odd) {
    left: 0;
    margin-right: calc(50% + 20px); /* Pushes to left of line */
}

.timeline-item:nth-child(even) {
    left: 50%;
    margin-left: calc(20px); /* Pushes to right of line */
}

.timeline-item .timeline-dot {
    position: absolute;
    top: 30px;
    width: 20px;
    height: 20px;
    background-color: var(--accent-cyan);
    border-radius: 50%;
    border: 4px solid var(--primary-bg);
    z-index: 3;
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -55px; /* Position dot on the right of odd items */
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -35px; /* Position dot on the left of even items */
}

.timeline-item h3 {
    font-family: 'Orbitron', sans-serif;
    color: #fff;
    font-size: 1.8em;
    margin-bottom: 15px;
}

.timeline-item ul {
    list-style: none;
    padding-left: 0;
}

.timeline-item ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.timeline-item ul li::before {
    content: '\2713'; /* Checkmark */
    color: #4CAF50; /* Green */
    position: absolute;
    left: 0;
    font-size: 1.2em;
}

/* Team Section */
.team-section {
    background-color: #0b071e;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    justify-content: center; /* Center items if not filling full grid */
}

.team-member {
    background-color: #1a1a2e;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 188, 212, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid var(--accent-cyan);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.team-member h3 {
    font-family: 'Orbitron', sans-serif;
    color: #fff;
    font-size: 1.8em;
    margin-bottom: 5px;
}

.team-member .role {
    color: var(--text-muted);
    font-size: 1.1em;
    margin-bottom: 15px;
}

.team-member .bio {
    font-size: 0.95em;
    margin-bottom: 20px;
}

.social-links-team a {
    color: var(--accent-cyan);
    font-size: 1.5em; /* Adjusted icon size */
    margin: 0 10px;
    transition: color 0.3s ease, transform 0.2s ease;
    text-decoration: none; /* Ensure no underline */
}

.social-links-team a:hover {
    color: var(--accent-cyan-light);
    transform: translateY(-3px);
}

/* Community Section */
.community-section {
    background: linear-gradient(135deg, var(--secondary-bg), var(--primary-bg), #0b071e);
}

.community-section p {
    max-width: 800px;
    margin: 0 auto 40px auto;
    font-size: 1.1em;
}

.community-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 60px;
}

.community-links .btn-social {
    background-color: var(--accent-cyan);
    color: var(--primary-bg);
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0, 188, 212, 0.4);
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.community-links .btn-social:hover {
    background-color: var(--accent-cyan-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 229, 255, 0.6);
}

.newsletter-cta {
    background-color: #1a1a2e;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 188, 212, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-cta h3 {
    font-family: 'Orbitron', sans-serif;
    color: #fff;
    font-size: 2em;
    margin-bottom: 15px;
}

.newsletter-cta p {
    font-size: 1em;
    margin-bottom: 25px;
    color: #c0c0c0;
}

/* Footer */
.main-footer {
    background-color: var(--primary-bg);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(0, 188, 212, 0.1);
}

.main-footer p {
    color: var(--text-muted);
    font-size: 0.9em;
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    margin: 0 15px;
    font-size: 1em;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-cyan);
}

/* Scroll to Top Button (Placeholder - will be handled by JS) */
#scrollToTopBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 30px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button at the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: var(--accent-cyan); /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 50%; /* Rounded corners */
    font-size: 1.5em; /* Increase font size */
    box-shadow: 0 5px 15px rgba(0, 188, 212, 0.6);
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

#scrollToTopBtn:hover {
    background-color: var(--accent-cyan-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 229, 255, 0.8);
}


/* Responsive Design */
@media (max-width: 1024px) {
    .main-nav .nav-links {
        gap: 20px;
    }
    #hero .hero-content h2 { /* Specific to #hero */
        font-size: 3.5em;
    }
    .hero-content p {
        font-size: 1.2em;
    }
    .section-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .main-header .container {
        flex-direction: column;
        align-items: flex-start; /* Align logo to left */
    }

    .main-nav {
        display: none; /* Hide nav by default on mobile */
        width: 100%;
        margin-top: 20px;
        flex-direction: column;
        background-color: rgba(15, 10, 40, 0.95);
        border-top: 1px solid rgba(0, 188, 212, 0.1);
        padding: 10px 0;
    }

    .main-nav.active {
        display: flex; /* Show nav when active */
    }

    .main-nav .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: left;
        padding: 0 20px;
    }

    .main-nav .nav-links a {
        padding: 10px 0;
        display: block;
    }

    .nav-buttons {
        flex-direction: column;
        gap: 15px;
        margin-left: 0;
        margin-top: 20px;
        padding: 0 20px;
        width: 100%;
    }

    .nav-buttons .btn {
        width: 100%; /* Make buttons full width */
    }

    .hamburger-menu {
        display: block; /* Show hamburger menu */
        position: absolute; /* Position relative to header */
        right: 15px;
        top: 25px;
    }

    /* Ensure these are adjusted for 768px and below */
    #hero .hero-content h2 { /* Specific to #hero */
        font-size: 2.8em; /* Adjusted slightly down */
    }

    .hero-content p {
        font-size: 1.1em;
    }

    .hero-buttons .btn {
        width: 80%; /* Adjust button width */
    }

    .about-grid, .features-grid, .team-grid {
        grid-template-columns: 1fr; /* Stack columns */
    }

    .section-title {
        font-size: 2em;
        margin-bottom: 40px;
    }

    /* Roadmap Adjustments for 768px and below */
    .roadmap-timeline::before {
        left: 20px; /* Move vertical line to the left */
        transform: translateX(0); /* Remove transform for consistent left alignment */
    }

    .timeline-item {
        width: calc(100% - 40px); /* Full width minus side padding */
        left: 0;
        margin-left: 0;
        margin-right: 0;
        padding-left: 50px; /* Space for dot and connection */
        text-align: left; /* Align text left */
    }

    /* Override odd/even specific positioning for stacked layout */
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        left: 0; /* Reset left positioning */
        margin-right: 0;
        margin-left: 0;
    }

    .timeline-item .timeline-dot {
        left: 20px; /* Place dot directly on the line */
        right: auto;
        transform: translateX(-50%); /* Center on the line */
    }

    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 20px; /* Ensure consistency */
        right: auto;
        transform: translateX(-50%);
    }

    .community-links {
        flex-direction: column;
    }
}

/* NEW/UPDATED Media Query for smaller phones (max-width 480px) */
@media (max-width: 480px) {
    .main-header {
        padding: 15px 0; /* Slightly less padding */
    }
    .main-header .logo h1 {
        font-size: 1.6em; /* Smaller logo text */
    }
    .hero-section {
        min-height: 70vh; /* Shorter hero section */
    }
    #hero .hero-content h2 { /* Specific to #hero */
        font-size: 2.1em; /* Significantly smaller headline */
        margin-bottom: 15px;
    }
    .hero-content p {
        font-size: 0.9em; /* Smaller body text */
        margin-bottom: 25px;
    }
    .btn {
        font-size: 0.95em; /* Smaller button text */
        padding: 10px 20px;
    }
    .section {
        padding: 50px 10px; /* Less padding on sections */
    }
    .section-title {
        font-size: 1.8em; /* Smaller section titles */
        margin-bottom: 30px;
    }
    .section-title::after {
        width: 60px; /* Smaller underline */
    }

    /* Adjust specific elements that tend to overflow */
    .about-item h3,
    .feature-item h3,
    .token-overview h3,
    .token-utilities h3,
    .token-distribution h3,
    .roadmap-timeline .timeline-item h3,
    .team-member h3,
    .newsletter-cta h3 {
        font-size: 1.4em; /* Further reduction for all sub-headings */
        line-height: 1.3;
    }

    .team-photo {
        width: 100px;
        height: 100px;
    }

    .newsletter-cta {
        padding: 25px 15px;
    }

    /* Ensure text in list items fits */
    .token-overview ul li,
    .token-utilities ul li,
    .token-distribution ul li,
    .timeline-item ul li {
        font-size: 0.85em; /* Ensure list item text is small enough */
    }

    /* More aggressive padding adjustment for timeline items on smallest screens */
    .timeline-item {
        padding: 15px 10px 15px 40px; /* Even less padding, adjust padding-left for dot */
    }
}

/* Styling for active navigation link (from script.js) */
.main-nav .nav-links a.active-nav-link {
    color: var(--accent-cyan-light); /* Lighter cyan for active link */
    text-shadow: 0 0 10px rgba(0, 229, 255, 1); /* More prominent glow */
    border-bottom: 2px solid var(--accent-cyan-light); /* Subtle underline */
    padding-bottom: 3px;
}

/* Donation Section Styling */
.donation-section {
    margin-top: 30px;
    margin-bottom: 20px;
    padding: 20px;
    background-color: #1a1a2e; /* Darker background for the section */
    border-radius: 8px;
    border: 1px solid rgba(0, 188, 212, 0.1);
    max-width: 400px; /* Limit width */
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.donation-section h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--accent-cyan);
    font-size: 1.6em;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.donation-section p {
    color: #c0c0c0;
    font-size: 0.95em;
    margin-bottom: 10px;
}

.wallet-addresses {
    margin-top: 20px;
    border-top: 1px dashed rgba(0, 188, 212, 0.2);
    padding-top: 15px;
    text-align: left;
}

.wallet-addresses p {
    margin-bottom: 8px;
    display: flex; /* For aligning text and copy button */
    justify-content: space-between;
    align-items: center;
    color: var(--text-light);
}

.wallet-addresses strong {
    color: var(--accent-cyan-light); /* Lighter cyan for coin name */
    margin-right: 10px;
}

.wallet-address {
    background-color: var(--primary-bg); /* Dark background for address */
    padding: 8px 12px;
    border-radius: 5px;
    font-family: 'Consolas', monospace; /* Monospaced font for addresses */
    font-size: 0.85em;
    cursor: pointer;
    color: #fff;
    border: 1px solid var(--accent-cyan);
    transition: background-color 0.2s ease, transform 0.1s ease;
    user-select: none; /* Prevent selection of text by default */
    max-width: calc(100% - 100px); /* Adjust width to fit */
    overflow: hidden; /* Hide overflow */
    text-overflow: ellipsis; /* Add ellipsis for cut text */
    white-space: nowrap; /* Prevent wrapping */
}

.wallet-address:hover {
    background-color: #1a1a2e;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 188, 212, 0.2);
}

.wallet-address.copied {
    background-color: #4CAF50; /* Green when copied */
    color: #fff;
}

.donation-section small {
    color: var(--text-muted);
    font-size: 0.75em;
    display: block;
    margin-top: 15px;
}

/* Media query for smaller screens */
@media (max-width: 480px) {
    .donation-section {
        padding: 15px;
        margin-left: 10px;
        margin-right: 10px;
    }
    .wallet-addresses p {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    .wallet-address {
        max-width: 100%; /* Allow full width on small screens */
        font-size: 0.75em; /* Smaller font on very small screens */
        text-align: center;
    }
}

/* --- Cookiebot Custom Banner CSS --- */
#cookiebanner {
    box-sizing: border-box;
    background-color:rgb(36,36,39);
    opacity: 0.9;
    width:100%;
    max-width: 900px; /* Limit max width on larger screens */
    padding:15px 25px; /* Smaller padding for a more compact look */
    position: fixed;
    z-index: 2147483645;
    bottom:-800px; /* Initial hidden position */
    left: 50%; /* For horizontal centering */
    transform: translateX(-50%); /* For horizontal centering */
    transition: bottom 0.5s ease-in-out; /* Smooth animation */
}
#cookiebanner p {
    font-size:12px; /* Smaller font size for general text */
    line-height:1.4;
}
#cookiebanner .c-header {
    text-transform:uppercase;
    color:#fff;
    font-weight:bold;
    margin-bottom:4px;
}
#cookiebanner p.c-message {
    font-size:12px; /* Smaller font size for message text */
    color:#999;
}
#cookiebanner a {
    font-weight:bold;
    color:#999;
}
#cookiebanner a:hover {
    color:#fff;
}

#cookiebanner a.c-button {
    border-radius: 4px;
    background-color: rgb(255,255,255);
    box-shadow: 0 2px 0 0 rgb(221,221,221);
    border:1px solid rgb(221,221,221);
    padding:8px 40px; /* Smaller padding for the button */
    text-decoration:none;
    display:inline-block;
    vertical-align:middle;
    margin-top:10px;
    color:#666;
    font-size:16px;
    -o-transition:.2s;
    -ms-transition:.2s;
    -moz-transition:.2s;
    -webkit-transition:.2s;
    transition:.2s;
}

#cookiebanner a.c-button:hover {
    box-shadow:none;
    background-color:#f8f8f8;
}

@media screen and (max-width:720px) {
    #cookiebanner {
        max-width: 100%; /* Ensure full width on small screens */
        left: 0; /* Reset left for full width */
        transform: translateX(0); /* Reset transform for full width */
        border-radius: 0; /* Optional: Remove border-radius on mobile for edge-to-edge look */
    }
    #cookiebanner a.c-button {
        width:100%;
        box-sizing:border-box;
        text-align:center;
        margin-bottom:20px;
    }
    #c-right {
        float:none;
    }
    #c-left {
        float:none;
    }
    #cookiebanner p.c-message {
        margin-bottom:20px;
    }
}

@media screen and (min-width:720px) {
    #cookiebanner #c-left {
        float:left;
        max-width:80%;
    }
    #cookiebanner #c-right {
        float:right;
    }
}

/* --- Animations --- */

@keyframes pulseBorderGlow {
    0% {
        box-shadow: 0 0 20px var(--glow-cyan-light);
    }
    100% {
        box-shadow: 0 0 40px var(--glow-cyan-strong);
    }
}

@keyframes pulsateButtonGlow {
    0% {
        box-shadow: 0 8px 20px rgba(138, 43, 226, 0.5), 0 0 15px rgba(100, 255, 218, 0.2);
    }
    100% {
        box-shadow: 0 8px 30px rgba(138, 43, 226, 0.8), 0 0 25px rgba(100, 255, 218, 0.4);
    }
}

@keyframes neonBorderPulse {
    0% {
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.5), 0 0 10px rgba(138, 43, 226, 0.6);
        border-color: var(--accent-cyan);
    }
    50% {
        box-shadow: 0 0 50px rgba(0, 255, 255, 0.9), 0 0 30px rgba(138, 43, 226, 0.9);
        border-color: var(--accent-cyan-light);
    }
    100% {
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.5), 0 0 10px rgba(138, 43, 226, 0.6);
        border-color: var(--accent-cyan);
    }
}
