    /* ============================================================
       ROOT VARIABLES - Dark Theme
       ============================================================ */
    :root {
        /* Primary Colors */
        --color-primary: #F0C13D;
        --color-primary-dark: #d4a832;
        --color-primary-light: #f5d67a;
        --color-primary-hover: #e0b032;
        
        /* Background Colors */
        --bg-primary: #0a0e14;
        --bg-secondary: #141a21;
        --bg-tertiary: #1a222b;
        --bg-card: #1a222b;
        --bg-card-hover: #24303d;
        --bg-dark: #060a0e;
        --bg-light: #2a3645;
        --bg-overlay: rgba(0, 0, 0, 0.3);
        
        /* Text Colors */
        --text-primary: #e8edf2;
        --text-secondary: #c8d0d8;
        --text-muted: #8899aa;
        --text-dark: #e8edf2;
        --text-light: #667788;
        
        /* Border Colors */
        --border-light: #434f5e;
        --border-gray: #24303d;
        --border-dark: #1a222b;
        --border-primary: #F0C13D;
        
        /* Shadow Colors */
        --shadow-light: rgba(0, 0, 0, 0.3);
        --shadow-medium: rgba(0, 0, 0, 0.5);
        --shadow-dark: rgba(0, 0, 0, 0.7);
        --shadow-glow: rgba(240, 193, 61, 0.15);
        
        /* Spacing */
        --space-xs: 0.25rem;
        --space-sm: 0.5rem;
        --space-md: 1rem;
        --space-lg: 1.5rem;
        --space-xl: 2rem;
        
        /* Typography */
        --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        --font-size-xs: 0.65rem;
        --font-size-sm: 0.75rem;
        --font-size-base: 0.85rem;
        --font-size-md: 0.9rem;
        --font-size-lg: 1.1rem;
        --font-size-xl: 1.3rem;
        --font-size-2xl: 1.5rem;
        --font-size-3xl: 2.8rem;
        
        /* Border Radius */
        --radius-sm: 4px;
        --radius-md: 8px;
        --radius-lg: 12px;
        --radius-xl: 16px;
        --radius-full: 9999px;
        
        /* Transitions */
        --transition-fast: 0.15s ease;
        --transition-medium: 0.25s ease;
        --transition-slow: 0.35s ease;
        --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    /* ============================================================
       CONTAINER
       ============================================================ */
    .dst-container {
        padding: var(--space-sm);
        max-width: 1400px;
        margin: 0 auto;
        width: 100%;
    }

    /* ============================================================
       HEADER SECTION - Dark Theme
       ============================================================ */
    .dst-heading {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 30px;
        flex-wrap: wrap;
        gap: 15px;
    }

    .dst-heading h2 {
        font-size: clamp(1rem, 2vw, 1.8rem);
        font-weight: 700;
        color: var(--text-primary);
        letter-spacing: -0.02em;
        position: relative;
        display: inline-block;
    }

    .dst-heading h2::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 60%;
        height: 3px;
        background: var(--color-primary);
        border-radius: var(--radius-full);
    }

    .dst-heading .dst-btn {
        background: var(--bg-secondary);
        border: 2px solid var(--color-primary);
        color: var(--text-primary);
        padding: 10px 28px;
        border-radius: var(--radius-full);
        font-size: clamp(0.85rem, 1.2vw, 1rem);
        font-weight: 600;
        cursor: pointer;
        transition: all var(--transition-medium);
        white-space: nowrap;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
    }

    .dst-heading .dst-btn:hover {
        background: var(--color-primary);
        color: var(--bg-primary);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(240, 193, 61, 0.3);
    }

    .dst-heading .dst-btn:active {
        transform: translateY(0) scale(0.97);
    }

    .dst-heading .dst-btn i {
        transition: transform var(--transition-medium);
    }

    .dst-heading .dst-btn:hover i {
        transform: translateX(4px);
    }

    /* Refresh button */
    .dst-heading .refresh-btn {
        background: var(--bg-secondary);
        border: 1px solid var(--border-light);
        color: var(--text-secondary);
        padding: 8px 18px;
        border-radius: var(--radius-full);
        font-size: var(--font-size-sm);
        font-weight: 500;
        cursor: pointer;
        transition: all var(--transition-medium);
        display: inline-flex;
        align-items: center;
        gap: 6px;
        text-decoration: none;
    }

    .dst-heading .refresh-btn:hover {
        background: var(--bg-card-hover);
        color: var(--text-primary);
        border-color: var(--color-primary);
        transform: translateY(-2px);
    }

    .dst-heading .refresh-btn i {
        transition: transform var(--transition-medium);
    }

    .dst-heading .refresh-btn:hover i {
        transform: rotate(180deg);
    }

    .dst-heading .header-actions {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }

    /* ============================================================
       CARDS GRID - Dark Theme
       ============================================================ */
    .dst-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 10px;
    }

    /* ============================================================
       INDIVIDUAL CARD - Dark Theme
       ============================================================ */
    .dst-card {
        background: transparent;
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: 0 4px 16px var(--shadow-light);
        transition: all var(--transition-medium);
        border: 1px solid var(--border-light);
        cursor: pointer;
        aspect-ratio: 2 / 3;
        display: flex;
        flex-direction: column;
        text-decoration: none;
        color: inherit;
        position: relative;
    }

    .dst-card::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: var(--radius-lg);
        opacity: 0;
        transition: opacity var(--transition-medium);
        pointer-events: none;
        z-index: 1;
    }

    .dst-card:hover::before {
        opacity: 1;
    }

    .dst-card:hover {
        transform: translateY(-6px);
        /* box-shadow: 0 16px 40px var(--shadow-medium), 0 0 30px var(--shadow-glow); */
        border-color: var(--color-primary);
        /* background: var(--bg-card-hover); */
    }

    .dst-card:active {
        transform: scale(0.97);
    }

    /* ============================================================
       FEATURED BADGE
       ============================================================ */
    .dst-featured-badge {
        position: absolute;
        top: 10px;
        right: 10px;
        background: var(--color-primary);
        color: var(--bg-primary);
        font-size: 0.55rem;
        font-weight: 700;
        padding: 3px 10px;
        border-radius: var(--radius-full);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        z-index: 5;
        box-shadow: 0 2px 10px rgba(240, 193, 61, 0.4);
        pointer-events: none;
    }

    /* ============================================================
       IMAGE SECTION - Dark Theme
       ============================================================ */
    .dst-img-wrapper {
        flex: 0 0 55%;
        min-height: 100px;
        overflow: hidden;
        position: relative;
        background: var(--bg-tertiary);
    }

    .dst-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform var(--transition-slow);
    }

    .dst-card:hover .dst-img-wrapper img {
        transform: scale(1.08);
    }

    /* Image overlay gradient */
    .dst-img-wrapper::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 40%;
        pointer-events: none;
        z-index: 1;
    }

    /* ============================================================
       CARD CONTENT - Dark Theme
       ============================================================ */
    .dst-content {
        flex: 1;
        padding: 8px 12px 14px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* background: var(--bg-card); */
        transition: background var(--transition-fast);
        position: relative;
        z-index: 2;
    }

    .dst-card:hover .dst-content {
        background: var(--bg-card-hover);
    }

    .dst-content h3 {
        font-size: clamp(0.8rem, 1vw, 1rem);
        font-weight: 700;
        color: var(--text-primary);
        margin-bottom: 3px;
        letter-spacing: -0.01em;
        line-height: 1.2;
        transition: color var(--transition-fast);
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .dst-content h3 .flag-icon {
        font-size: clamp(0.8rem, 1vw, 1.1rem);
        color: var(--text-muted);
    }

    .dst-card:hover .dst-content h3 {
        color: var(--color-primary);
    }

    .dst-content p {
        font-size: clamp(0.65rem, 0.85vw, 0.9rem);
        color: var(--text-muted);
        line-height: 1.4;
        margin-bottom: 1px;
        transition: color var(--transition-fast);
    }

    .dst-card:hover .dst-content p {
        color: var(--text-secondary);
    }

    .dst-content p:last-child {
        margin-bottom: 0;
    }

    .dst-content .dst-region {
        font-size: clamp(0.55rem, 0.7vw, 0.7rem);
        color: var(--text-light);
        margin-top: 2px;
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .dst-content .dst-region i {
        font-size: 0.5rem;
        color: var(--color-primary);
    }

    /* ============================================================
       CARD ARROW INDICATOR
       ============================================================ */
    .dst-card .dst-arrow {
        position: absolute;
        bottom: 12px;
        right: 14px;
        color: var(--text-muted);
        font-size: 0.7rem;
        opacity: 0;
        transform: translateX(-8px);
        transition: all var(--transition-medium);
        z-index: 3;
    }

    .dst-card:hover .dst-arrow {
        opacity: 1;
        transform: translateX(0);
        color: var(--color-primary);
    }

    /* ============================================================
       RESPONSIVE BREAKPOINTS
       ============================================================ */

    /* Tablet: 3 cards per row */
    @media (max-width: 1024px) {
        .dst-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }

        .dst-card {
            aspect-ratio: 1 / 1.1;
        }

        .dst-img-wrapper {
            flex: 0 0 50%;
        }

        .dst-content {
            padding: 14px 16px 16px;
        }

        .dst-content h3 {
            font-size: clamp(1rem, 2vw, 1.3rem);
        }

        .dst-content p {
            font-size: clamp(0.65rem, 1.2vw, 0.85rem);
        }
    }

    /* Mobile: 2 cards per row */
    @media (max-width: 640px) {
        .dst-heading {
            margin-bottom: 20px;
            flex-direction: column;
            align-items: flex-start;
        }

        .dst-heading h2 {
            font-size: clamp(1.1rem, 4vw, 1.8rem);
        }

        .dst-heading h2::after {
            width: 40%;
            height: 2px;
        }

        .dst-heading .dst-btn {
            padding: 8px 18px;
            font-size: clamp(0.7rem, 2.5vw, 0.8rem);
        }

        .dst-heading .refresh-btn {
            padding: 6px 14px;
            font-size: clamp(0.6rem, 2vw, 0.7rem);
        }

        .dst-heading .header-actions {
            width: 100%;
            justify-content: flex-start;
        }

        .dst-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 14px;
        }

        .dst-card {
            aspect-ratio: 1 / 1.05;
            border-radius: var(--radius-md);
        }

        .dst-img-wrapper {
            flex: 0 0 45%;
        }

        .dst-content {
            padding: 12px 14px 14px;
        }

        .dst-content h3 {
            font-size: clamp(0.9rem, 3.8vw, 1.1rem);
            margin-bottom: 2px;
        }

        .dst-content p {
            font-size: clamp(0.6rem, 2.2vw, 0.75rem);
        }

        .dst-card:hover {
            transform: translateY(-4px);
        }
        
        .dst-card .dst-arrow {
            bottom: 8px;
            right: 10px;
            font-size: 0.6rem;
        }

        .dst-featured-badge {
            font-size: 0.45rem;
            padding: 2px 8px;
            top: 6px;
            right: 6px;
        }
    }

    /* Very small phones (under 400px) */
    @media (max-width: 400px) {
        .dst-grid {
            gap: 10px;
        }

        .dst-card {
            aspect-ratio: 1 / 1;
            /* border-radius: var(--radius-sm); */
        }

        .dst-img-wrapper {
            flex: 0 0 42%;
        }

        .dst-content {
            padding: 10px 12px 12px;
        }

        .dst-content h3 {
            font-size: clamp(0.8rem, 4vw, 0.95rem);
            margin-bottom: 2px;
        }

        .dst-content p {
            font-size: clamp(0.5rem, 2.5vw, 0.65rem);
        }
        
        .dst-card .dst-arrow {
            display: none;
        }
    }

    /* Extra small: 1 card per row */
    @media (max-width: 340px) {
        .dst-grid {
            grid-template-columns: 1fr;
            gap: 12px;
        }
        
        .dst-card {
            aspect-ratio: 1 / 0.7;
            max-width: 400px;
            margin: 0 auto;
            flex-direction: row;
        }
        
        .dst-img-wrapper {
            flex: 0 0 40%;
        }
        
        .dst-content {
            padding: 12px 16px;
            justify-content: center;
        }
        
        .dst-content h3 {
            font-size: clamp(0.9rem, 4vw, 1rem);
        }
        
        .dst-content p {
            font-size: clamp(0.6rem, 2.5vw, 0.7rem);
        }
    }

    /* ============================================================
       SCROLLBAR - Dark Theme
       ============================================================ */
    ::-webkit-scrollbar {
        width: 6px;
        height: 6px;
    }

    ::-webkit-scrollbar-track {
        background: var(--bg-secondary);
        border-radius: var(--radius-sm);
    }

    ::-webkit-scrollbar-thumb {
        background: var(--color-primary);
        border-radius: var(--radius-sm);
    }

    ::-webkit-scrollbar-thumb:hover {
        background: var(--color-primary-dark);
    }

    /* ============================================================
       SELECTION
       ============================================================ */
    ::selection {
        background: var(--color-primary);
        color: var(--bg-primary);
    }

    ::-moz-selection {
        background: var(--color-primary);
        color: var(--bg-primary);
    }

    /* ============================================================
       ANIMATIONS
       ============================================================ */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .dst-card {
        animation: fadeInUp 0.5s ease forwards;
        opacity: 0;
    }

    .dst-card:nth-child(1) { animation-delay: 0.05s; }
    .dst-card:nth-child(2) { animation-delay: 0.10s; }
    .dst-card:nth-child(3) { animation-delay: 0.15s; }
    .dst-card:nth-child(4) { animation-delay: 0.20s; }
    .dst-card:nth-child(5) { animation-delay: 0.25s; }
    .dst-card:nth-child(6) { animation-delay: 0.30s; }

    /* ============================================================
       FOOTER NOTE
       ============================================================ */
    .dst-footer-note {
        margin-top: 2.5rem;
        text-align: center;
        font-size: var(--font-size-sm);
        color: var(--text-muted);
        letter-spacing: 0.3px;
    }

    .dst-footer-note i {
        color: var(--color-primary);
        margin-right: 6px;
    }

    .dst-footer-note span {
        display: inline-block;
        background: var(--bg-secondary);
        padding: 0.2rem 0.8rem;
        border-radius: var(--radius-full);
        margin: 0 3px;
        font-weight: 600;
        color: var(--text-secondary);
        border: 1px solid var(--border-light);
    }

    @media (max-width: 640px) {
        .dst-footer-note {
            font-size: var(--font-size-xs);
            margin-top: 1.8rem;
        }
        .dst-footer-note span {
            padding: 0.15rem 0.6rem;
        }
    }

    /* ============================================================
       LOADING STATE
       ============================================================ */
    .dst-loading {
        text-align: center;
        padding: 60px 20px;
        color: var(--text-muted);
        grid-column: 1 / -1;
    }

    .dst-loading i {
        font-size: 2rem;
        color: var(--color-primary);
        animation: spin 1s linear infinite;
        display: block;
        margin-bottom: 12px;
    }

    @keyframes spin {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }

    .dst-error {
        text-align: center;
        padding: 60px 20px;
        color: #f87171;
        grid-column: 1 / -1;
    }

    .dst-error i {
        font-size: 2.5rem;
        display: block;
        margin-bottom: 12px;
    }