/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Dragon Blue Color Palette */
    --primary-blue: #4a90e2;
    --secondary-blue: #2c5aa0;
    --light-blue: #6ba3e8;
    --dark-blue: #1a3a5c;
    --accent-blue: #5dd5f5;

    /* Background Colors */
    --bg-primary: #050811;
    --bg-secondary: #0a0f1e;
    --bg-card: rgba(26, 58, 92, 0.2);
    --bg-card-hover: rgba(74, 144, 226, 0.15);

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #b8c5d6;
    --text-accent: #5dd5f5;

    /* Fonts */
    --font-display: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;

    /* Shadows */
    --shadow-glow: 0 0 30px rgba(74, 144, 226, 0.3);
    --shadow-glow-lg: 0 0 50px rgba(74, 144, 226, 0.5);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* === ANIMATED PARTICLES === */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: radial-gradient(circle, var(--accent-blue) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.4;
    animation: float-up linear infinite;
}

@keyframes float-up {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.4;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

/* === MONAD BACKGROUND === */
.monad-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.03;
}

.monad-element {
    position: absolute;
    width: 400px;
    height: 400px;
    object-fit: contain;
    filter: blur(2px) brightness(1.5);
    animation: drift 30s ease-in-out infinite;
}

.monad-1 {
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.monad-2 {
    bottom: 15%;
    left: 10%;
    animation-delay: -15s;
}

@keyframes drift {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -30px) rotate(5deg);
    }
    50% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }
    75% {
        transform: translate(20px, 30px) rotate(3deg);
    }
}

/* === HEADER === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 2rem;
    background: rgba(5, 8, 17, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(74, 144, 226, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.nav-logo-img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--primary-blue);
    object-fit: cover;
    box-shadow: 0 0 15px rgba(74, 144, 226, 0.4);
    transition: all 0.3s ease;
}

.nav-logo-img:hover {
    box-shadow: 0 0 20px rgba(93, 213, 245, 0.6);
    transform: scale(1.05);
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-blue);
    letter-spacing: 0.1em;
}

.nav-links {
    display: flex;
    gap: 1rem;
}

.nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--bg-card);
    border: 1px solid rgba(74, 144, 226, 0.3);
    border-radius: 12px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

/* === HERO SECTION === */
.hero {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 4rem;
}

.hero-content {
    text-align: center;
    animation: fade-in-up 1s ease-out;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-graphic {
    margin-bottom: 3rem;
    animation: float-hero 6s ease-in-out infinite;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes float-hero {
    0%, 100% {
        transform: translateY(0) scale(1);
        filter: drop-shadow(0 20px 40px rgba(74, 144, 226, 0.4));
    }
    50% {
        transform: translateY(-20px) scale(1.02);
        filter: drop-shadow(0 30px 60px rgba(93, 213, 245, 0.6));
    }
}

.hero-main-img {
    max-width: 600px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(74, 144, 226, 0.5));
    transition: all 0.4s ease;
}

.hero-main-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 50px rgba(93, 213, 245, 0.8));
}

.title {
    font-family: var(--font-display);
    font-size: 6rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue), var(--light-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 0 60px rgba(74, 144, 226, 0.5);
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.ticker {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-blue);
    padding: 0.75rem 2rem;
    background: var(--bg-card);
    border: 2px solid var(--primary-blue);
    border-radius: 50px;
    box-shadow: var(--shadow-glow);
}

/* === CONTRACT SECTION === */
.contract-section {
    position: relative;
    z-index: 10;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.contract-card {
    background: var(--bg-card);
    border: 1px solid rgba(74, 144, 226, 0.3);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.contract-card:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-glow);
}

.contract-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.contract-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.contract-address {
    flex: 1;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    color: var(--accent-blue);
    background: rgba(0, 0, 0, 0.3);
    padding: 0.875rem 1.25rem;
    border-radius: 8px;
    word-break: break-all;
    min-width: 200px;
}

.copy-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.copy-btn:hover {
    background: var(--light-blue);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.copy-btn:active {
    transform: translateY(0);
}

.copy-btn.copied {
    background: #27ae60;
}

/* === SECTIONS === */
section {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === STORY SECTION === */
.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.story-text strong {
    color: var(--accent-blue);
    font-weight: 700;
}

/* === GALLERY SECTION === */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 2rem 0;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.5rem;
    background: rgba(74, 144, 226, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(74, 144, 226, 0.15);
    aspect-ratio: 1;
}

.gallery-img:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(74, 144, 226, 0.4),
                0 0 0 1px rgba(93, 213, 245, 0.3),
                inset 0 0 60px rgba(74, 144, 226, 0.1);
    border-color: rgba(93, 213, 245, 0.5);
}

/* Gallery Layout Variations */
.gallery-lg {
    grid-column: span 2;
    aspect-ratio: 2 / 1;
}

.gallery-tall {
    grid-row: span 2;
    aspect-ratio: 1 / 2;
}

/* Desktop: 3 columns */
@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .gallery-lg {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery-tall {
        grid-row: span 2;
        grid-column: span 1;
    }
}

/* === MEME-LAB SECTION === */
.meme-lab-section {
    background: linear-gradient(135deg, rgba(26, 58, 92, 0.15), rgba(74, 144, 226, 0.05));
    border-radius: 24px;
    padding: 4rem 2rem;
    margin: 4rem auto;
}

.meme-lab-header {
    text-align: center;
    margin-bottom: 3rem;
}

.meme-lab-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-blue);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

