/* ================= GLOBAL ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0f0f0f;
    color: #ffffff;
    line-height: 1.7;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

section {
    padding: 90px 20px;
}

/* ================= HEADINGS ================= */

h1, h2, h3 {
    font-weight: 600;
}

h2 {
    text-align: center;
    font-size: 34px;
    margin-bottom: 50px;
    color: #f5c542;
}

/* ================= HERO ================= */

.hero {
    background: linear-gradient(135deg, #141414, #1c1c1c);
    padding: 140px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 35px;
}

/* ================= BUTTONS ================= */

.btn {
    display: inline-block;
    padding: 14px 35px;
    background: #f5c542;
    color: #000;
    font-weight: 600;
    text-decoration: none;
    border-radius: 40px;
    transition: 0.3s ease;
}

.btn:hover {
    background: #ffd966;
    transform: scale(1.05);
}

.btn-secondary {
    background: transparent;
    border: 2px solid #f5c542;
    color: #f5c542;
}

.btn-secondary:hover {
    background: #f5c542;
    color: #000;
}

/* ================= ABOUT ================= */

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.feature-card {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #222;
    transition: 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 20px rgba(245,197,66,0.2);
}

/* ================= TOKEN INFO ================= */

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.info-grid div {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #222;
}

.contract-box {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    word-break: break-all;
    border: 1px solid #222;
}

/* ================= TOKENOMICS ================= */

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #222;
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px rgba(245,197,66,0.25);
}

.card ul {
    padding-left: 20px;
}

.card ul li {
    margin-bottom: 8px;
}

/* ================= ICO SECTION ================= */

#ico {
    background: #0f0f0f;
}

.ico-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.ico-card {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #222;
    text-align: center;
    transition: 0.3s ease;
}

.ico-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px rgba(245,197,66,0.25);
}

/* ================= LINKS ================= */

a {
    color: #f5c542;
    text-decoration: none;
    font-weight: 600;
}

a:hover {
    color: #ffffff;
}

a:visited {
    color: #f5c542;
}

a:active {
    color: #ffcf5c;
}

/* ================= HERO PREMIUM ================= */

.hero {
    height: 100vh;
    background: linear-gradient(180deg,#0b0b0b 0%,#000000 100%);
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-title {
    font-size:64px;
    font-weight:700;
}

.hero-title span {
    color:#f5c542;
}

.hero-subtitle {
    font-size:22px;
    color:#cccccc;
}

.hero-buttons {
    display:flex;
    justify-content:center;
    gap:25px;
}

/* GOLD BUTTON */
.btn-primary {
    padding:16px 45px;
    background:#f5c542;
    color:#000;
    border-radius:50px;
    transition:0.3s ease;
}

/* OUTLINE BUTTON */
.btn-outline {
    padding:16px 45px;
    border:2px solid #f5c542;
    color:#f5c542;
    border-radius:50px;
}

/* ================= MOBILE ================= */

@media (max-width:768px){

.hero-title{
font-size:42px;
}

.hero-buttons{
flex-direction:column;
}
}

/* =================================================
   ✅ NEW UPDATE — BUTTON CLICK COLOR FIX
   (ONLY ADDED — NOTHING REPLACED)
================================================= */

a,
.btn,
.btn-primary,
.btn-outline {
    -webkit-tap-highlight-color: transparent;
}

/* keep primary button same when clicked */
.btn-primary:active,
.btn-primary:focus,
.btn-primary:visited,
.btn-primary:focus-visible {
    background:#f5c542 !important;
    color:#000 !important;
    outline:none;
}

/* keep outline button same when clicked */
.btn-outline:active,
.btn-outline:focus,
.btn-outline:visited,
.btn-outline:focus-visible {
    background:transparent !important;
    color:#f5c542 !important;
    border:2px solid #f5c542 !important;
    outline:none;
}

/* stop browser link flash */
a:active,
a:focus{
outline:none;
}

/* ===================================
   OFFICIAL LINKS GRID SECTION
=================================== */

#official-links {
    background: #0b0b0b;
    padding: 100px 20px;
    text-align: center;
}

.official-container h2 {
    margin-bottom: 50px;
}

/* GRID LAYOUT */
.official-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    max-width: 900px;
    margin: auto;
}

