* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #b8860b;
    --secondary-color: #daa520;
    --accent-color: #ffd700;
    --gold-color: #ffd700;
    --gold-dark: #b8860b;
    --gold-light: #fff8dc;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --bg-primary: #000000;
    --bg-secondary: #1a1a1a;
    --border-color: #333333;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
}

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

/* Promotional Banner */

.promo-banner {
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ffc107, #ffd700);
    background-size: 300% 300%;
    height: 50px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    z-index: 999;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%,
    100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.promo-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.promo-text {
    color: #000000;
    font-weight: 800;
    font-size: 1.1rem;
    white-space: nowrap;
    position: absolute;
    width: 100%;
    text-align: center;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.5);
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    animation: bounce 2s ease-in-out infinite;
}

.promo-text.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-2px);
    }
}

@keyframes scroll-left {
    0% {
        transform: translateX(100vw);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Navigation */

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-buy-btn {
    background: linear-gradient(45deg, #b8860b, #ffd700, #daa520);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 8px rgba(184, 134, 11, 0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.nav-buy-btn:hover {
    background: linear-gradient(45deg, #daa520, #ffd700, #b8860b);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(184, 134, 11, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    /* Adjust for fixed header */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 25%, #2c2c2c 50%, #1a1a1a 75%, #000000 100%);
    overflow: hidden;
}

.constitution-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('constitution-bg.png') center/cover;
    opacity: 0.08;
    filter: sepia(20%) hue-rotate(30deg) brightness(0.7);
}

.blockchain-network {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('blockchain-network.png') center/cover;
    opacity: 0.15;
    filter: brightness(0.8) contrast(1.2) hue-rotate(45deg);
    animation: networkPulse 8s ease-in-out infinite;
}

@keyframes networkPulse {
    0%,
    100% {
        opacity: 0.15;
        transform: scale(1);
    }
    50% {
        opacity: 0.25;
        transform: scale(1.02);
    }
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    z-index: 10;
}

.hero-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.hero-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(184, 134, 11, 0.4));
    animation: logoFloat 4s ease-in-out infinite, logoRotateGlow 6s linear infinite;
}

@keyframes logoFloat {
    0%,
    100% {
        transform: translateY(0px) scale(1);
        filter: drop-shadow(0 4px 12px rgba(184, 134, 11, 0.4));
    }
    50% {
        transform: translateY(-10px) scale(1.1);
        filter: drop-shadow(0 8px 20px rgba(255, 215, 0, 0.7));
    }
}

@keyframes logoRotateGlow {
    0% {
        filter: drop-shadow(0 4px 12px rgba(184, 134, 11, 0.4)) hue-rotate(0deg);
    }
    25% {
        filter: drop-shadow(0 6px 16px rgba(255, 215, 0, 0.6)) hue-rotate(90deg);
    }
    50% {
        filter: drop-shadow(0 8px 20px rgba(184, 134, 11, 0.8)) hue-rotate(180deg);
    }
    75% {
        filter: drop-shadow(0 6px 16px rgba(255, 215, 0, 0.6)) hue-rotate(270deg);
    }
    100% {
        filter: drop-shadow(0 4px 12px rgba(184, 134, 11, 0.4)) hue-rotate(360deg);
    }
}

.hero-text h1 {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0;
    position: relative;
    animation: text-glow 4s ease-in-out infinite;
}

.hero-text h2 {
    font-size: 2.2rem;
    color: var(--gold-dark);
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: text-glow 4s ease-in-out infinite;
}

.slogan {
    font-size: 1.6rem;
    background: linear-gradient(45deg, #b8860b, #ffd700, #daa520, #b8860b);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 4px rgba(184, 134, 11, 0.2);
    background-size: 200% auto;
    animation: gradient-text-flow 5s ease-in-out infinite;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(45deg, #b8860b, #ffd700, #daa520);
    color: white;
    font-size: 1.1rem;
    padding: 16px 32px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(184, 134, 11, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #daa520, #ffd700, #b8860b);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(184, 134, 11, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--gold-dark);
    border: 3px solid var(--gold-dark);
    font-size: 1.1rem;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 4px 8px rgba(184, 134, 11, 0.2);
}

.btn-secondary:hover {
    background: linear-gradient(45deg, #b8860b, #ffd700, #daa520);
    color: white;
    border-color: var(--gold-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(184, 134, 11, 0.3);
}

.liberty-statue {
    width: 350px;
    height: auto;
    opacity: 0.9;
    filter: drop-shadow(0 8px 16px rgba(184, 134, 11, 0.3));
}

/* Presale Section */

.presale {
    padding: 80px 0;
    background-color: var(--bg-secondary);
}

.presale h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.presale-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.presale-form-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.presale-form-header h4 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.presale-form-header p {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

.presale-info h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.presale-features {
    list-style: none;
    margin-top: 1.5rem;
}

.presale-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

.presale-form {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
}

.presale-form h4 {
    color: var(--primary-color);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.wlfg-received {
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.1rem;
    background-color: var(--bg-secondary);
    padding: 1rem;
    border-radius: 8px;
}

.wlfg-received strong {
    color: var(--primary-color);
    font-weight: 700;
}

.presale-error {
    color: #e53e3e;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 500;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.payment-btn {
    padding: 10px;
    border: 2px solid var(--border-color);
    background: var(--bg-primary);
    color: var(--text-primary);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.payment-btn.active {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: white;
}

.amount-input {
    position: relative;
    margin-bottom: 1.5rem;
}

.amount-input input {
    width: 100%;
    padding: 12px 60px 12px 12px;
    border: 2px solid var(--border-color);
    background: var(--bg-primary);
    color: var(--text-primary);
    border-radius: 8px;
    font-size: 1rem;
}

.currency-symbol {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-weight: 600;
}

.presale-address {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: var(--bg-secondary);
    border-radius: 8px;
}

.presale-address code {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    padding: 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
}

.presale-countdown {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: var(--bg-secondary);
    border-radius: 8px;
    text-align: center;
}

.presale-countdown h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(45deg, #b8860b, #ffd700, #daa520, #b8860b);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(184, 134, 11, 0.2);
}

.countdown-timer {
    display: flex;
    justify-content: space-around;
    gap: 0.5rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--bg-primary);
    color: var(--text-primary);
    padding: 0.5rem;
    border-radius: 6px;
    min-width: 60px;
    box-shadow: 0 2px 4px rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
}

.countdown-item span {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-dark);
}

.countdown-item small {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.presale-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.presale-image {
    margin-top: 2rem;
    text-align: center;
}

.presale-promotional-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(184, 134, 11, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.presale-promotional-image:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(184, 134, 11, 0.3);
}

.guide-content {
    max-height: 70vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.guide-step {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.guide-step:last-child {
    border-bottom: none;
}

.guide-step h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.guide-step p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.guide-important {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    border: 1px solid var(--border-color);
}

.guide-important h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.guide-important ul {
    margin: 0;
    padding-left: 1.5rem;
    color: var(--text-secondary);
}

.guide-important li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.guide-rates {
    background: var(--bg-secondary);
    border: 2px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.guide-rates h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.guide-rates ul {
    margin: 0;
    padding-left: 1.5rem;
}

.guide-rates li {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.6;
}

.referral-section {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
}

.referral-generator {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.referral-generator input {
    flex: 1;
    padding: 12px;
    border: 2px solid var(--border-color);
    background: var(--bg-primary);
    color: var(--text-primary);
    border-radius: 8px;
}

.referral-link {
    padding: 1rem;
    background-color: var(--bg-secondary);
    border-radius: 8px;
}

.referral-link code {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    padding: 0.5rem;
    border-radius: 4px;
    margin-right: 1rem;
    font-family: 'Courier New', monospace;
    word-break: break-all;
}

.btn-copy {
    background-color: var(--gold-color);
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* Token Section */

.token {
    padding: 80px 0;
    background-color: var(--bg-primary);
}

.token h2 {
    text-align: center;
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.token-slogan {
    text-align: center;
    margin-bottom: 3rem;
}

.token-slogan p {
    font-size: 1.4rem;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.token-slogan h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
}

.token-section {
    background: var(--bg-secondary);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
}

.token-section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.token-emoji {
    font-size: 2rem;
}

.token-section-header h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 0;
}

.token-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.token-info-item {
    padding: 1rem;
    background: var(--bg-primary);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.token-info-item strong {
    color: var(--primary-color);
}

.token-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.token-use-cases,
.token-governance-features,
.token-symbolic-benefits {
    list-style: none;
    margin: 0;
    padding: 0;
}

.token-use-cases li,
.token-governance-features li,
.token-symbolic-benefits li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    position: relative;
    padding-left: 2rem;
}

.token-use-cases li:before,
.token-governance-features li:before {
    content: "▶";
    color: var(--gold-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.token-use-cases li:last-child,
.token-governance-features li:last-child,
.token-symbolic-benefits li:last-child {
    border-bottom: none;
}

.tokenomics-table {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.tokenomics-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1rem;
    padding: 1rem;
    align-items: center;
}

.tokenomics-header {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.tokenomics-row:nth-child(even) {
    background: var(--bg-primary);
}

.tokenomics-category {
    font-weight: 500;
}

.tokenomics-percentage,
.tokenomics-amount {
    text-align: center;
    font-weight: 600;
}

.token-governance-intro,
.token-ecosystem-description,
.token-symbolic-intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.token-governance-intro {
    font-weight: 600;
    color: var(--primary-color);
}

.token-symbolic-intro {
    font-weight: 600;
    color: var(--text-primary);
}

.progress-percentage {
    color: var(--gold-dark);
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 0.3rem;
}

/* Promo Image Section */

.promo-image {
    padding: 40px 0;
    background-color: var(--bg-primary);
}

/* Disclaimer Section */

.disclaimer {
    padding: 80px 0;
    background-color: var(--bg-primary);
}

.disclaimer h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 700;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-secondary);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
}

.disclaimer-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.disclaimer-content p:last-of-type {
    margin-bottom: 2rem;
}

.disclaimer-footer {
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    margin-top: 2rem;
}

.disclaimer-links {
    text-align: center;
    margin-top: 1rem;
}

.disclaimer-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.disclaimer-links a:hover {
    color: var(--secondary-color);
}

.disclaimer-links span {
    color: var(--text-secondary);
    margin: 0 1rem;
}

/* USD1 Section */

.usd1 {
    padding: 80px 0;
    background-color: var(--bg-secondary);
}

.usd1-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.usd1-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.usd1-logo-container {
    margin-bottom: 1.5rem;
}

.usd1-logo {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 4px 8px rgba(184, 134, 11, 0.3));
}

.usd1-description {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.usd1-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.usd1-video {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(184, 134, 11, 0.2);
}

.usd1-video video {
    width: 100%;
    height: auto;
    display: block;
}

/* Governance Section */

.governance {
    padding: 80px 0;
    background-color: var(--bg-primary);
}

.governance h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.governance-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.governance-visual {
    width: 100%;
    text-align: center;
}

.governance-visual img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
}

.governance-text {
    width: 100%;
}

.governance-text h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.governance-text>p {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.governance-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    margin-bottom: 0;
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--primary-color);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 255, 255, 0.15);
}

.feature h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    display: block;
    text-align: center;
}

.feature h4::before {
    display: none;
}

.feature p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    text-align: center;
}

.feature p:first-of-type {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.feature .btn {
    display: inline-block;
    font-size: 0.95rem;
    padding: 12px 24px;
    margin-top: 0.5rem;
}

/* Honor Section */

.honor {
    padding: 80px 0;
    background-color: var(--bg-secondary);
}

.honor h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.honor p {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.honor-wall {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.honor-item {
    background: var(--bg-primary);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    text-align: center;
}

.honor-rank {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-color);
    margin-bottom: 0.5rem;
}

.honor-address {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.honor-balance {
    font-weight: 600;
    color: var(--primary-color);
}

/* Team Section */

.team {
    padding: 80px 0;
    background-color: var(--bg-primary);
}

.team h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    text-align: center;
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.team-member h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.team-member p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* FAQ Section */

.faq {
    padding: 80px 0;
    background-color: var(--bg-secondary);
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-primary);
    margin-bottom: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 12px rgba(255, 255, 255, 0.15);
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-primary);
    border: none;
    width: 100%;
    text-align: left;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--bg-secondary);
}

.faq-question h3 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    font-weight: bold;
}

.faq-toggle.active {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 2rem;
    background: var(--bg-primary);
}

.faq-answer.active {
    max-height: 500px;
    padding: 0 2rem 2rem 2rem;
}

.faq-answer p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Contact Section */

.contact {
    padding: 80px 0;
    background-color: var(--bg-primary);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--bg-secondary);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-primary);
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.contact-link:hover {
    transform: translateY(-2px);
}

.contact-link img {
    width: 24px;
    height: 24px;
}

.contact-link span {
    color: var(--gold-dark);
    font-weight: 700;
}

/* Footer */

footer {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.invite-rewards-section {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    border: 1px solid var(--border-color);
}

.invite-rewards-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.invite-rewards-section p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.invite-rewards-section p:last-child {
    margin-bottom: 0;
}

.referral-actions {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    justify-content: center;
}

.anti-cheat-warning {
    background: #2c1810;
    border: 1px solid #8b4513;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.anti-cheat-warning h4 {
    color: #ffa500;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.anti-cheat-warning p {
    color: #ffcc99;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.anti-cheat-warning p:last-child {
    margin-bottom: 0;
}

.invite-notification {
    background: linear-gradient(45deg, #b8860b, #ffd700);
    color: white;
    padding: 1rem 2rem;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    animation: slideDown 0.5s ease-out;
    font-size: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(-100%);
        opacity: 0;
    }
}

.stats-modal .modal-content {
    text-align: center;
}

.stats-modal .modal-content h2 {
    margin-bottom: 1.5rem;
}

.stats-modal .modal-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Purchase Notification Popup */

.purchase-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
    border: 2px solid var(--gold-color);
    border-radius: 12px;
    padding: 10px 15px;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 8px 24px rgba(184, 134, 11, 0.4);
    z-index: 1500;
    min-width: 320px;
    max-width: 400px;
    transform: translateX(120%);
    transition: transform 0.5s ease-in-out, opacity 0.3s ease;
    opacity: 0;
}

.purchase-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.purchase-notification .notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.purchase-notification .purchase-icon {
    font-size: 1.2rem;
    color: var(--gold-color);
    animation: pulse 2s infinite;
}

.purchase-notification .purchase-details {
    flex: 1;
    line-height: 1.4;
    color: #ffffff;
}

.purchase-notification .wallet-address {
    color: #007bff;
    font-family: 'Courier New', monospace;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.purchase-notification .purchase-amount {
    color: #dc3545;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.purchase-notification .token-amount {
    color: var(--gold-color);
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.purchase-notification .purchase-text {
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.highlight-gold {
    color: var(--gold-color);
}

.highlight-dark-gold {
    color: var(--gold-dark);
}

/* Fundraising Progress */

.fundraising-progress {
    margin: 1rem 0;
    text-align: center;
}

.progress-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.raised-amount {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.progress-separator {
    color: var(--text-secondary);
    font-weight: 500;
}

.target-amount {
    color: var(--gold-dark);
    font-weight: 600;
}

.progress-bar {
    width: 100%;
    height: 16px;
    background: var(--bg-secondary);
    border-radius: 8px;
    border: 2px solid var(--border-color);
    overflow: hidden;
    margin-bottom: 0.5rem;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(45deg, #b8860b, #ffd700, #daa520, #ffd700, #b8860b);
    background-size: 200% 100%;
    border-radius: 6px;
    transition: width 0.8s ease;
    position: relative;
    overflow: hidden;
    animation: gradientMove 3s ease-in-out infinite, progressGlow 2s ease-in-out infinite alternate;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5), inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

@keyframes gradientMove {
    0%,
    100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes progressGlow {
    0% {
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.5), inset 0 1px 2px rgba(255, 255, 255, 0.2);
    }
    100% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 30px rgba(184, 134, 11, 0.4), inset 0 1px 2px rgba(255, 255, 255, 0.3);
    }
}

.progress-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.4), transparent);
    animation: progressShine 2.5s infinite;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 4px 4px 0 0;
}

@keyframes progressShine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Responsive adjustments */

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 4px 6px rgba(255, 255, 255, 0.1);
        border-top: 1px solid var(--border-color);
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-menu li {
        margin: 0;
        text-align: center;
    }
    .nav-menu a {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
    }
    .nav-buy-btn {
        display: none;
    }
    .nav-toggle {
        display: flex;
    }
    .nav-container {
        padding: 1rem;
    }
    .logo {
        font-size: 1.3rem;
    }
    .logo img {
        width: 35px;
        height: 35px;
        object-fit: contain;
    }
    .hero {
        min-height: 100vh;
        padding: 80px 1rem 2rem 1rem;
        display: flex;
        align-items: center;
        height: auto;
    }
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        width: 100%;
        justify-content: center;
        padding-top: 2rem;
    }
    .hero-text {
        order: 2;
        padding: 0 1rem;
        width: 100%;
    }
    .hero-visual {
        order: 1;
    }
    .hero-text h1 {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
        line-height: 1.2;
    }
    .hero-text h2 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }
    .slogan {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        width: 100%;
        margin-bottom: 1rem;
    }
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 16px 20px;
        font-size: 1rem;
    }
    .container {
        padding: 0 1rem;
    }
    section {
        padding: 50px 0;
    }
    .presale h2,
    .token h2,
    .usd1 h2,
    .governance h2,
    .honor h2,
    .team h2,
    .faq h2,
    .contact h2,
    .disclaimer h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        text-align: center;
        line-height: 1.3;
    }
    .presale-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .presale-form,
    .referral-section {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    .presale-countdown h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    .countdown-timer {
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }
    .countdown-item {
        min-width: 55px;
        padding: 0.5rem 0.3rem;
        flex: 1;
        max-width: 70px;
    }
    .countdown-item span {
        font-size: 1.3rem;
    }
    .countdown-item small {
        font-size: 0.7rem;
    }
    .payment-methods {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    .payment-btn {
        padding: 12px 6px;
        font-size: 0.85rem;
        font-weight: 600;
    }
    .amount-input {
        margin-bottom: 1rem;
    }
    .amount-input input {
        padding: 14px 55px 14px 12px;
        font-size: 1rem;
        border-radius: 6px;
    }
    .wlfg-received {
        padding: 1rem;
        margin-bottom: 1.5rem;
        font-size: 1rem;
        text-align: center;
    }
    .referral-generator {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1.5rem;
        align-items: center;
    }
    .referral-generator input {
        padding: 14px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 100%;
    }
    .referral-generator button {
        width: 100%;
        max-width: 280px;
        padding: 14px 20px;
        font-size: 0.95rem;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .referral-actions {
        flex-direction: column;
        gap: 1rem;
        margin: 1.5rem 0;
        text-align: center;
        align-items: center;
    }
    .presale-buttons {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
        align-items: center;
        justify-content: center;
    }
    .presale-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 20px;
        font-size: 0.95rem;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .presale-info {
        margin-bottom: 2rem;
    }
    .presale-info h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
        text-align: center;
    }
    .presale-info p {
        text-align: center;
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    .presale-features {
        margin-top: 1rem;
    }
    .presale-features li {
        padding: 0.7rem 0;
        font-size: 0.9rem;
        line-height: 1.5;
        text-align: center;
    }
    .presale-image {
        margin-top: 1.5rem;
    }
    .presale-promotional-image,
    .crypto-news-image {
        border-radius: 8px;
        margin-bottom: 1rem;
    }
    .token-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .token-section-header {
        flex-direction: row;
        align-items: center;
        gap: 0.8rem;
        text-align: left;
        margin-bottom: 1.2rem;
    }
    .token-section-header h3 {
        font-size: 1.2rem;
        line-height: 1.3;
    }
    .token-emoji {
        font-size: 1.4rem;
    }
    .token-slogan {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    .token-slogan p {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    .token-slogan h3 {
        font-size: 1.5rem;
    }
    .token-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .token-info-item {
        padding: 1rem;
        text-align: left;
        font-size: 0.9rem;
    }
    .token-description,
    .token-governance-intro,
    .token-ecosystem-description,
    .token-symbolic-intro {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.2rem;
    }
    .token-use-cases li,
    .token-governance-features li,
    .token-symbolic-benefits li {
        padding: 0.6rem 0 0.6rem 1.5rem;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    .tokenomics-table {
        font-size: 0.85rem;
    }
    .tokenomics-row {
        grid-template-columns: 1fr;
        gap: 0.3rem;
        text-align: center;
        padding: 0.8rem 0.5rem;
    }
    .tokenomics-header {
        display: none;
    }
    .tokenomics-row:not(.tokenomics-header) {
        background: var(--bg-primary);
        border-bottom: 1px solid var(--border-color);
        display: block;
        padding: 1rem;
        text-align: left;
    }
    .tokenomics-category {
        font-size: 0.95rem;
        font-weight: 600;
        margin-bottom: 0.3rem;
        color: var(--primary-color);
    }
    .tokenomics-percentage::before {
        content: "Percentage: ";
        color: var(--text-secondary);
        font-weight: normal;
    }
    .tokenomics-amount::before {
        content: "Amount: ";
        color: var(--text-secondary);
        font-weight: normal;
    }
    .tokenomics-percentage,
    .tokenomics-amount {
        font-size: 0.9rem;
        display: block;
        margin-bottom: 0.2rem;
    }
    .usd1-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .usd1-text {
        text-align: center;
        order: 2;
        padding: 0 1rem;
    }
    .usd1-video {
        order: 1;
    }
    .usd1-text h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    .usd1-description {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }
    .usd1-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    .usd1-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    .governance-content {
        gap: 2rem;
    }
    .governance-visual img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
    }
    .governance-text {
        padding: 0 1rem;
    }
    .governance-text h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    .governance-text>p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    .governance-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .feature {
        padding: 1.5rem;
        text-align: center;
    }
    .feature h4 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    .feature p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.6;
    }
    .feature p:first-of-type {
        font-size: 1rem;
        font-weight: 600;
    }
    .feature .btn {
        display: inline-block;
        font-size: 0.8rem;
        padding: 10px 16px;
        margin-top: 0.5rem;
        line-height: 1.3;
        word-wrap: break-word;
        text-align: center;
        white-space: normal;
        min-height: auto;
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
    .team-member {
        padding: 1.2rem;
        text-align: center;
    }
    .team-member img {
        width: 90px;
        height: 90px;
        margin-bottom: 1rem;
    }
    .team-member h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }
    .team-member p {
        font-size: 0.85rem;
    }
    .honor-wall {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .honor-item {
        padding: 1rem;
        margin: 0 0.5rem;
    }
    .honor-rank {
        font-size: 1.3rem;
    }
    .honor-address {
        font-size: 0.85rem;
    }
    .honor-balance {
        font-size: 0.95rem;
    }
    .faq-list {
        margin: 0;
    }
    .faq-question {
        padding: 1.2rem;
    }
    .faq-question h3 {
        font-size: 1rem;
        margin-right: 1rem;
        line-height: 1.4;
    }
    .faq-answer {
        padding: 0 1.2rem;
    }
    .faq-answer.active {
        padding: 0 1.2rem 1.2rem 1.2rem;
    }
    .faq-answer p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    .contact-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .contact-link {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }
    .disclaimer-content {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    .disclaimer-content p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.2rem;
    }
    .modal-content {
        padding: 1.5rem;
        margin: 0 1rem;
        max-width: none;
        width: calc(100% - 2rem);
    }
    .modal-content h2 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    .modal-content p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    .purchase-details {
        padding: 1rem;
        margin: 0.8rem 0;
    }
    .purchase-details h3 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
        padding: 0.8rem 0;
        font-size: 1rem;
    }
    .detail-item span {
        font-size: 0.9rem;
        color: var(--text-secondary);
    }
    .detail-item strong {
        font-size: 1rem;
        word-break: break-word;
        line-height: 1.4;
    }
    .purchase-address-section {
        padding: 1rem;
        margin: 0.8rem 0;
    }
    .purchase-address-section h3 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    .address-box {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
        padding: 1rem;
    }
    .address-box code {
        font-size: 0.8rem;
        word-break: break-all;
        line-height: 1.3;
        text-align: center;
    }
    .btn-copy {
        width: 100%;
        padding: 12px;
        font-size: 0.9rem;
        text-align: center;
    }
    .modal-warning {
        font-size: 0.85rem;
        padding: 0.8rem;
        margin: 1rem 0;
        line-height: 1.5;
    }
    .modal-footer-actions {
        margin-top: 1.5rem;
        padding-top: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0.8rem;
    }
    .logo {
        font-size: 1.2rem;
    }
    .logo img {
        width: 30px;
        height: 30px;
    }
    .hero {
        padding: 80px 0.8rem 1rem 0.8rem;
    }
    .hero-text h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    .hero-text h2 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    .slogan {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    .liberty-statue {
        width: 160px;
        max-width: 50vw;
    }
    .btn-primary,
    .btn-secondary {
        max-width: 250px;
        padding: 14px 18px;
        font-size: 0.95rem;
    }
    .container {
        padding: 0 0.8rem;
    }
    section {
        padding: 40px 0;
    }
    .presale h2,
    .token h2,
    .usd1 h2,
    .governance h2,
    .honor h2,
    .team h2,
    .faq h2,
    .contact h2,
    .disclaimer h2 {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }
    .team-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
    }
    .team-member {
        padding: 1rem;
    }
    .team-member img {
        width: 80px;
        height: 80px;
    }
    .team-member h3 {
        font-size: 0.95rem;
    }
    .team-member p {
        font-size: 0.8rem;
    }
    .payment-methods {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    .payment-btn {
        padding: 14px 12px;
        font-size: 0.9rem;
    }
    .countdown-timer {
        gap: 0.3rem;
    }
    .countdown-item {
        min-width: 50px;
        padding: 0.4rem 0.2rem;
        max-width: 60px;
    }
    .countdown-item span {
        font-size: 1.1rem;
    }
    .countdown-item small {
        font-size: 0.65rem;
    }
    .modal-content {
        padding: 0.8rem 0.8rem;
        margin: 0 0.5rem;
    }
    .modal-content h2 {
        font-size: 1.2rem;
        line-height: 1.2;
    }
    .modal-content p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    .purchase-details {
        padding: 0.6rem;
    }
    .purchase-details h3 {
        font-size: 1rem;
    }
    .detail-item {
        padding: 0.6rem 0;
        font-size: 0.9rem;
    }
    .detail-item span {
        font-size: 0.8rem;
    }
    .detail-item strong {
        font-size: 0.9rem;
    }
    .purchase-address-section {
        padding: 0.8rem;
    }
    .purchase-address-section h3 {
        font-size: 1rem;
    }
    .address-box {
        padding: 0.8rem;
    }
    .address-box code {
        font-size: 0.75rem;
    }
    .modal-warning {
        font-size: 0.8rem;
        padding: 0.6rem;
    }
    .modal-footer-actions {
        margin-top: 1rem;
        padding-top: 0.8rem;
    }
    .modal-footer-actions .btn {
        padding: 10px;
        font-size: 0.85rem;
    }
}

.token-news-image {
    margin-top: 1.5rem;
    text-align: center;
}

.crypto-news-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(184, 134, 11, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    object-fit: cover;
}

.crypto-news-image:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(184, 134, 11, 0.3);
}

.footer-text-image {
    text-align: center;
    margin-top: 3rem;
}

.footer-text {
    max-width: 100%;
    height: auto;
    opacity: 0.8;
    filter: brightness(1.2);
}

@media (max-width: 768px) {
    .footer-text-image {
        margin-top: 2rem;
    }
    .footer-text {
        max-width: 90%;
    }
}

/* Modal Styles */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s 0.3s;
    padding: 1rem;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease;
}

.modal-content {
    background: var(--bg-primary);
    color: var(--text-primary);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
    border: 1px solid var(--border-color);
    width: 90%;
    max-width: 550px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    font-size: 2rem;
    font-weight: bold;
    color: #aaa;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    z-index: 10;
    padding: 0.5rem;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close-btn:hover {
    color: var(--text-primary);
}

/* Referral Modal Specific Styles */

#referral-modal .modal-content {
    max-width: 600px;
    background: var(--bg-secondary);
    border: 2px solid var(--primary-color);
}

#referral-modal h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
    font-weight: 700;
}

#referral-modal-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.6;
    font-size: 1rem;
}

#referral-modal-content .address-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-primary);
    padding: 1.2rem;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    margin: 1.5rem 0;
}

#referral-modal-content .address-box code {
    flex: 1;
    background: transparent;
    color: var(--primary-color);
    font-family: 'Courier New', monospace;
    font-weight: 700;
    font-size: 0.9rem;
    word-break: break-all;
    margin: 0;
    padding: 0;
}

#referral-modal-content .btn-copy {
    background: linear-gradient(45deg, #b8860b, #ffd700);
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(184, 134, 11, 0.3);
}

#referral-modal-content .btn-copy:hover {
    background: linear-gradient(45deg, #ffd700, #b8860b);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(184, 134, 11, 0.4);
}

#referral-modal-content ul {
    text-align: left;
    color: var(--text-secondary);
    margin: 1rem 0;
    padding-left: 1.5rem;
    background: var(--bg-primary);
    padding: 1.2rem 1.2rem 1.2rem 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

#referral-modal-content ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

#referral-modal-content strong {
    color: var(--primary-color);
    font-weight: 700;
}

.modal-content h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #b8860b, #ffd700);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1rem;
}

