/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Impact', 'Arial Black', sans-serif;
}

body {
    background-color: #0b0c10;
    color: #fff;
    overflow-x: hidden;
}

/* Floating X Button Blueprint */
.floating-socials {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100;
}

.x-floating-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: #000;
    color: #fff;
    border: 3px solid #ffcc00;
    border-radius: 50%;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.5);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.x-floating-btn:hover {
    transform: scale(1.1) rotate(12deg);
    background-color: #ffcc00;
    color: #000;
    box-shadow: 0 0 25px rgba(255, 204, 0, 0.9);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle, #231903 0%, #0b0c10 100%);
    text-align: center;
    padding: 20px;
    position: relative;
}

.hero-container {
    max-width: 800px;
    z-index: 2;
}

/* Logo Setup with Custom Glow Rings */
.logo-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.main-logo {
    width: 290px;
    height: 290px;
    border-radius: 50%;
    border: 6px solid #ffcc00;
    box-shadow: 0 0 35px #ffcc00;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.main-logo:hover {
    transform: scale(1.08) rotate(-3deg);
}

/* Typography Aesthetics */
.glow-text {
    font-size: 4.5rem;
    color: #ffcc00;
    text-shadow: 0 0 10px #ffcc00, 0 0 25px #ffaa00;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.9rem;
    color: #45f3ff;
    text-shadow: 0 0 12px #45f3ff;
    margin-bottom: 45px;
    letter-spacing: 1.5px;
}

/* Navigation & Action Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 42px;
    font-size: 1.6rem;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.2s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.6);
}

.btn-x {
    background-color: #000;
    color: #fff;
    border: 2px solid #fff;
}

.btn-x:hover {
    background-color: #fff;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.5);
}

.btn-buy {
    background-color: #ffcc00;
    color: #000;
}

.btn-buy:hover {
    background-color: #ffee00;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 204, 0, 0.7);
}

/* Infinite Marquee Ticker Track */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background: #ffcc00;
    color: #000;
    padding: 14px 0;
    border-top: 3px solid #ffee00;
    border-bottom: 3px solid #ffee00;
}

@keyframes ticker {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

.ticker {
    display: flex;
    white-space: nowrap;
    animation: ticker 25s linear infinite;
}

.ticker__item {
    font-size: 1.6rem;
    padding: 0 2.5rem;
    font-weight: bold;
}

/* About / Tokenomics Content Box */
.about-section {
    padding: 90px 20px;
    text-align: center;
    background: #12141c;
}

.about-section h2 {
    font-size: 3.2rem;
    color: #ffcc00;
    margin-bottom: 25px;
    text-shadow: 0 0 8px rgba(255,204,0,0.3);
}

.about-section p {
    font-size: 1.35rem;
    max-width: 650px;
    margin: 0 auto 45px auto;
    color: #a0a5b5;
    font-family: sans-serif;
    line-height: 1.7;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
    margin-top: 45px;
}

.stat-card {
    background: #1a1d29;
    border: 2px solid #45f3ff;
    padding: 35px;
    border-radius: 22px;
    width: 220px;
    box-shadow: 0 0 20px rgba(69, 243, 255, 0.15);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card h3 {
    font-size: 2.8rem;
    color: #45f3ff;
    margin-bottom: 5px;
}

.stat-card p {
    margin: 0;
    font-size: 1.1rem;
    color: #fff;
    font-family: 'Impact', sans-serif;
}

/* Footer Element */
footer {
    background: #0b0c10;
    padding: 45px 20px;
    text-align: center;
    border-top: 3px solid #231903;
}

footer p {
    color: #555861;
    font-family: sans-serif;
    margin-bottom: 18px;
}

.social-links a {
    color: #ffcc00;
    text-decoration: none;
    font-size: 1.3rem;
    transition: color 0.2s ease;
}

.social-links a:hover {
    color: #45f3ff;
}