/* CARD STYLE */
.official-card {
    background: #1a1a1a;
    padding: 35px 20px;
    border-radius: 18px;
    text-decoration: none;
    color: #f5c542;
    transition: 0.3s ease;
    border: 1px solid #222;
    box-shadow: 0 0 20px rgba(245,197,66,0.12);
}

/* ICON */
.official-card span {
    font-size: 40px;
    display: block;
    margin-bottom: 15px;
}

/* TEXT */
.official-card p {
    font-size: 18px;
    margin: 0;
}

/* HOVER EFFECT */
.official-card:hover {
    transform: translateY(-8px);
    background: #f5c542;
    color: #000;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 600px) {
    .official-card {
        padding: 25px 15px;
    }
}

/* ===================================
   VISION BOX SECTION
=================================== */

.vision {
    background: #0b0b0b;
    padding: 100px 20px;
    text-align: center;
}

/* CENTER BOX */
.vision-box {
    max-width: 800px;
    margin: auto;
    background: #1a1a1a;
    padding: 50px 35px;
    border-radius: 20px;
    border: 1px solid #222;
    box-shadow: 0 0 25px rgba(245,197,66,0.12);
    transition: 0.3s ease;
}

/* TITLE */
.vision-box h2 {
    color: #f5c542;
    margin-bottom: 20px;
    font-size: 32px;
}

/* TEXT */
.vision-box p {
    color: #ccc;
    font-size: 18px;
    line-height: 1.7;
}

/* HOVER EFFECT */
.vision-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 35px rgba(245,197,66,0.25);
}

/* MOBILE */
@media (max-width: 600px) {
    .vision-box {
        padding: 35px 20px;
    }
}

 /* ================= NEW HERO BUTTON LINKS ================= */

.hero-buttons a.btn-primary {
    padding: 16px 50px;               /* Slightly wider for visibility */
    background-color: #f5c542;        /* Gold background */
    color: #000;                       /* Black text */
    border-radius: 50px;               /* Rounded button */
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
}

.hero-buttons a.btn-primary:hover {
    background-color: #ffd966;        /* Slightly lighter gold on hover */
    transform: translateY(-2px);
}

.hero-buttons a.btn-outline {
    padding: 16px 50px;
    border: 2px solid #f5c542;        /* Gold border */
    color: #f5c542;                   /* Gold text */
    background: transparent;           /* Transparent background */
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s, transform 0.2s;
}

.hero-buttons a.btn-outline:hover {
    background-color: #f5c542;        /* Gold background on hover */
    color: #000;                       /* Black text */
    transform: translateY(-2px);
}

/* ================= MOBILE HERO BUTTONS ================= */
@media (max-width: 768px) {
    .hero-buttons a.btn-primary,
    .hero-buttons a.btn-outline {
        width: 100%;
        text-align: center;
        padding: 14px 0;
    }
}

/* TOKENOMICS IMAGE SECTION */

.tokenomics-image-wrapper {
    background: #000;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.tokenomics-image-box {
    background: #0b0f1a;
    padding: 20px;
    border-radius: 20px;
    border: 2px solid rgba(255, 200, 0, 0.4);
    box-shadow: 0 0 35px rgba(255, 200, 0, 0.2);

    width: 100%;
    max-width: 850px;   /* ⭐ PERFECT DESKTOP SIZE */
}

.tokenomics-image-box img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}




.trc-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}







#roadmap {
    padding: 80px 20px;
    background: #0b0b0b;
    text-align: center; /* centers heading */
}

#roadmap .container {
    max-width: 900px;   /* keeps content centered */
    margin: 0 auto;     /* center horizontally */
}

#roadmap h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #f5c15d;
}

.roadmap-item {
    background: #141414;
    padding: 20px 25px;
    margin-bottom: 20px;
    border-radius: 12px;
    text-align: center;   /* center text inside */
    font-size: 18px;
    color: #fff;

    /* smooth UI */
    transition: 0.3s;
}

.roadmap-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(245, 193, 93, 0.3);
}




