/* GENERAL RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000;
    font-family: 'Inter', sans-serif;
    color: #ccf9ff;
    overflow-x: hidden;
}

/* BACKGROUND PARTICLES */
#bg-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

/* RESTORED BRIGHT GLOW ORB */
.ton-orb {
    position: fixed;
    width: 550px;
    height: 550px;
    right: -180px;
    top: 15%;
    background: radial-gradient(circle, #00eaffaa, #00101500 70%);
    filter: blur(90px);
    animation: floaty 18s infinite ease-in-out alternate;
    z-index: -1;
}

@keyframes floaty {
    0% { transform: translateY(-40px); }
    100% { transform: translateY(40px); }
}

.container {
    width: 100%;
    max-width: 780px;
    margin: auto;
    padding: 40px 20px 120px;
}

/* HERO SECTION */
.hero {
    text-align: center;
    margin-bottom: 100px;
}

.hero h1 {
    font-size: 40px;
    color: #67e8f9;
}

.hero h2 {
    margin-top: 10px;
    color: #a8faff;
}

.hero-content {
    margin-top: 40px;
    line-height: 1.6;
}

.buttons {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

/* MAIN BUTTON STYLE */
.btn {
    background: rgba(0, 50, 60, 0.6);
    padding: 12px 0;
    width: 260px;
    border-radius: 50px;
    text-align: center;
    font-weight: 600;
    color: #7af9ff;
    text-decoration: none;
    border: 1px solid #00c9d2;
    backdrop-filter: blur(8px);
    transition: 0.25s;
}

.btn:hover {
    background: rgba(0, 80, 95, 0.85);
    transform: translateY(-2px);
}

/* SECTIONS */
.section {
    margin-top: 100px;
    padding: 40px;
    border-radius: 20px;
    background: rgba(0, 30, 40, 0.45);
    border: 1px solid #00d5ff55;
    backdrop-filter: blur(10px);
}

.section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #78f0ff;
}

.section h3 {
    margin-bottom: 20px;
    text-align: center;
    color: #9af9ff;
}

.section h4 {
    margin-bottom: 20px;
    text-align: center;
    color: #c6feff;
}

/* TOKENOMICS SECTION */
.tokenomics-section {
    text-align: center;
}

.tokenomics-grid {
    margin-bottom: 30px;
}

.tokenomics-supply {
    font-size: 20px;
    font-weight: bold;
    color: #8ffaff;
}

.tokenomics-note {
    margin-top: 20px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(0, 40, 50, 0.6);
    border: 1px solid #00f0ff33;
}

/* ADDRESS BOX */
.tokenomics-address-box {
    padding: 30px;
    border-radius: 20px;
    background: rgba(0, 18, 25, 0.6);
    border: 1px solid #00eaff55;
}

.tokenomics-address {
    margin: 12px auto 22px;
    padding: 6px 14px;
    max-width: 90%;
    color: #d7feff;
    font-size: 12px;
    line-height: 1.4;
    font-family: "JetBrains Mono", "Fira Code", monospace;
    background: rgba(0, 30, 40, 0.9);
    border-radius: 999px;
    border: 1px solid #00eaff55;
    word-break: break-all;      /* allow breaking mid-string */
    overflow-wrap: anywhere;    /* safe wrapping on mobile */
    text-align: center;
}

/* TOKENOMICS BUTTONS */
.tokenomics-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.tokenomics-btn {
    width: 180px;
    padding: 12px 0;
    border-radius: 50px;
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

/* FIX BUY BUTTON TO MATCH COPY PERFECTLY */
.buy-btn {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* MOBILE */
@media (max-width: 640px) {
    .buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 260px;
    }

    .tokenomics-buttons {
        flex-direction: column;
        align-items: center;
    }

    .tokenomics-btn {
        width: 260px;
    }
}

