    .btn-binance,
    .btn-mexc,
    .btn-bybit,
    .btn-bitget,
    .btn-bingx {
        padding: 10px 30px;
        border-radius: 4px;
        display: inline-block;
        font-family: var(--font-body);
        transition: 0.3s;
    }

    .btn-binance:hover,
    .btn-mexc:hover,
    .btn-bybit:hover,
    .btn-bitget:hover,
    .btn-bingx:hover {
        opacity: 0.9;
        transform: translateY(-2px);
    }

    :root {
        --primary-color: #00FF9D;
        --primary-glow: rgba(0, 255, 157, 0.4);
        --secondary-color: #00CC66;
        --bg-dark: #050505;
        --bg-card: #0F0F0F;
        --bg-card-hover: #161616;
        --text-main: #FFFFFF;
        --text-muted: #AAAAAA;
        --border-color: #333333;
        --font-heading: 'Orbitron', 'Arial', sans-serif;
        --font-body: 'Inter', 'Segoe UI', sans-serif;
        --transition-speed: 0.3s;
        --container-width: 1200px;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        background: linear-gradient(-45deg, #050505, #0a0a0a, #051405, #050505);
        background-size: 400% 400%;
        animation: gradientBG 20s ease infinite;
        color: var(--text-main);
        font-family: var(--font-body);
        line-height: 1.6;
        overflow-x: hidden;
        min-height: 100vh;
    }

    @keyframes gradientBG {
        0% {
            background-position: 0% 50%;
        }

        50% {
            background-position: 100% 50%;
        }

        100% {
            background-position: 0% 50%;
        }
    }

    a {
        text-decoration: none;
        color: inherit;
        transition: color var(--transition-speed);
    }

    ul {
        list-style: none;
    }

    img {
        max-width: 100%;
        display: block;
    }

    /* =========================================
   2. Utility & Layout
   ========================================= */
    .container {
        max-width: var(--container-width);
        margin: 0 auto;
        padding: 0 20px;
    }

    .section {
        padding: 80px 0;
    }

    .section-title {
        font-family: var(--font-heading);
        font-size: 2.5rem;
        margin-bottom: 2rem;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .highlight {
        color: var(--primary-color);
        text-shadow: 0 0 10px var(--primary-glow);
    }

    .text-center {
        text-align: center;
    }

    /* Buttons */
    .btn-primary {
        display: inline-block;
        padding: 12px 30px;
        background-color: var(--primary-color);
        color: #000;
        font-weight: 700;
        text-transform: uppercase;
        border-radius: 4px;
        letter-spacing: 1px;
        transition: all var(--transition-speed);
    }

    .btn-primary:hover {
        background-color: #00cc88;
        box-shadow: 0 0 20px var(--primary-glow);
        transform: translateY(-2px);
    }

    .btn-secondary {
        display: inline-block;
        padding: 10px 25px;
        background: transparent;
        border: 1px solid var(--primary-color);
        color: var(--primary-color);
        font-weight: 600;
        text-transform: uppercase;
        border-radius: 4px;
        cursor: pointer;
        transition: all var(--transition-speed);
    }

    .btn-secondary:hover {
        background: var(--primary-glow);
        color: #fff;
    }

    .btn-outline {
        display: inline-block;
        margin-top: 15px;
        padding: 8px 20px;
        border: 1px solid #444;
        color: var(--text-muted);
        border-radius: 4px;
    }

    .btn-outline:hover {
        border-color: var(--primary-color);
        color: var(--primary-color);
    }

    /* =========================================
   3. Navbar
   ========================================= */
    header {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
        background: rgba(5, 5, 5, 0.7);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 15px 0;
    }

    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 10px;
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 1.2rem;
        color: var(--primary-color);
    }

    .logo-img {
        height: 40px;
        width: auto;
        border-radius: 50%;
    }

    .nav-links {
        display: flex;
        gap: 30px;
        align-items: center;
    }

    .nav-links a {
        font-weight: 500;
        font-size: 0.9rem;
        text-transform: uppercase;
    }

    .nav-links a:hover {
        color: var(--primary-color);
    }

    .cta-btn {
        border: 1px solid var(--primary-color);
        padding: 8px 16px;
        border-radius: 4px;
        color: var(--primary-color);
    }

    .cta-btn:hover {
        background: var(--primary-color);
        color: #000;
    }

    .menu-toggle {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
    }

    .bar {
        width: 25px;
        height: 3px;
        background-color: #fff;
        transition: 0.3s;
    }

    /* =========================================
   4. Hero Section
   ========================================= */
    .hero {
        height: 100vh;
        width: 100%;
        background: url('../assets/images/logo.jpg') no-repeat center center/contain;
        /* Use one of the provided images as default, maybe rotate them with JS later? For now, static. */
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin-top: 60px;
        /* Offset for fixed header */
    }

    /* Overlay gradient */
    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, rgba(5, 5, 5, 0.7) 0%, rgba(5, 5, 5, 0.9) 100%);
        z-index: 1;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        padding: 0 20px;
    }

    .hero-title {
        font-family: var(--font-heading);
        font-size: 4rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: #fff;
        text-transform: uppercase;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        color: var(--text-muted);
        margin-bottom: 2rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Glitch Effect - Simple CSS Implementation */
    .glitch {
        position: relative;
    }

    .glitch::before,
    .glitch::after {
        content: attr(data-text);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0.8;
    }

    .glitch::before {
        color: #0ff;
        z-index: -1;
        animation: glitch-effect 3s infinite;
    }

    .glitch::after {
        color: #f0f;
        z-index: -2;
        animation: glitch-effect 2s infinite reverse;
    }

    @keyframes glitch-effect {
        0% {
            transform: translate(0);
        }

        20% {
            transform: translate(-2px, 2px);
        }

        40% {
            transform: translate(-2px, -2px);
        }

        60% {
            transform: translate(2px, 2px);
        }

        80% {
            transform: translate(2px, -2px);
        }

        100% {
            transform: translate(0);
        }
    }

    /* =========================================
   5. Ticker
   ========================================= */
    .ticker-wrap {
        width: 100%;
        background-color: #0a0a0a;
        border-top: 1px solid rgba(0, 255, 157, 0.2);
        border-bottom: 2px solid var(--primary-color);
        overflow: hidden;
        white-space: nowrap;
        height: 60px;
        display: flex;
        align-items: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    }

    .ticker {
        display: inline-block;
        animation: marquee 30s linear infinite;
        padding-left: 100%;
    }

    .ticker__item {
        display: inline-block;
        padding: 0 4rem;
        font-family: var(--font-body);
        font-size: 1.3rem;
        font-weight: 700;
        color: #fff;
        letter-spacing: 0.5px;
    }

    .up {
        color: var(--primary-color);
    }

    .down {
        color: #ff3333;
    }

    @keyframes marquee {
        0% {
            transform: translate(0, 0);
        }

        100% {
            transform: translate(-100%, 0);
        }
    }

    /* =========================================
   10. Load More Button
   ========================================= */
    .load-more-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 60px 0 20px 0;
        position: relative;
        grid-column: 1 / -1;
        /* For safety if within a grid */
    }

    .btn-load-more {
        background: rgba(0, 255, 157, 0.05);
        border: 2px solid var(--primary-color);
        color: var(--primary-color);
        padding: 16px 45px;
        font-family: var(--font-heading);
        font-size: 1rem;
        font-weight: 800;
        letter-spacing: 3px;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        backdrop-filter: blur(10px);
        border-radius: 8px;
        text-transform: uppercase;
        box-shadow: 0 0 20px rgba(0, 255, 157, 0.1), inset 0 0 10px rgba(0, 255, 157, 0.05);
    }

    .btn-load-more:hover {
        background: var(--primary-color);
        color: #000;
        box-shadow: 0 0 40px var(--primary-glow);
        transform: translateY(-5px) scale(1.02);
    }

    .btn-load-more:active {
        transform: translateY(-2px) scale(0.98);
        box-shadow: 0 0 20px var(--primary-glow);
    }

    .btn-glow {
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg,
                transparent,
                rgba(255, 255, 255, 0.4),
                transparent);
        transition: 0.6s;
    }

    .btn-load-more:hover .btn-glow {
        left: 100%;
    }

    /* Loader Styles */
    .news-loader {
        margin-top: 25px;
    }

    .spinner {
        width: 35px;
        height: 35px;
        border: 3px solid rgba(0, 255, 157, 0.1);
        border-top: 3px solid var(--primary-color);
        border-radius: 50%;
        animation: spin 0.8s cubic-bezier(0.5, 0.1, 0.5, 0.9) infinite;
        box-shadow: 0 0 15px rgba(0, 255, 157, 0.2);
    }

    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    .all-loaded-text {
        color: var(--primary-color);
        font-family: var(--font-heading);
        font-size: 0.85rem;
        letter-spacing: 2px;
        opacity: 0.8;
        background: rgba(0, 255, 157, 0.05);
        padding: 10px 20px;
        border-radius: 20px;
        border: 1px solid rgba(0, 255, 157, 0.2);
        box-shadow: 0 0 15px rgba(0, 255, 157, 0.1);
    }

    /* =========================================
   6. News Grid
   ========================================= */
    .news-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
    }

    .news-card {
        background: rgba(15, 15, 15, 0.6);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        display: flex;
        flex-direction: column;
    }

    .news-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
        border-color: var(--primary-color);
        background: rgba(20, 20, 20, 0.8);
    }

    .news-image {
        width: 100%;
        height: 200px;
        object-fit: contain;
        background-color: #000;
        /* Preserve black background for empty space */
        padding: 10px;
    }

    .news-content {
        padding: 20px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .news-meta {
        font-size: 0.8rem;
        color: var(--primary-color);
        margin-bottom: 10px;
        display: flex;
        justify-content: space-between;
    }

    .news-title {
        font-family: var(--font-heading);
        font-size: 1.2rem;
        margin-bottom: 10px;
        line-height: 1.4;
    }

    .news-summary {
        font-size: 0.9rem;
        color: var(--text-muted);
        margin-bottom: 20px;
        flex-grow: 1;
    }

    .read-more {
        color: var(--primary-color);
        font-weight: 600;
        font-size: 0.9rem;
        display: inline-flex;
        align-items: center;
        gap: 5px;
    }

    /* Load State */
    .loading-state {
        grid-column: 1 / -1;
        text-align: center;
        padding: 40px;
    }

    .loader {
        border: 4px solid #333;
        border-top: 4px solid var(--primary-color);
        border-radius: 50%;
        width: 40px;
        height: 40px;
        animation: spin 1s linear infinite;
        margin: 0 auto 15px;
    }

    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    /* =========================================
   7. Referral Section
   ========================================= */
    .referral-section {
        background: linear-gradient(0deg, rgba(0, 50, 20, 0.2), rgba(5, 5, 5, 1));
        text-align: center;
    }

    .referral-box {
        border: 1px solid var(--border-color);
        background: rgba(255, 255, 255, 0.02);
        border-radius: 12px;
        padding: 40px;
    }

    .referral-text {
        max-width: 600px;
        margin: 0 auto 40px;
        color: var(--text-muted);
    }

    .exchange-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .exchange-card {
        background: var(--bg-card);
        padding: 30px;
        border-radius: 12px;
        border: 1px solid var(--border-color);
        transition: 0.3s;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        height: 100%;
        position: relative;
        overflow: hidden;
    }

    .exchange-header {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 20px;
        width: 100%;
    }

    .exchange-logo-img {
        width: 40px;
        height: 40px;
        object-fit: contain;
        filter: drop-shadow(0 0 5px rgba(0, 255, 157, 0.2));
    }

    .exchange-card:hover {
        border-color: var(--primary-color);
        background: var(--bg-card-hover);
    }

    .exchange-card a,
    .exchange-card .btn-outline {
        margin-top: auto;
    }

    .exchange-card h3 {
        font-family: var(--font-heading);
        font-size: 1.5rem;
        margin-bottom: 0;
        color: #fff;
    }

    /* Pulse & CTA Buttons */
    .pulse-button {
        padding: 12px 25px;
        border-radius: 6px;
        text-decoration: none;
        display: inline-block;
        text-align: center;
        transition: transform 0.2s, box-shadow 0.2s;
        animation: pulse-border 2s infinite;
        width: 100%;
    }

    .pulse-button:hover {
        transform: scale(1.03);
        box-shadow: 0 0 20px rgba(0, 255, 157, 0.4);
    }

    @keyframes pulse-border {
        0% {
            box-shadow: 0 0 0 0 rgba(0, 255, 157, 0.4);
        }

        70% {
            box-shadow: 0 0 0 10px rgba(0, 255, 157, 0);
        }

        100% {
            box-shadow: 0 0 0 0 rgba(0, 255, 157, 0);
        }
    }

    /* =========================================
   8. Telegram Section
   ========================================= */
    .telegram-section {
        padding: 60px 0;
        text-align: center;
    }

    .telegram-content {
        background: radial-gradient(circle at center, rgba(0, 255, 157, 0.1) 0%, rgba(5, 5, 5, 0) 70%);
        padding: 40px;
        border-radius: 12px;
    }

    .btn-telegram {
        display: inline-flex;
        align-items: center;
        margin-top: 20px;
        padding: 15px 35px;
        background-color: #229ED9;
        color: white;
        font-weight: 700;
        border-radius: 30px;
        font-size: 1.1rem;
        transition: background 0.3s;
    }

    .btn-telegram:hover {
        background-color: #1a8bbf;
    }

    /* =========================================
   9. Footer
   ========================================= */
    .footer {
        border-top: 1px solid var(--border-color);
        padding: 40px 0;
        margin-top: 40px;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
    }

    .footer-logo {
        font-family: var(--font-heading);
        color: var(--primary-color);
        font-size: 1.5rem;
        font-weight: 700;
    }

    .footer-links {
        display: flex;
        gap: 20px;
        font-size: 0.9rem;
        color: var(--text-muted);
    }

    .footer-links a:hover {
        color: var(--text-main);
    }

    /* Hyperlinks in content (TZ Implementation) */
    .article-content a,
    .news-summary a {
        color: var(--primary-color) !important;
        text-decoration: none;
        transition: all 0.3s ease;
        border-bottom: 1px solid transparent;
        font-weight: 600;
    }

    .article-content a:hover,
    .news-summary a:hover {
        border-bottom-color: var(--primary-color);
        text-shadow: 0 0 10px rgba(0, 255, 157, 0.4);
    }

    /* =========================================
   10. Media Queries
   ========================================= */
    @media (max-width: 768px) {
        .nav-links {
            display: none;
            /* Hide for mobile menu logic later */
            position: absolute;
            top: 70px;
            left: 0;
            width: 100%;
            background: var(--bg-dark);
            flex-direction: column;
            padding: 20px;
            border-bottom: 1px solid var(--border-color);
        }

        .nav-links.active {
            display: flex;
        }

        .menu-toggle {
            display: flex;
        }

        .hero-title {
            font-size: 2.5rem;
        }

        .section-title {
            font-size: 2rem;
        }
    }