:root {
    --color-bg-dark: #0a0a0f;
    --color-bg-navy: #0f1119;
    --color-text-white: #ffffff;
    --color-text-light: #e5e5e5;
    --color-gold: #d4af37;
    --color-gold-light: #f4d03f;
    --color-gold-dark: #b8941f;
    --color-red: #dc2626;
    --color-red-dark: #b91c1c;
    --color-brown: #8b4513;
    --color-brown-light: #a0522d;
    
    --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --shadow-glow: 0 0 20px rgba(212, 175, 55, 0.3);
    --shadow-glow-strong: 0 0 30px rgba(212, 175, 55, 0.5);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: var(--font-body);
    background: var(--color-bg-dark);
    color: var(--color-text-white);
    line-height: 1.6;
    overflow-x: hidden;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

section {
    position: relative;
    z-index: 1;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 1.5rem;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-text-white);
    text-decoration: none;
}

.shield-icon {
    color: var(--color-gold);
    transition: all 0.3s ease;
}

.logo-group:hover .shield-icon {
    transform: scale(1.1);
    filter: drop-shadow(var(--shadow-glow));
}

.nav {
    display: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--color-text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-gold);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-gold);
    box-shadow: var(--shadow-glow);
}

.header-ctas {
    display: none;
    gap: 0.75rem;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text-white);
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (min-width: 768px) {
    .nav {
        display: flex;
    }
    .header-ctas {
        display: flex;
    }
    .mobile-menu-toggle {
        display: none;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-gold);
    color: var(--color-bg-dark);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: var(--color-gold-light);
    box-shadow: var(--shadow-glow-strong);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--color-text-white);
    border: 2px solid var(--color-gold);
}

.btn-outline:hover {
    background: var(--color-gold);
    color: var(--color-bg-dark);
    box-shadow: var(--shadow-glow);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(180deg, var(--color-bg-dark) 0%, var(--color-bg-navy) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    text-align: center;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--color-text-white) 0%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.quote-link {
    color: var(--color-gold);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.quote-link:hover {
    color: var(--color-gold-light);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.social-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    color: var(--color-text-white);
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(212, 175, 55, 0.05);
}

.social-icon:hover {
    border-color: var(--color-gold);
    background: rgba(212, 175, 55, 0.15);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-card), var(--shadow-glow);
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.badge-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 4rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--color-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.badge svg {
    flex-shrink: 0;
}

.badge:hover {
    background: rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.4);
}

@media (min-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    .hero-text {
        text-align: left;
    }
    .hero-buttons {
        justify-content: flex-start;
    }
    .social-row {
        justify-content: flex-start;
    }
    .hero {
        padding: 10rem 0 5rem;
    }
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--color-bg-navy);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-card {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(10px);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-text-white);
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.about-quote {
    margin: 2.5rem 0;
    padding: 2rem;
    background: rgba(212, 175, 55, 0.08);
    border-left: 3px solid var(--color-gold);
    border-radius: 8px;
    position: relative;
}

.quote-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.6;
    color: var(--color-text-white);
    margin-bottom: 1rem;
    font-style: italic;
}

.quote-attribution {
    font-size: 0.95rem;
    color: var(--color-gold);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.quote-context {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.7;
    opacity: 0.9;
}

@media (min-width: 768px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* Lore Section */
.lore {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--color-bg-dark) 0%, var(--color-bg-navy) 50%, var(--color-bg-dark) 100%);
    position: relative;
    overflow: hidden;
}

.lore::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.lore .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.lore-content {
    position: relative;
    z-index: 1;
}

.lore-story {
    max-width: 900px;
    margin: 0 auto;
}

.lore-story-content {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: var(--shadow-card);
}

.lore-story-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 2rem;
    text-align: center;
}

.lore-story-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.lore-story-text:last-child {
    margin-bottom: 0;
}

.lore-intro {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.lore-intro .section-title {
    margin-bottom: 2rem;
}

.lore-intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 0;
}

.lore-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.lore-card {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
    position: relative;
}

.lore-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-glow), var(--shadow-card);
}

.lore-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    color: var(--color-gold);
    transition: all 0.3s ease;
}

.lore-card:hover .lore-card-icon {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
    transform: scale(1.05);
}

.lore-card-icon svg {
    width: 40px;
    height: 40px;
}

.lore-card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-white);
    margin-bottom: 1rem;
}

.lore-card-text {
    color: var(--color-text-light);
    line-height: 1.8;
}

@media (min-width: 768px) {
    .lore-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Lore References */
.lore-references {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.lore-references-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text-white);
    text-align: center;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lore-references-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.lore-reference-item {
    display: block;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
    text-decoration: none;
    color: inherit;
}

.lore-reference-item:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-glow), var(--shadow-card);
}

.lore-reference-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: var(--color-bg-dark);
    display: block;
    position: relative;
}

.lore-reference-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.lore-reference-item:hover .lore-reference-image img {
    transform: scale(1.05);
}

.lore-reference-label {
    padding: 1.5rem;
    text-align: center;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-white);
    background: rgba(212, 175, 55, 0.05);
}

