/* ============================================
   HOLD Token - Buy & Hold to Win
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:wght@400;700&family=Nunito:wght@400;600;700;800&family=Noto+Sans+SC:wght@400;500;600;700&display=swap');

:root {
    --cream: #fdf8f3;
    --cream-dark: #f5ede3;
    --gold: #d4a84b;
    --gold-dark: #b8923f;
    --brown: #8b6914;
    --brown-dark: #5c4a12;
    --text: #3d3d3d;
    --text-light: #666666;
    --white: #ffffff;

    --font-main: 'Noto Sans SC', 'Nunito', sans-serif;
    --font-fun: 'Comic Neue', 'Noto Sans SC', cursive;
    --font-cn: 'Noto Sans SC', sans-serif;

    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
    --radius: 20px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: var(--cream);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ===== Typography ===== */
h1, h2, h3 {
    font-family: var(--font-fun);
    font-weight: 700;
    color: var(--brown-dark);
}

h1 { font-size: clamp(3rem, 10vw, 6rem); letter-spacing: 2px; }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }

p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 700px;
    font-family: var(--font-cn);
}

a {
    color: var(--gold-dark);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--brown);
}

/* ===== Layout ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 8rem 0;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(253, 248, 243, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-fun);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brown-dark);
    text-decoration: none;
}

.logo img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text);
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links .social-nav a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--gold);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
}

.nav-links .social-nav a::after {
    display: none;
}

.nav-links .social-nav a:hover {
    background: var(--gold-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--brown-dark);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    opacity: 0.15;
    background: radial-gradient(ellipse at center bottom, var(--gold) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-mascot {
    width: 220px;
    height: 220px;
    margin-bottom: 2rem;
    animation: bounce 3s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(180,130,50,0.3));
    border-radius: 50%;
    object-fit: cover;
}

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

.hero h1 {
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--brown-dark) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-family: var(--font-fun);
    font-size: 1.5rem;
    color: var(--gold-dark);
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
}

.hero p {
    margin: 0 auto 2rem;
    font-size: 1.2rem;
}

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

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 168, 75, 0.4);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--brown-dark);
    border: 2px solid var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
}

/* ===== Info Table Section ===== */
.info-section {
    background: var(--white);
}

.info-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.info-section > .container > p {
    text-align: center;
    margin: 0 auto 3rem;
}

.info-table-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--cream);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-cn);
}

.info-table tr {
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.info-table tr:last-child {
    border-bottom: none;
}

.info-table td {
    padding: 1rem 1.5rem;
    font-size: 1.05rem;
}

.info-table td:first-child {
    font-weight: 600;
    color: var(--brown-dark);
    width: 140px;
    white-space: nowrap;
}

.info-table td:last-child {
    color: var(--text-light);
}

/* ===== Vault Section ===== */
.vault-section {
    background: var(--cream);
}

.vault-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.vault-section > .container > p {
    text-align: center;
    margin: 0 auto 3rem;
}

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

.vault-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
}

.vault-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: var(--shadow-hover);
}

.vault-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
}

.vault-card h3 {
    margin-bottom: 0.5rem;
}

.vault-percent {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    font-family: var(--font-fun);
    margin-bottom: 0.5rem;
}

.vault-card p {
    margin: 0 auto;
    font-size: 1rem;
}

/* ===== Burn Mechanism Section ===== */
.burn-section {
    background: var(--white);
}

.burn-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.burn-section > .container > p.section-lead {
    text-align: center;
    margin: 0 auto 3rem;
}

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

.burn-card {
    background: var(--cream);
    padding: 2.5rem;
    border-radius: var(--radius);
    transition: var(--transition);
    border: 2px solid transparent;
}

.burn-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: var(--shadow-hover);
}

.burn-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.burn-card h3 {
    margin-bottom: 1rem;
}

.burn-card p {
    font-size: 1rem;
}

/* ===== Cycle Section ===== */
.cycle-section {
    background: var(--cream);
}

.cycle-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.cycle-flow {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius);
    padding: 3rem;
    box-shadow: var(--shadow);
}

.cycle-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 0.5rem;
}

.cycle-step:last-child {
    margin-bottom: 0;
}

.cycle-arrow {
    text-align: center;
    font-size: 1.5rem;
    color: var(--gold);
    margin: 0.5rem 0;
    padding-left: 2rem;
}

.cycle-dot {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 0.2rem;
}

.cycle-content h4 {
    font-family: var(--font-fun);
    color: var(--brown-dark);
    font-size: 1.15rem;
    margin-bottom: 0.3rem;
}

.cycle-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

.cycle-result {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px dashed var(--gold);
}

.cycle-result p {
    margin: 0 auto;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gold-dark);
    font-family: var(--font-fun);
}

/* ===== Promise Section ===== */
.promise-section {
    background: var(--white);
}

.promise-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.promise-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: var(--cream);
    border-radius: var(--radius);
    transition: var(--transition);
}

.promise-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.promise-item i {
    color: var(--gold);
    font-size: 1.8rem;
    min-width: 36px;
    text-align: center;
}

.promise-item span {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--brown-dark);
}

/* ===== Community ===== */
.community {
    background: var(--cream);
    text-align: center;
}

.community h2 {
    margin-bottom: 1rem;
}

.community > .container > p {
    margin: 0 auto 3rem;
}

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

.community-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 3rem;
    background: var(--white);
    border-radius: var(--radius);
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow);
    min-width: 180px;
}

.community-link:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.community-link i {
    font-size: 3rem;
    color: var(--gold);
}

.community-link span {
    font-weight: 700;
    color: var(--text);
}

/* ===== Footer ===== */
.footer {
    background: var(--brown-dark);
    color: var(--cream);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-links-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-fun);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 1rem;
}

.footer-brand img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-desc {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.footer-links h4 {
    color: var(--gold);
    font-family: var(--font-fun);
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    display: block;
    padding: 0.3rem 0;
    transition: var(--transition);
}

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

.footer-social-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.footer-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--gold);
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-social-btn:hover {
    background: var(--gold-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 168, 75, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .vault-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .burn-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }

    .container {
        padding: 0 1.5rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--cream);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        box-shadow: var(--shadow);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .hero-mascot {
        width: 150px;
        height: 150px;
        font-size: 3.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .info-table td {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }

    .cycle-flow {
        padding: 2rem 1.5rem;
    }

    .community-links {
        flex-direction: row;
        justify-content: center;
        gap: 0.75rem;
    }

    .community-link {
        flex: 1;
        min-width: auto;
        padding: 1rem 0.5rem;
        gap: 0.5rem;
    }

    .community-link i {
        font-size: 1.8rem;
    }

    .community-link span {
        font-size: 0.75rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-main {
        text-align: center;
    }

    .footer-brand {
        justify-content: center;
    }

    .footer-social-buttons {
        justify-content: center;
    }

    .footer-links-wrapper {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        text-align: center;
    }

    .footer-links h4 {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

    .footer-links a {
        font-size: 0.8rem;
        padding: 0.15rem 0;
    }

    .footer-desc {
        font-size: 0.85rem;
    }

    .footer-bottom {
        font-size: 0.75rem;
        padding-top: 1.5rem;
    }

    .footer {
        padding: 2.5rem 0 1.5rem;
    }
}

/* ===== Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Utility ===== */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