.meme-lab-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.meme-lab-controls {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.meme-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.meme-label {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--accent-blue);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.meme-input {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-primary);
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(74, 144, 226, 0.3);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    transition: all 0.3s ease;
    outline: none;
}

.meme-input:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.meme-input::placeholder {
    color: rgba(184, 197, 214, 0.5);
}

.meme-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: var(--font-body);
}

.meme-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.meme-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.meme-btn-generate {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: white;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
}

.meme-btn-generate:hover:not(:disabled) {
    box-shadow: 0 6px 25px rgba(93, 213, 245, 0.6);
    transform: translateY(-2px);
}

.meme-btn-generate:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.meme-btn-random {
    background: transparent;
    color: var(--accent-blue);
    border: 2px solid var(--primary-blue);
}

.meme-btn-random:hover {
    background: rgba(74, 144, 226, 0.1);
    border-color: var(--accent-blue);
}

.meme-btn-save {
    margin-top: 0.75rem;
    background: var(--secondary-blue);
    color: white;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
}

.meme-btn-save:hover {
    background: var(--primary-blue);
}

.meme-preview-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.meme-preview {
    width: 100%;
    aspect-ratio: 1;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(74, 144, 226, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.meme-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
    opacity: 0.5;
}

.meme-placeholder svg {
    opacity: 0.3;
}

.meme-placeholder p {
    font-size: 1rem;
    text-align: center;
}

.meme-image,
.meme-canvas {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.meme-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    color: var(--accent-blue);
}

.meme-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(74, 144, 226, 0.2);
    border-top-color: var(--accent-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.meme-download-btn {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(74, 144, 226, 0.5);
    transition: all 0.3s ease;
}

.meme-download-btn:hover {
    box-shadow: 0 6px 30px rgba(93, 213, 245, 0.7);
    transform: scale(1.1);
}

.hidden {
    display: none !important;
}

/* API Configuration */
.meme-config-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.meme-config-details {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(74, 144, 226, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
}

.meme-config-summary {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-blue);
    cursor: pointer;
    user-select: none;
    list-style: none;
}

.meme-config-summary::-webkit-details-marker {
    display: none;
}

.meme-config-content {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(74, 144, 226, 0.2);
}

.meme-config-info {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.meme-config-note {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-top: 1rem;
    opacity: 0.7;
    line-height: 1.5;
}

.meme-config-note a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.meme-config-note a:hover {
    color: var(--light-blue);
}

/* Responsive */
@media (max-width: 1024px) {
    .meme-lab-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .meme-preview {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .meme-lab-section {
        padding: 3rem 1.5rem;
    }

    .meme-buttons {
        flex-direction: column;
    }

    .meme-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .meme-lab-section {
        padding: 2rem 1rem;
    }

    .meme-lab-subtitle {
        font-size: 0.875rem;
    }

    .meme-input {
        font-size: 0.95rem;
        padding: 0.875rem 1rem;
    }

    .meme-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.875rem;
    }

    .meme-download-btn {
        width: 48px;
        height: 48px;
        bottom: 1rem;
        right: 1rem;
    }
}

/* === FEATURES SECTION === */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid rgba(74, 144, 226, 0.3);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-glow);
    transform: translateY(-8px);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.feature-card:nth-child(2) .feature-icon {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) .feature-icon {
    animation-delay: 0.4s;
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.feature-text {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* === TOKENOMICS SECTION === */
.tokenomics-supply {
    text-align: center;
    margin-bottom: 3rem;
}

.supply-stat {
    display: inline-block;
    background: var(--bg-card);
    border: 3px solid var(--accent-blue);
    border-radius: 20px;
    padding: 2rem 4rem;
    box-shadow: var(--shadow-glow);
}

.supply-value {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.supply-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.token-stat {
    background: var(--bg-card);
    border: 2px solid var(--primary-blue);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.token-stat:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-5px);
}

.stat-value {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* === ROADMAP SECTION === */
.roadmap-section {
    padding: 6rem 2rem;
}

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

.roadmap-container::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: linear-gradient(180deg,
        var(--accent-blue) 0%,
        var(--primary-blue) 50%,
        rgba(74, 144, 226, 0.2) 100%
    );
}

.roadmap-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 3rem;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.roadmap-item:hover {
    opacity: 1;
}

.roadmap-item.completed,
.roadmap-item.active {
    opacity: 1;
}

.roadmap-marker {
    position: absolute;
    left: 18px;
    top: 5px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 3px solid var(--primary-blue);
    background: var(--bg-primary);
    transition: all 0.3s ease;
    z-index: 1;
}

.roadmap-item.completed .roadmap-marker {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    box-shadow: 0 0 20px rgba(93, 213, 245, 0.6);
}

.roadmap-item.completed .roadmap-marker::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.roadmap-item.active .roadmap-marker {
    background: var(--primary-blue);
    border-color: var(--accent-blue);
    box-shadow: 0 0 20px rgba(74, 144, 226, 0.8);
    animation: pulse-marker 2s ease-in-out infinite;
}

@keyframes pulse-marker {
    0%, 100% {
        box-shadow: 0 0 20px rgba(74, 144, 226, 0.8);
    }
    50% {
        box-shadow: 0 0 30px rgba(93, 213, 245, 1);
    }
}

.roadmap-content {
    background: var(--bg-card);
    border: 2px solid rgba(74, 144, 226, 0.3);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.roadmap-item:hover .roadmap-content {
    border-color: var(--primary-blue);
    box-shadow: 0 8px 30px rgba(74, 144, 226, 0.2);
    transform: translateX(5px);
}

.roadmap-item.completed .roadmap-content {
    border-color: rgba(93, 213, 245, 0.4);
}

.roadmap-item.active .roadmap-content {
    border-color: var(--accent-blue);
    box-shadow: var(--shadow-glow);
}

.roadmap-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.roadmap-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.roadmap-list li {
    color: var(--text-secondary);
    font-size: 1rem;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.roadmap-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

.roadmap-item.completed .roadmap-list li::before {
    content: '✓';
    color: var(--accent-blue);
}

.roadmap-item.active .roadmap-list li::before {
    content: '▶';
    color: var(--accent-blue);
}

/* === CTA SECTION === */
.cta-section {
    padding: 6rem 2rem;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-text {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1.25rem 3rem;
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-btn.primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: white;
    border: none;
    box-shadow: var(--shadow-glow);
}

.cta-btn.primary:hover {
    box-shadow: var(--shadow-glow-lg);
    transform: translateY(-3px) scale(1.05);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--accent-blue);
    border: 2px solid var(--primary-blue);
}

.cta-btn.secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent-blue);
    box-shadow: var(--shadow-glow);
    transform: translateY(-3px);
}

/* === FOOTER === */
.footer {
    position: relative;
    z-index: 10;
    background: rgba(5, 8, 17, 0.8);
    border-top: 1px solid rgba(74, 144, 226, 0.2);
    padding: 3rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-text {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0;
}

.footer-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-blue);
    text-shadow: 0 0 10px rgba(93, 213, 245, 0.5);
}

.footer-copyright {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 2rem;
    opacity: 0.7;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .title {
        font-size: 4.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1rem;
    }

    .nav {
        gap: 0.75rem;
    }

    .nav-btn {
        width: 44px;
        height: 44px;
    }

    .hero {
        padding: 5rem 1.5rem 3rem;
    }

    .hero-main-img {
        max-width: 400px;
    }

    .title {
        font-size: 3.5rem;
    }

    .subtitle {
        font-size: 1.125rem;
    }

    .supply-value {
        font-size: 3.5rem;
    }

    .supply-stat {
        padding: 1.75rem 3.5rem;
    }

    .tokenomics-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

    .stat-value {
        font-size: 2rem;
    }

    .roadmap-section {
        padding: 4rem 1.5rem;
    }

    .roadmap-item {
        padding-left: 60px;
    }

    .roadmap-container::before {
        left: 20px;
    }

    .roadmap-marker {
        left: 8px;
    }

    .roadmap-title {
        font-size: 1.25rem;
    }

    .ticker {
        font-size: 1.5rem;
        padding: 0.625rem 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .story-text {
        font-size: 1rem;
    }

    .gallery-grid {
        gap: 1.5rem;
    }

    .gallery-lg,
    .gallery-tall {
        grid-column: span 1;
        grid-row: span 1;
        aspect-ratio: 1;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .contract-content {
        flex-direction: column;
    }

    .contract-address {
        width: 100%;
    }

    .copy-btn {
        width: 100%;
        justify-content: center;
    }

    .monad-element {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    section {
        padding: 3rem 1.5rem;
    }

    .nav-logo-img {
        width: 36px;
        height: 36px;
    }

    .nav-logo-text {
        font-size: 1rem;
    }

    .hero-main-img {
        max-width: 300px;
    }

    .title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .feature-card,
    .token-stat {
        padding: 2rem 1.5rem;
    }

    .supply-value {
        font-size: 3rem;
    }

    .supply-stat {
        padding: 1.5rem 3rem;
    }

    .stat-value {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .tokenomics-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }

    .roadmap-section {
        padding: 3rem 1rem;
    }

    .roadmap-item {
        padding-left: 50px;
        margin-bottom: 2rem;
    }

    .roadmap-container::before {
        left: 15px;
    }

    .roadmap-marker {
        left: 5px;
        width: 20px;
        height: 20px;
    }

    .roadmap-content {
        padding: 1.5rem;
    }

    .roadmap-title {
        font-size: 1.125rem;
    }

    .roadmap-list li {
        font-size: 0.9rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-text {
        font-size: 1rem;
    }
}