.purchase-details {
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.purchase-details h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-item span {
    color: var(--text-secondary);
    font-weight: 500;
}

.detail-item strong {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.purchase-address-section {
    background: var(--bg-secondary);
    border: 2px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    text-align: center;
}

.purchase-address-section h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.address-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-primary);
    padding: 1.2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    margin-top: 1rem;
}

.address-box code {
    flex: 1;
    background: transparent;
    color: var(--gold-color);
    font-family: 'Courier New', monospace;
    font-weight: 700;
    font-size: 0.95rem;
    word-break: break-all;
    margin: 0;
    padding: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.modal-warning {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #ff6b6b;
    padding: 1rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.6;
}

.modal-warning strong {
    color: #ff8787;
}

.modal-footer-actions {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

@media (max-width: 480px) {
    .modal-overlay {
        padding: 0.3rem;
        padding-top: 1.5rem;
    }
    .modal-content {
        padding: 0.8rem;
        max-height: 97vh;
        border-radius: 6px;
    }
    .modal-content h2 {
        font-size: 1.1rem;
        line-height: 1.2;
        margin-bottom: 0.6rem;
        padding-right: 2.5rem;
    }
    .modal-content p {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-bottom: 0.8rem;
    }
    .modal-close-btn {
        top: 0.2rem;
        right: 0.2rem;
        font-size: 1.6rem;
        min-width: 36px;
        min-height: 36px;
    }
    .purchase-details {
        padding: 0.6rem;
        margin: 0.8rem 0;
    }
    .purchase-details h3 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    .detail-item {
        padding: 0.5rem 0;
        font-size: 0.8rem;
    }
    .detail-item span {
        font-size: 0.75rem;
    }
    .detail-item strong {
        font-size: 0.85rem;
    }
    .purchase-address-section {
        padding: 0.6rem;
        margin: 0.8rem 0;
    }
    .purchase-address-section h3 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    .address-box {
        padding: 0.6rem;
        gap: 0.6rem;
    }
    .address-box code {
        font-size: 0.65rem;
        padding: 0.4rem;
    }
    .btn-copy {
        padding: 8px;
        font-size: 0.8rem;
    }
    .modal-warning {
        font-size: 0.7rem;
        padding: 0.5rem;
        margin: 0.6rem 0;
    }
    .modal-footer-actions {
        margin-top: 0.8rem;
        padding-top: 0.6rem;
    }
    .modal-footer-actions .btn {
        padding: 10px;
        font-size: 0.85rem;
    }
}

/* Partners Section */

.partners {
    padding: 60px 0;
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.partners h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.partners-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent, white 10%, white 90%, transparent);
    mask-image: linear-gradient(to right, transparent, white 10%, white 90%, transparent);
}

.partners-track {
    display: flex;
    width: calc(200px * 16);
    /* 8 logos * 2 sets * 200px width per logo */
    animation: scroll 40s linear infinite;
}

.partner-logo {
    width: 200px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    flex-shrink: 0;
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%) invert(100%) brightness(1.5);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.partner-logo img:hover {
    filter: none;
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 8));
        /* 8 logos * 200px */
    }
}