@media (min-width: 769px) {

    .hero-title {
        margin-bottom: 8px;   /* reduce space below title */
    }

    .hero-subtitle {
        margin-bottom: 15px;  /* reduce space below subtitle */
    }

    .hero-buttons {
        margin-top: 5px;      /* bring buttons closer */
    }

}





.hero {
    text-align: center;
}

.hero-logo {
    width: 200px;       /* perfect size */
    height: auto;
    margin-bottom: 30px;
    
    /* optional glow effect */
    filter: drop-shadow(0 0 10px rgba(245, 193, 93, 0.4));
}





@media (max-width: 768px) {
    #roadmap, .about {
        clear: both;
        display: block;
        margin-top: 20px;
    }
}







@media (max-width: 768px) {

    .hero {
        padding-bottom: 60px;  /* creates space below buttons */
    }

    .hero-buttons {
        margin-bottom: 20px;   /* space after buttons */
    }

}


@media (max-width: 768px) {

    .hero {
        height: auto !important;   /* REMOVE fixed height problem */
        padding: 100px 20px 60px;  /* proper spacing */
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

}






@media (min-width: 769px) {

    .hero-title {
        margin-bottom: 8px;   /* reduce space below title */
    }

    .hero-subtitle {
        margin-bottom: 15px;  /* reduce space below subtitle */
    }

    .hero-buttons {
        margin-top: 5px;      /* bring buttons closer */
    }

}


/* LOGO SIZE FIXED FOR PC + MOBILE */

.hero-logo {
    width: 250px;   /* PC size */
    height: auto;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .hero-logo {
        width: 250px;   /* Mobile size */
    }
}




@media (min-width: 769px) {

    .hero-logo {
        margin-bottom: 5px;   /* reduce gap below logo */
    }

    .hero-title {
        margin-top: 0 !important;   /* remove space above text */
        margin-bottom: 8px;         /* reduce space below title */
    }

    .hero p {
        margin-bottom: 15px !important;  /* reduce space before buttons */
    }

}









/* ===== SECTION ===== */
.ecosystem-section {
    background: radial-gradient(circle at center, #020024, #000000);
    padding: 80px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===== CONTAINER ===== */
.ecosystem-container {
    position: relative;
    width: 520px;
    height: 520px;
    max-width: 100%;
}

/* ===== CENTER (GOLD) ===== */
.center-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    width: 160px;
    height: 160px;
    
    background: linear-gradient(135deg, #FFD700, #FFB700, #FFA500);
    border-radius: 50%;
    
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    color: #111;
    font-weight: 800;
    font-size: 16px;

    z-index: 10;

    animation: goldGlow 2s infinite alternate;
}

/* Glow */
@keyframes goldGlow {
    from {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    }
    to {
        box-shadow: 0 0 50px rgba(255, 215, 0, 1);
    }
}

/* ===== CIRCLES ===== */
.circle {
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    color: white;
    font-weight: 600;
    font-size: 13px;

    cursor: pointer;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover (safe) */
.circle:hover {
    transform: scale(1.12);
    z-index: 20;
    box-shadow: 0 0 15px rgba(255,255,255,0.5);
}

/* ===== POSITIONS (DESKTOP) ===== */
.c1 { top: 0; left: 50%; transform: translateX(-50%); background: #00c2c7; }
.c2 { top: 15%; right: 0; background: #c86dd7; }
.c3 { top: 50%; right: -15px; transform: translateY(-50%); background: #ff3d6d; }
.c4 { bottom: 15%; right: 0; background: #7a5cff; }
.c5 { bottom: 0; left: 50%; transform: translateX(-50%); background: #ff9900; }
.c6 { bottom: 15%; left: 0; background: #1ea7ff; }
.c7 { top: 50%; left: -15px; transform: translateY(-50%); background: #00c47a; }
.c8 { top: 15%; left: 0; background: #ff5edc; }

/* ===== 🔥 MOBILE FIX (IMPORTANT) ===== */
@media (max-width: 600px) {

    .ecosystem-container {
        width: 300px;
        height: 300px;
    }

    .center-circle {
        width: 110px;
        height: 110px;
        font-size: 13px;
    }

    .circle {
        width: 60px;
        height: 60px;
        font-size: 10px;
        padding: 5px;
    }

    /* PERFECT ROUND SPACING */
    .c1 { top: -5px; left: 50%; transform: translateX(-50%); }
    .c2 { top: 10%; right: -5px; }
    .c3 { top: 50%; right: -10px; transform: translateY(-50%); }
    .c4 { bottom: 10%; right: -5px; }
    .c5 { bottom: -5px; left: 50%; transform: translateX(-50%); }
    .c6 { bottom: 10%; left: -5px; }
    .c7 { top: 50%; left: -10px; transform: translateY(-50%); }
    .c8 { top: 10%; left: -5px; }
}










/* ===== SECTION ===== */
.scarcity {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===== CONTAINER CENTER ===== */
.scarcity .container {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

/* ===== HEADING ===== */
.scarcity h2 {
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 700;
    background: linear-gradient(90deg, #FFD700, #FFB700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===== MAIN BOX ===== */
.scarcity-box {
    background: rgba(255,255,255,0.05);
    border-radius: 18px;
    padding: 35px 25px;

    backdrop-filter: blur(10px);

    box-shadow: 
        0 0 20px rgba(255,255,255,0.05),
        0 0 40px rgba(255,215,0,0.1);

    transition: 0.3s ease;
}

/* HOVER EFFECT */
.scarcity-box:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 0 30px rgba(255,215,0,0.2),
        0 0 60px rgba(255,215,0,0.15);
}

/* ===== TITLE ===== */
.scarcity-box h3 {
    font-size: 22px;
    color: #FFD700;
    margin-bottom: 15px;
}

/* ===== TEXT ===== */
.scarcity-box p {
    font-size: 15px;
    line-height: 1.7;
    color: #ddd;
    margin-bottom: 12px;
}

/* ===== LIST CENTERED ===== */
.scarcity-box ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

/* LIST ITEMS */
.scarcity-box li {
    font-size: 14px;
    margin-bottom: 8px;
    color: #fff;
}

/* ===== NOTE ===== */
.scarcity-note {
    margin-top: 15px;
    color: #00ffae;
    font-weight: 600;
    font-size: 14px;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 600px) {

    .scarcity {
        padding: 60px 15px;
    }

    .scarcity h2 {
        font-size: 24px;
    }

    .scarcity-box {
        padding: 25px 18px;
    }

    .scarcity-box h3 {
        font-size: 18px;
    }

    .scarcity-box p {
        font-size: 14px;
    }

    .scarcity-box li {
        font-size: 13px;
    }
}







/* ===== SECTION ===== */
.tax-benefits {
    padding: 90px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* CENTER CONTAINER */
.tax-benefits .container {
    max-width: 850px;
    width: 100%;
    text-align: center;
}

/* ===== GOLD TITLE ===== */
.gold-title {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 30px;

    background: linear-gradient(90deg, #FFD700, #FFB700, #FFF5B7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: shine 3s linear infinite;
}

/* SHINING TEXT ANIMATION */
@keyframes shine {
    0% { background-position: 0%; }
    100% { background-position: 200%; }
}

/* ===== MAIN BOX ===== */
.tax-box {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 40px 30px;

    backdrop-filter: blur(12px);

    box-shadow:
        0 0 25px rgba(255,215,0,0.15),
        0 0 50px rgba(255,215,0,0.1);

    transition: 0.4s ease;
}

/* HOVER GLOW */
.tax-box:hover {
    transform: translateY(-8px);
    box-shadow:
        0 0 40px rgba(255,215,0,0.3),
        0 0 80px rgba(255,215,0,0.2);
}

/* ===== INTRO TEXT ===== */
.tax-intro {
    font-size: 16px;
    color: #ddd;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* ===== LIST ===== */
.tax-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.tax-list li {
    font-size: 15px;
    margin-bottom: 10px;
    color: #fff;
    position: relative;
    padding-left: 20px;
}

/* GOLD DOT */
.tax-list li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: #FFD700;
}

/* ===== NOTE ===== */
.tax-note {
    margin-top: 20px;
    color: #00ffae;
    font-weight: 600;
    font-size: 14px;
}

/* ===== MOBILE ===== */
@media (max-width: 600px) {

    .gold-title {
        font-size: 24px;
    }

    .tax-box {
        padding: 25px 18px;
    }

    .tax-intro {
        font-size: 14px;
    }

    .tax-list li {
        font-size: 13px;
    }
}






.tax-list {
    list-style: none;
    padding: 0;
    margin: 20px auto;
    max-width: 520px;
    text-align: left;
}

/* LIST ITEMS */
.tax-list li {
    display: flex;
    align-items: center;

    font-size: 15px;
    margin-bottom: 12px;
    color: #fff;
}

/* GLOW DOT */
.tax-list li::before {
    content: "";
    
    width: 7px;
    height: 7px;
    
    background: #FFD700;
    border-radius: 50%;
    
    margin-right: 8px; /* 🔥 controls distance (perfect touch) */

    box-shadow:
        0 0 6px #FFD700,
        0 0 12px #FFD700;

    flex-shrink: 0;
}







/* ===== CARD BASE ===== */
.card {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 35px 25px;

    backdrop-filter: blur(12px);

    box-shadow:
        0 0 25px rgba(255,215,0,0.12),
        0 0 50px rgba(255,215,0,0.08);

    transition: 0.4s ease;
    text-align: center;
    max-width: 800px;
    margin: auto;
}

/* HOVER EFFECT */
.card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 0 40px rgba(255,215,0,0.25),
        0 0 80px rgba(255,215,0,0.15);
}

/* ===== GOLD HEADING ===== */
.card h3 {
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 800;

    background: linear-gradient(90deg, #FFD700, #FFB700, #FFF5B7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===== TEXT ===== */
.card p {
    font-size: 15px;
    color: #ddd;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* ===== LIST ===== */
.anti-list {
    list-style: none;
    padding: 0;
    margin: 20px auto;
    max-width: 550px;
    text-align: left;
}

/* LIST ITEMS */
.anti-list li {
    display: flex;
    align-items: center;

    font-size: 15px;
    margin-bottom: 12px;
    color: #fff;
}

/* GOLD GLOW DOT */
.anti-list li::before {
    content: "";
    width: 7px;
    height: 7px;
    background: #FFD700;
    border-radius: 50%;
    margin-right: 8px;

    box-shadow:
        0 0 6px #FFD700,
        0 0 12px #FFD700;
}

/* ===== NOTE ===== */
.anti-note {
    margin-top: 18px;
    color: #00ffae;
    font-weight: 600;
    font-size: 14px;
}

/* ===== MOBILE ===== */
@media (max-width: 600px) {

    .card {
        padding: 25px 18px;
    }

    .card h3 {
        font-size: 20px;
    }

    .card p {
        font-size: 14px;
    }

    .anti-list li {
        font-size: 13px;
    }
}








/* ===== SECTION ===== */
.indicator-section {
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;

    /* ✅ KEEP GOLD BACKGROUND SHINE */
    background: radial-gradient(circle at center, rgba(255,215,0,0.08), #000 70%);
}

/* ===== CENTER ===== */
.indicator-section .container {
    max-width: 1000px;
    width: 100%;
    text-align: center;
}

/* ===== TITLE ===== */
.indicator-title {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 15px;

    background: linear-gradient(90deg, #FFD700, #FFB700, #FFF5B7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    text-shadow: 0 0 20px rgba(255,215,0,0.3);
}

/* ===== SUBTEXT ===== */
.indicator-sub {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 40px;
}

/* ===== IMAGE BOX ===== */
.indicator-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;

    /* ✅ KEEP NORMAL GOLD FRAME */
    box-shadow:
        0 0 30px rgba(255,215,0,0.25),
        0 0 80px rgba(255,215,0,0.15);

    /* ❌ REMOVE ANIMATION */
    transition: none;
}

/* ❌ REMOVE HOVER COMPLETELY */
/* .indicator-box:hover { } */

/* ===== IMAGE ===== */
.indicator-box img {
    width: 100%;
    display: block;
    border-radius: 20px;
}

/* ❌ REMOVE HOVER BORDER ANIMATION ONLY */
.indicator-box::before {
    display: none;
}

/* ===== MOBILE ===== */
@media (max-width: 600px) {

    .indicator-section {
        padding: 70px 15px;
    }

    .indicator-title {
        font-size: 24px;
    }

    .indicator-sub {
        font-size: 14px;
    }
}








/* =========================
   SOFT DARK BACKGROUND (UP-DOWN GLOW)
========================= */
body {
  background: linear-gradient(180deg, #000000, #111111, #000000);
  background-size: 100% 200%;
  animation: bgFlow 8s ease-in-out infinite;
  color: #ffffff;
}

@keyframes bgFlow {
  0% { background-position: 50% 0%; }
  50% { background-position: 50% 100%; }
  100% { background-position: 50% 0%; }
}


/* =========================
   ICO TITLE GOLD GLOW
========================= */
.ico-title {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  color: #ffd700;

  text-shadow:
    0 0 6px #ffd700,
    0 0 12px rgba(255, 215, 0, 0.6);

  animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  from {
    text-shadow:
      0 0 5px #ffd700,
      0 0 10px rgba(255, 215, 0, 0.5);
  }
  to {
    text-shadow:
      0 0 12px #ffd700,
      0 0 25px rgba(255, 215, 0, 0.8);
  }
}


/* =========================
   ICO CARD (SOFT GOLD LOOK)
========================= */
.ico-card {
  position: relative;
  background: #111;
  border-radius: 14px;
  padding: 20px;
  margin: 15px;
  overflow: hidden;

  border: 1px solid rgba(255, 215, 0, 0.25);

  box-shadow:
    0 0 10px rgba(255, 215, 0, 0.08);

  transition: 0.3s ease;
}


/* =========================
   SOFT SHINE (UP-DOWN SWEEP)
========================= */
.ico-card::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 60%;

  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 215, 0, 0.25),
    transparent
  );

  animation: shineVertical 4s ease-in-out infinite;
}

@keyframes shineVertical {
  0% { top: -100%; }
  50% { top: 100%; }
  100% { top: -100%; }
}


/* =========================
   HOVER (LIGHT GLOW ONLY)
========================= */
.ico-card:hover {
  box-shadow:
    0 0 15px rgba(255, 215, 0, 0.2);
}


/* =========================
   GOLD TEXT
========================= */
.gold-text {
  color: #ffd700;
  font-weight: 600;
}









/* ===== SECTION ===== */
.ico-details {
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;

    background: radial-gradient(circle at center, rgba(255,215,0,0.08), #000 70%);
}

/* CENTER */
.ico-details .container {
    max-width: 1000px;
    width: 100%;
    text-align: center;
}

/* TITLE */
.gold-title {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 40px;

    background: linear-gradient(90deg, #FFD700, #FFB700, #FFF5B7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* MAIN BOX */
.ico-box {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 40px 25px;

    backdrop-filter: blur(12px);

    box-shadow:
        0 0 30px rgba(255,215,0,0.2),
        0 0 70px rgba(255,215,0,0.1);
}

/* GRID */
.ico-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* CARD */
.ico-card {
    background: rgba(0,0,0,0.6);
    padding: 25px;
    border-radius: 15px;

    border: 1px solid rgba(255,215,0,0.2);

    text-align: left;
}

/* CARD TITLE */
.ico-card h3 {
    color: #FFD700;
    margin-bottom: 15px;
}

/* TEXT */
.ico-card p {
    color: #ddd;
    font-size: 14px;
    margin-bottom: 6px;
}

/* SUMMARY */
.ico-summary {
    grid-column: span 2;
    margin-top: 10px;

    color: #00ffae;
    font-weight: 600;
}

/* ===== MOBILE ===== */
@media (max-width: 600px) {

    .ico-box {
        grid-template-columns: 1fr;
        padding: 25px 15px;
    }

    .gold-title {
        font-size: 24px;
    }

    .ico-summary {
        grid-column: span 1;
    }
}




/* FULL WIDTH ROWS */
.ico-summary {
    grid-column: span 2;
    text-align: center;
}

.dex-launch {
    grid-column: span 2;  /* 🔥 KEY FIX */
    text-align: center;
}

/* OPTIONAL NICE TEXT STYLE */
.ico-note {
    font-size: 13px;
    color: #00ffae;
    margin-top: 8px;
    line-height: 1.5;
}




@media (max-width: 600px) {

    .ico-box {
        grid-template-columns: 1fr; /* 🔥 MAIN FIX */
    }

    .ico-summary,
    .dex-launch {
        grid-column: span 1; /* reset */
    }

}






/* ===== VISION SECTION ===== */
.vision {
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;

    background: linear-gradient(180deg, #000, #0a0a0a);
}

/* CENTER BOX */
.vision-box {
    max-width: 800px;
    width: 100%;
    text-align: center;

    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px 30px;

    backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 215, 0, 0.15);

    box-shadow: 0 0 25px rgba(255, 215, 0, 0.08);
}

/* TITLE */
.vision-box h2 {
    font-size: 32px;
    margin-bottom: 20px;

    background: linear-gradient(90deg, #FFD700, #FFB700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* TEXT */
.vision-box p {
    color: #ccc;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
}

/* LAST PARAGRAPH LESS SPACE */
.vision-box p:last-child {
    margin-bottom: 0;
}

/* ===== MOBILE ===== */
@media (max-width: 600px) {

    .vision {
        padding: 70px 15px;
    }

    .vision-box {
        padding: 25px 18px;
    }

    .vision-box h2 {
        font-size: 24px;
    }

    .vision-box p {
        font-size: 14px;
    }
}







.services-title {
    display: block;
    width: 100%;
    text-align: center !important;  /* 🔥 force center */

    font-size: 26px;
    font-weight: 700;
    margin: 30px auto 15px;

    /* DARK GOLD */
    background: linear-gradient(90deg, #c9a227, #a67c00, #e6c200);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    letter-spacing: 1px;
}





.services-title {
    display: block;
    width: 100%;
    text-align: center;

    font-size: 28px;
    font-weight: 800;
    margin: 35px 0 20px;

    /* 🔥 BRIGHT RICH GOLD */
    background: linear-gradient(90deg, #FFD700, #FFB700, #FFF5B7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* 🔥 GLOW */
    text-shadow:
        0 0 10px rgba(255,215,0,0.5),
        0 0 20px rgba(255,215,0,0.3);
}









/* Main Card */
.dex-launch {
  background: linear-gradient(145deg, #0b0b0b, #1a1a1a);
  padding: 25px;
  border-radius: 16px;
  color: #f5f5f5;
  box-shadow: 0 10px 40px rgba(255, 215, 0, 0.15);
  max-width: 400px;
  margin: 40px auto;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

/* Title */
.dex-launch h3 {
  text-align: center;
  margin-bottom: 15px;
  color: #ffd700;
  letter-spacing: 1px;
}

/* Features Row */
.dex-features {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 14px;
}

/* Feature Text */
.dex-features p {
  color: #e6c200;
}

/* Inner Box */
.dex-box {
  background: rgba(255, 215, 0, 0.05);
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 215, 0, 0.15);
}

/* Box Title */
.dex-box h4 {
  margin-bottom: 10px;
  color: #ffd700;
}

/* Price Section */
.dex-price {
  text-align: center;
}

/* Price Highlight */
.dex-price strong {
  font-size: 20px;
  color: #ffd700;
}

/* Note Text */
.dex-note {
  font-size: 12px;
  color: #bfa94a;
  margin-top: 8px;
}

/* ✨ Hover Effect */
.dex-launch:hover {
  box-shadow: 0 15px 50px rgba(255, 215, 0, 0.25);
  transform: translateY(-3px);
  transition: 0.3s ease;
}







@media (max-width: 600px) {
  .dex-features {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .dex-features p {
    width: 100%;
    margin: 6px 0;
  }
}








@media (min-width: 768px) {
  .dex-features {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
  }

  .dex-features p {
    text-align: center;
    padding: 6px 10px;
    white-space: nowrap;
  }
}