@media (min-width: 768px) {
    .lore-references-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .lore-references-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .lore-reference-image {
        height: 250px;
    }
}

/* Values Section */
.values {
    padding: 6rem 0;
    background: var(--color-bg-dark);
}

/* Tokenomics Section */
.tokenomics {
    padding: 6rem 0;
    background: var(--color-bg-dark);
}

.tokenomics .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.tokenomics-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.tokenomics-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.tokenomics-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-glow), var(--shadow-card);
}

.tokenomics-value {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.tokenomics-label {
    font-size: 1rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.tokenomics-note {
    text-align: center;
    color: var(--color-text-light);
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .tokenomics-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* How to Buy Section */
.how-to-buy {
    padding: 6rem 0;
    background: var(--color-bg-navy);
}

.how-to-buy .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.step-card {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-3px);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-glow);
}

.step-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    color: var(--color-gold);
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
    transform: scale(1.05);
}

.step-icon svg {
    width: 32px;
    height: 32px;
}

.step-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-white);
    margin-bottom: 0.75rem;
}

.step-text {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.warning-callout {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(220, 38, 38, 0.08);
    border-left: 3px solid var(--color-red);
    border-radius: 8px;
    padding: 1.5rem;
    color: var(--color-text-light);
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.6;
}

.warning-callout svg {
    color: var(--color-red);
    flex-shrink: 0;
    margin-top: 2px;
}

.warning-callout svg {
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tweets Section */
.tweets {
    padding: 6rem 0;
    background: var(--color-bg-navy);
}

.tweets .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.tweets-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.tweet-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    background: rgba(212, 175, 55, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.tweet-container:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.05);
}

.tweet-container iframe {
    border-radius: 12px;
    max-width: 100%;
}

.reference-item {
    display: block;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
    text-decoration: none;
    color: inherit;
}

.reference-item:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-glow), var(--shadow-card);
}

.reference-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: var(--color-bg-dark);
    display: block;
    position: relative;
}

.reference-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.reference-item:hover .reference-image img {
    transform: scale(1.05);
}

.reference-label {
    padding: 1.5rem;
    text-align: center;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-white);
    background: rgba(212, 175, 55, 0.05);
}

@media (min-width: 768px) {
    .tweets-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tweets-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 1200px;
    }
}

/* Articles Section */
.articles {
    padding: 6rem 0;
    background: var(--color-bg-dark);
}

.articles .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.articles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.article-card {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-glow), var(--shadow-card);
}

.article-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: var(--color-bg-navy);
    position: relative;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.1);
}

.article-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.article-headline {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-white);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.article-author,
.article-source,
.article-date {
    font-size: 0.85rem;
    color: var(--color-text-light);
    opacity: 0.8;
}

.article-source {
    color: var(--color-gold);
    font-weight: 600;
}

.article-excerpt {
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.article-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--color-gold);
    color: var(--color-bg-dark);
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.article-read-more:hover {
    background: var(--color-gold-light);
    box-shadow: var(--shadow-glow-strong);
    transform: translateY(-2px);
}

@media (min-width: 768px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .article-image {
        height: 250px;
    }
}

@media (min-width: 1024px) {
    .articles-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .article-image {
        height: 220px;
    }
}

@media (min-width: 1024px) {
    .tweets-grid {
        max-width: 1200px;
    }
}

/* Media Section */
.media {
    padding: 6rem 0;
    background: var(--color-bg-dark);
}

.media .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.media-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.media-card {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
    display: block;
}

.media-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-glow), var(--shadow-card);
}

.media-thumbnail {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--color-bg-navy);
}

.media-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.media-card:hover .media-thumbnail img {
    transform: scale(1.1);
}

.media-content {
    padding: 1.5rem;
}

.media-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-white);
    margin-bottom: 0.5rem;
}

.media-caption {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.media-button {
    color: var(--color-gold);
    font-weight: 600;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .media-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Community Section */
.community {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.community-banner {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.community-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.community-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.9) 0%, rgba(15, 17, 25, 0.8) 100%);
    z-index: 1;
}

.community-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 3rem 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.community-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 700;
    color: var(--color-text-white);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.community-text {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.community-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: var(--color-bg-navy);
}

.faq .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    background: none;
    border: none;
    color: var(--color-text-white);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--color-gold);
}

.faq-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    background: var(--color-bg-dark);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-white);
    margin-bottom: 1rem;
}

.footer-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-link {
    display: block;
    color: var(--color-text-light);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--color-gold);
    padding-left: 0.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    color: var(--color-text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-icon:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    box-shadow: var(--shadow-glow);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--color-gold) 50%, transparent 100%);
    margin: 2rem 0;
}

.footer-copyright {
    text-align: center;
    color: var(--color-text-light);
    font-size: 0.85rem;
    opacity: 0.7;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile Menu */
@media (max-width: 767px) {
    .nav.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(10px);
        padding: 2rem 1.5rem;
        border-top: 1px solid rgba(212, 175, 55, 0.1);
        gap: 1.5rem;
        z-index: 999;
    }
}

