/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    font-family: 'Inter', system-ui, sans-serif;
    color: #fff;
    background:
        radial-gradient(circle at top, rgba(255, 215, 0, 0.18), transparent 45%),
        linear-gradient(180deg, #4a0000 0%, #0b0b0b 65%);
    background-attachment: fixed;
}

/* LINKS */
a {
    color: #ffd700;
    text-decoration: none;
}

/* NAVBAR */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 32px;
    backdrop-filter: blur(14px);
    background: rgba(0, 0, 0, 0.55);
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo {
    width: 42px;
    filter: drop-shadow(0 0 10px rgba(255,215,0,0.6));
}

.brand {
    font-weight: 700;
    font-size: 18px;
}

.nav-center a {
    margin: 0 14px;
    font-weight: 500;
    opacity: 0.9;
}

.wallet-btn {
    background: linear-gradient(135deg, #ffd700, #ffb300);
    color: #000;
    border: none;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(255,215,0,0.4);
}

/* HERO */
.hero {
    min-height: 100vh;
    text-align: center;
    padding: 120px 20px 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.35), transparent 70%);
    top: -250px;
    left: 50%;
    transform: translateX(-50%);
    filter: blur(100px);
}

.hero-logo {
    width: 160px;
    margin-bottom: 24px;
    filter: drop-shadow(0 0 25px rgba(255,215,0,0.7));
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 14px;
    background: linear-gradient(90deg, #ffd700, #ff4d4d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 18px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-actions {
    margin-top: 36px;
    display: flex;
    justify-content: center;
    gap: 18px;
}

/* BUTTONS */
.btn {
    padding: 14px 30px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn.primary {
    background: linear-gradient(135deg, #ffd700, #ffb300);
    color: #000;
    box-shadow: 0 0 30px rgba(255,215,0,0.5);
}

.btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 45px rgba(255,215,0,0.8);
}

.btn.outline {
    border: 1px solid #ffd700;
    color: #ffd700;
}

/* SECTIONS */
.section {
    padding: 100px 20px;
    text-align: center;
}

.section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    background: linear-gradient(90deg, #ffd700, #ff4d4d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* TOKENOMICS */
.token-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: auto;
}

.token-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 16px;
    padding: 28px;
    backdrop-filter: blur(14px);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.12);
}

/* PRESALE CARD */
.card {
    max-width: 700px;
    margin: auto;
    border-radius: 20px;
    padding: 50px 30px;
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(255,215,0,0.2);
    backdrop-filter: blur(16px);
}

/* COUNTDOWN */
#countdown {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin: 30px 0;
}

#countdown div {
    background: rgba(255,255,255,0.05);
    padding: 16px 18px;
    border-radius: 14px;
    min-width: 70px;
}

#countdown span {
    font-size: 22px;
    font-weight: bold;
    display: block;
}

/* PROGRESS */
.progress-box {
    width: 100%;
    background: rgba(255,255,255,0.08);
    border-radius: 999px;
    overflow: hidden;
    margin: 20px 0;
}

#progress-fill {
    width: 0%;
    padding: 10px;
    background: linear-gradient(90deg, #ffd700, #ff4d4d);
    font-weight: bold;
    color: #000;
}

/* BUY */
.buy-box {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 24px 0;
}

.buy-box input {
    padding: 12px;
    border-radius: 999px;
    border: none;
    width: 180px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 40px 20px;
    background: rgba(0,0,0,0.6);
    border-top: 1px solid rgba(255,215,0,0.15);
    margin-top: 80px;
}

.social a {
    margin: 0 6px;
}

/* MOBILE */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 40px;
    }
    .hero-logo {
        width: 120px;
    }
    .nav-center {
        display: none;
    }
}

/* WILL LIST IN */
.will-list {
    padding: 80px 20px 40px;
}

.marquee {
    overflow: hidden;
    width: 100%;
    margin-top: 40px;
    position: relative;
}

.marquee::before,
.marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
}

.marquee::before {
    left: 0;
    background: linear-gradient(to right, #0b0b0b, transparent);
}

.marquee::after {
    right: 0;
    background: linear-gradient(to left, #0b0b0b, transparent);
}

.marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: scroll 22s linear infinite;
}

.marquee-track img {
    height: 46px;
    margin: 0 40px;
    filter: grayscale(100%) brightness(1.2);
    opacity: 0.85;
    transition: 0.3s ease;
}

.marquee-track img:hover {
    filter: none;
    opacity: 1;
    transform: scale(1.08);
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.list-note {
    margin-top: 24px;
    font-size: 14px;
    opacity: 0.7;
}
