* {
    box-sizing: border-box;
    font-family: Inter, system-ui, sans-serif;
}

body {
    margin: 0;
    background: radial-gradient(1200px 600px at top, #111827, #0b0e13);
    color: #e5e7eb;
}

/* ================= TOPBAR ================= */

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    border-bottom: 1px solid #1f2937;
    backdrop-filter: blur(6px);
    border-bottom: none !important; /* Αφαίρεσε τη γραμμή */
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05); /* Βάλε ένα shadow αν θες διαχωρισμό χωρίς κενά */
}

.logo {
    font-weight: 900;
    font-size: 22px;
}

    .logo span {
        color: #f5a524;
    }

.topbar nav a {
    color: #9ca3af;
    margin-left: 20px;
    text-decoration: none;
    font-weight: 600;
}

    .topbar nav a.active,
    .topbar nav a:hover {
        color: #fff;
    }

/* ================= GLOBAL ================= */
* {
    box-sizing: border-box;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
    margin: 0;
    background: radial-gradient(1200px 600px at top, #111827, #0b0e13);
    color: #e5e7eb;
    min-height: 100vh;
}

/* ================= FILTERS SECTION ================= */
.filters {
    display: flex;
    gap: 15px;
    padding: 25px 40px;
    flex-wrap: wrap;
    align-items: center;
    background: rgba(15, 23, 42, 0.9);
    border-bottom: 1px solid #1f2937;
    backdrop-filter: blur(10px);
    top: 69px; /* Αν το topbar σου είναι 70px, βάλε 69px για να "καβαλήσει" το κενό */
    margin-top: -1px; /* Τραβάει το section 1px πάνω για να εξαφανίσει τη γραμμή */
    border-top: none !important; /* Βεβαιώσου ότι δεν έχει γραμμή πάνω */
}

.filter-group {
    display: flex;
    align-items: center;
}

.filters input,
.filters select {
    background: #0f172a;
    border: 1px solid #1f2937;
    color: #fff;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

    .filters input:focus,
    .filters select:focus {
        border-color: #f5a524;
    }

/* Range Slider Styling */
.range-filters {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #f5a524;
    font-weight: 700;
    font-size: 13px;
    min-width: 240px;
    background: rgba(245, 165, 36, 0.05);
    padding: 8px 15px;
    border-radius: 12px;
    border: 1px solid rgba(245, 165, 36, 0.1);
}

.range-item {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 4px;
}

input[type="range"] {
    accent-color: #f5a524;
    cursor: pointer;
    height: 6px;
}

/* Reset Button */
.btn-reset {
    background: #1f2937;
    color: #fff;
    border: 1px solid #374151;
    padding: 10px 20px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
    transition: all 0.2s;
}

    .btn-reset:hover {
        background: #dc2626;
        border-color: #ef4444;
        transform: translateY(-1px);
    }

/* ================= GRID LAYOUT ================= */
.brands-grid {
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: -1px; /* Εξαφανίζει τη γραμμή ανάμεσα σε φίλτρα και grid */
}

@media (max-width: 900px) {
    .brands-grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .filters {
        padding: 20px;
        justify-content: center;
    }
}

/* ================= BRAND CARD ================= */
.brand-card {
    position: relative;
    background: linear-gradient(180deg, #0f172a, #020617);
    border: 1px solid #1f2937;
    border-radius: 26px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
}

    .brand-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 25px 50px rgba(0,0,0,0.6);
        border-color: rgba(245, 165, 36, 0.3);
    }

        .brand-card:hover .card-actions .btn {
            transform: translateY(-2px);
        }

/* CARD HEADER (Logo & Name Side-by-Side) */
.brand-header-row {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 10px;
    margin-bottom: 22px;
}

.brand-logo {
    position: relative;
    width: 70px;
    height: 70px;
    background: #323c55;
    border-radius: 18px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

    .brand-logo img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

/* Live Chat Dot */
.online-dot {
    position: absolute;
    bottom: -3px;
    right: -3px;
    width: 14px;
    height: 14px;
    background: #16a34a;
    border: 3px solid #020617;
    border-radius: 50%;
    box-shadow: 0 0 8px #16a34a;
}

.brand-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.brand-name {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin: 0;
    letter-spacing: -0.5px;
}

.brand-meta {
    font-size: 11px;
    color: #9ca3af;
    font-weight: 500;
}

.license-text {
    color: #f5a524;
    font-weight: 700;
    text-transform: uppercase;
}

/* ================= BADGES ================= */
.rank-badge {
    position: absolute;
    top: -14px;
    left: 22px;
    background: linear-gradient(135deg, #f5a524, #ffb84d);
    color: #000;
    font-weight: 900;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 13px;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(245, 165, 36, 0.3);
}

.card-badges {
    position: absolute;
    top: 40px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.badge {
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.1);
    letter-spacing: 0.5px;
}

.badge-lang {
    background: #2563eb;
    color: #fff;
}

.badge-vpn-yes {
    background: #16a34a;
    color: #fff;
}

.badge-vpn-no {
    background: #dc2626;
    color: #fff;
}

/* ================= BONUS BOX ================= */
.bonus-box {
    margin-bottom: 22px;
    padding: 20px;
    background: linear-gradient(145deg, #0b1220, #141b2f);
    border: 1px solid rgba(96,165,250,0.15);
    border-radius: 20px;
}

.bonus-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

    .bonus-main span {
        color: #93c5fd;
        font-size: 12px;
        font-weight: 800;
        text-transform: uppercase;
    }

    .bonus-main strong {
        font-size: 32px;
        font-weight: 900;
        color: #60a5fa;
        text-shadow: 0 0 15px rgba(96,165,250,0.3);
    }

.bonus-sub {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

    .bonus-sub div {
        background: #020617;
        border: 1px solid rgba(148,163,184,0.1);
        border-radius: 14px;
        padding: 10px 5px;
        text-align: center;
    }

    .bonus-sub span {
        display: block;
        font-size: 9px;
        color: #9ca3af;
        margin-bottom: 4px;
        text-transform: uppercase;
    }

    .bonus-sub strong {
        display: block;
        font-size: 13px;
        color: #e5e7eb;
    }

/* ================= WITHDRAWALS (FIXED ROW) ================= */
.withdrawals-box {
    padding: 20px;
    background: linear-gradient(145deg, #0b1220, #0f1a2e);
    border: 1px solid rgba(96, 165, 250, 0.15);
    border-radius: 20px;
}

.withdrawals-title {
    color: #93c5fd;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 14px;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
}

.withdrawals-sub {
    display: flex !important;
    gap: 8px;
    justify-content: space-between;
    width: 100%;
}

    .withdrawals-sub div {
        flex: 1;
        background: #020617;
        border: 1px solid rgba(148, 163, 184, 0.1);
        border-radius: 12px;
        padding: 10px 2px;
        text-align: center;
        min-width: 0;
    }

    .withdrawals-sub span {
        display: block;
        font-size: 8px;
        color: #9ca3af;
        text-transform: uppercase;
        margin-bottom: 4px;
    }

    .withdrawals-sub strong {
        display: block;
        font-size: 11px;
        color: #fff;
        white-space: nowrap;
        font-weight: 700;
    }

/* ================= ACTIONS ================= */
.card-actions {
    margin-top: auto;
    padding-top: 22px;
    display: flex;
    gap: 14px;
}

    .card-actions .btn {
        flex: 1;
        text-align: center;
    }

.btn.ghost {
    flex: 1;
    height: 48px; /* ⬅ λίγο πιο άνετο */
    padding: 0 22px;
    display: flex;
    align-items: center; /* ⬅ κάθετο κέντρο */
    justify-content: center; /* ⬅ οριζόντιο κέντρο */

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    line-height: 1; /* ⬅ ΤΟ ΣΗΜΑΝΤΙΚΟ */
    text-align: center;
    border-radius: 14px;
    text-decoration: none;
    background: #f5a524;
    color: #000;
    box-shadow: 0 6px 18px rgba(245,165,36,0.25);
    transition: background 0.2s, box-shadow 0.2s;
}

    .btn.ghost:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(245, 165, 36, 0.4);
    }

/* Ειδικά για το More Info κουμπί */
.btn-info {
    background: #264774 !important;
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(38, 71, 116, 0.45) !important;
}

    .btn-info:hover {
        background: #2d5386 !important;
        box-shadow: 0 8px 22px rgba(38, 71, 116, 0.6) !important;
    }

/* ================= UTILS ================= */

.no-results {
    padding: 60px 20px;
    text-align: center;
    font-size: 16px;
    font-weight: 800;
    color: #9ca3af;
}

    .no-results.hidden {
        display: none;
    }

.results-bar {
    padding: 0 40px;
    margin-top: 16px;
    margin-bottom: 10px;
    font-size: 13px;
    color: #9ca3af;
    font-weight: 600;
}

.no-results {
    padding: 60px 20px;
    text-align: center;
    font-size: 16px;
    font-weight: 800;
    color: #9ca3af;
}

.hidden {
    display: none;
}

/* ========================================================= */
/* ================= TOPBAR ================================ */
/* ========================================================= */

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    border-bottom: 1px solid #1f2937;
    backdrop-filter: blur(6px);
    position: relative;
    z-index: 1000;
}

    .topbar nav {
        display: flex;
        gap: 26px;
    }

.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: #fff;
    user-select: none;
}

/* ========================================================= */
/* ================= MOBILE MENU =========================== */
/* ========================================================= */

@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .topbar nav {
        position: fixed; /* ΣΩΣΤΟ */
        top: 70px;
        right: 16px;
        width: 220px;
        background: rgba(2,6,23,.98);
        border-radius: 18px;
        padding: 18px 20px;
        flex-direction: column;
        gap: 16px;
        display: none;
        box-shadow: 0 25px 70px rgba(0,0,0,.7);
        z-index: 2000;
        animation: slideIn .25s ease;
    }

        .topbar nav.open {
            display: flex;
        }

        .topbar nav a {
            font-size: 15px;
            white-space: nowrap;
        }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(.98);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.logo {
    font-size: 22px;
    font-weight: 900;
    text-decoration: none;
    color: #fff;
}

    .logo span {
        color: #f5a524;
    }

/* Το σωστό design από το brand-details */
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 14px; /* Το σωστό radius */
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    text-decoration: none;
    color: #f5a524; /* --gold */
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    transition: all .35s ease;
}

    .back-btn::before {
        content: "←";
        font-size: 18px;
    }

    .back-btn:hover {
        background: #f5a524;
        color: #000;
        box-shadow: 0 0 20px rgba(245,165,36,0.45);
    }

.badge-new {
    background: linear-gradient(135deg, #00ffcc, #00c2ff);
    color: #000;
    font-weight: 900;
}

.badge-new-corner {
    position: absolute;
    top: -12px;
    right: -12px;
    z-index: 20;
    padding: 6px 14px;
    font-size: 10px;
}

.brand-card {
    padding: 25px 24px 24px 24px; /* αντί για 24px */
}

/* Προσθήκη/Ενημέρωση στο brand-card */
.brand-card {
    position: relative;
    padding: 28px 24px 24px 24px; /* Λίγο παραπάνω top padding για το rank badge */
    /* ... τα υπόλοιπα ως έχουν ... */
}

/* ΕΥΘΥΓΡΑΜΜΙΣΗ HEADER */
.brand-header-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 22px;
    position: relative;
    padding-right: 100px; /* ΚΡΙΣΙΜΟ: Δεσμεύει χώρο για να μην ακουμπάει το όνομα τα badges */
    min-height: 70px;
}

.brand-info {
    flex: 1;
    min-width: 0; /* Απαραίτητο για να δουλέψει το ellipsis */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-name {
    font-size: 19px;
    font-weight: 800;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; /* Βάζει αποσιωπητικά αν το όνομα είναι πολύ μεγάλο */
    margin: 0;
}

/* ΤΑ BADGES ΣΤΑ ΔΕΞΙΑ */
.card-badges {
    position: absolute;
    top: 50%;
    transform: translateY(-50%); /* Τέλεια κάθετη στοίχιση στο κέντρο του header */
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    z-index: 5;
}

/* Διορθωσούλα στο Rank Badge (το "A") */
.rank-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    /* ... τα υπόλοιπα ως έχουν ... */
}

@media (max-width: 768px) {
    /* Το header γίνεται κάθετο για να μπει το κείμενο κάτω από το logo */
    .brand-header-row {
        flex-direction: column !important;
        align-items: flex-start !important;
        padding-right: 0 !important;
        gap: 15px !important;
        position: relative;
    }

    /* Το logo πάνω αριστερά */
    .brand-logo {
        width: 65px !important;
        height: 65px !important;
    }

    /* Το όνομα και το meta κάτω από το logo */
    .brand-info {
        width: 100%;
        text-align: left;
    }

    .brand-name {
        font-size: 19px !important;
        white-space: normal !important; /* Επιτρέπουμε 2η γραμμή αν είναι μεγάλο */
        line-height: 1.2;
    }

    /* ΤΑ TAGS ΠΑΝΩ ΔΕΞΙΑ - Γεμίζουν το κενό */
    .card-badges {
        position: absolute !important;
        top: 0 !important;
        right: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-end !important;
        gap: 6px !important;
        transform: none !important;
    }

    .badge {
        font-size: 9px !important;
        padding: 5px 10px !important;
    }

    /* ΚΟΥΜΠΙΑ - Επαναφορά στην αρχική "τούμπανο" κατάσταση */
    .card-actions {
        flex-direction: row !important; /* Δίπλα δίπλα */
        gap: 10px !important;
    }

        .card-actions .btn.ghost {
            flex: 1 !important;
            height: 48px !important;
            font-size: 13px !important;
            display: flex !important;
            align-items: center;
            justify-content: center;
        }
}

/* FORCE UNLOCK SCROLL */
html, body {
    overflow-y: visible !important;
    overflow-x: hidden !important;
    height: auto !important;
    position: relative !important;
    -webkit-overflow-scrolling: touch; /* Για smooth scroll σε iPhone/Xiaomi */
}

@media (max-width: 768px) {
    .topbar nav {
        /* Αν το μενού είναι κλειστό, βεβαιώσου ότι δεν καλύπτει την οθόνη */
        pointer-events: none; 
    }
    
    .topbar nav.open {
        pointer-events: auto;
        /* Αν θέλεις να σκρολάρεις το ΜΕΝΟΥ αλλά όχι τη σελίδα από πίσω */
        overflow-y: auto; 
    }
}

/* Skeleton Card Styling */
.skeleton-card {
    height: 400px;
    background: #1a1a1a;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    border: 1px solid #333;
}

.skeleton-card::after {
    content: "";
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    transform: translateX(-100%);
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    100% { transform: translateX(100%); }
}

/* ========================================================= */
/* ================= ΔΙΟΡΘΩΣΗ NAVIGATION =================== */
/* ========================================================= */

/* 1. Βασικό στυλ για όλα τα links */
.topbar nav a {
    position: relative;
    transition: color 0.3s ease;
    text-decoration: none;
}

    /* 2. Δημιουργούμε τη γραμμή (::after) για ΟΛΑ τα links */
    .topbar nav a::after {
        content: '';
        position: absolute;
        width: 0; /* Ξεκινάει κλειστή */
        height: 2px;
        bottom: -5px;
        left: 0;
        background-color: #f5a524;
        transition: width 0.3s ease;
    }

/* 3. DESKTOP ANIMATION: Μόνο όταν υπάρχει ποντίκι */
@media (hover: hover) {
    .topbar nav a:hover::after {
        width: 100%;
    }

    .topbar nav a:hover {
        color: #fff;
        text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
    }
}

/* 4. ACTIVE STATE: Η γραμμή είναι μόνιμα στο 100% (ΧΩΡΙΣ border-bottom) */
.topbar nav a.active {
    color: #fff !important;
}

    .topbar nav a.active::after {
        width: 100%; /* Κρατάει τη γραμμή ανοιχτή χωρίς δεύτερο border */
    }

/* 5. MOBILE SETTINGS */
@media (max-width: 768px) {
    /* Στο κινητό βγάζουμε τελείως τη γραμμή για να είναι clean το menu */
    .topbar nav a::after {
        display: none !important;
    }

    .topbar nav a.active {
        color: #f5a524 !important; /* Απλά αλλάζουμε χρώμα στο κείμενο */
        border-bottom: none !important;
    }
}

body {
    margin: 0;
    background: radial-gradient(circle at top, #0c1428, #020617 65%);
    color: #fff;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

    body::before {
        content: "";
        position: fixed;
        inset: -10%;
        background-image: url("../img/logo-home-page-1024x912.webp");
        background-size: cover;
        background-position: center;
        filter: blur(45px);
        opacity: 0.06;
        z-index: -1;
        pointer-events: none;
        transform: var(--bg-move, scale(1.1));
    }

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    position: sticky;
    top: 0;
    z-index: 1100;
    /* Glass Effect */
    background: rgba(2, 6, 23, 0.5) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.filters {
    display: flex;
    gap: 15px;
    padding: 25px 40px;
    flex-wrap: wrap;
    align-items: center;
    /* Επαναφορά σε solid σκούρο background */
    background: #0f172a !important;
    border-bottom: 1px solid #1f2937 !important;
    position: sticky;
    top: 70px;
    z-index: 1000;
    /* Αφαιρούμε το blur από εδώ για καθαρότητα */
    backdrop-filter: none !important;
}

/* ========================================================= */
/* ================= TOPBAR (HEADER) ======================= */
/* ========================================================= */
.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    position: sticky;
    top: 0;
    z-index: 1100;
    background: rgba(2, 6, 23, 0.6) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    /* ΑΦΑΙΡΕΣΗ ΟΛΩΝ ΤΩΝ BORDERS */
    border-bottom: none !important;
    /* Χρησιμοποιούμε shadow για τον διαχωρισμό, που δεν δημιουργεί gaps */
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* ========================================================= */
/* ================= FILTERS SECTION ======================= */
/* ========================================================= */
.filters {
    display: flex;
    gap: 15px;
    padding: 25px 40px;
    flex-wrap: wrap;
    align-items: center;
    background: #0f172a !important;
    position: sticky;
    /* ΤΟ ΚΛΕΙΔΙ: Το βάζουμε να ξεκινάει 1px πιο πάνω από το τέλος του Topbar */
    top: 69px;
    margin-top: -1px;
    z-index: 1000;
    /* ΑΦΑΙΡΕΣΗ BORDERS */
    border-top: none !important;
    border-bottom: none !important;
    /* Shadow αντί για border */
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* ========================================================= */
/* ================= BRANDS GRID =========================== */
/* ========================================================= */
.brands-grid {
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    /* "Τραβάμε" το grid λίγο πάνω να κολλήσει στα φίλτρα */
    margin-top: -1px;
}

/* ========================================================= */
/* ================= FINAL RESPONSIVE FIX ================== */
/* ========================================================= */

/* 1. Desktop Grid (Auto-fill) */
.brands-grid {
    display: grid;
    /* Ανεβάζουμε το min στα 380px για να γεμίζουν το χώρο και να είναι μεγάλες */
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 30px;
    padding: 40px;
    margin-top: -1px;
}

/* 2. Mobile Fix (Για πλάτος κάτω από 768px) */
@media (max-width: 768px) {
    .brands-grid {
        display: flex; /* Καταργούμε το Grid που προκαλεί τη συρρίκνωση */
        flex-direction: column;
        padding: 15px !important; /* Λιγότερο padding για να κερδίσουμε χώρο */
        gap: 20px;
    }

    .brand-card {
        width: 100% !important; /* Η κάρτα γεμίζει την οθόνη */
        max-width: 100% !important;
        min-width: 0 !important; /* Ξεκλειδώνει τη συρρίκνωση */
        margin: 0 !important;
        padding: 20px 15px !important;
        box-sizing: border-box; /* Κρίσιμο για να μην εξέχει η κάρτα */
    }

    /* 3. Εσωτερικά Στοιχεία (Bonus & Withdrawals) */
    /* Τα κάνουμε 3-στηλο grid αλλά με min-width: 0 για να μην σπρώχνουν την κάρτα */
    .bonus-sub, .withdrawals-sub {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
    }

    .bonus-sub div, .withdrawals-sub div {
        min-width: 0 !important; 
        padding: 10px 2px !important;
    }

    /* Μικραίνουμε τα fonts για να μην "σπάνε" σε πολλές γραμμές */
    .brand-name {
        font-size: 18px !important;
        white-space: normal !important;
    }
}

/* Το κουμπί Claim Offer */
.btn.ghost {
    display: flex;
    flex-direction: column; /* Αναγκάζει τα στοιχεία να μπούν το ένα κάτω από το άλλο */
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    padding: 5px 10px;
    height: 52px; /* Σταθερό ύψος για να είναι ομοιόμορφα */
}

/* Η δεύτερη γραμμή (μέσα στην παρένθεση) */
.cta-sub {
    display: block; /* ΑΛΛΑΓΗ ΓΡΑΜΜΗΣ */
    font-size: 9px;  /* Πιο μικρά γράμματα */
    font-weight: 700;
    opacity: 0.9;
    margin-top: 2px;
}