/* --- 1. VARIABILE & FUNDAȚIE --- */
/* Culorile de brand (--cwlc-orange / --cwlc-green) sunt injectate din panoul
   temei de către evmp_cwlc_theme_colors_css() în cwlc.php — NU hardcoda aici:
   hardcodarea suprascria culegerile din tema. Fallback-urile de mai jos rămân
   ca plasă de siguranță doar în punctele de consum. */
:root {
    --cwlc-dark-card: #1a1d21;
    --cwlc-light-card: #ffffff;
    --cwlc-radius: 16px;
    --cwlc-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.cwlc-f-container, .cwlc-b-container {
    width: 100% !important;
    margin: 40px 0 !important;
    box-sizing: border-box;
}

/* --- 2. GRID SYSTEM (FORȚAT) --- */
.cwlc-f-grid-inner, .cwlc-b-grid-inner {
    display: grid !important;
    gap: 15px;
    width: 100% !important;
}

@media (min-width: 1025px) {
    [class*="cols-1"] .cwlc-f-grid-inner, [class*="cols-1"] .cwlc-b-grid-inner { grid-template-columns: 1fr !important; }
    [class*="cols-2"] .cwlc-f-grid-inner, [class*="cols-2"] .cwlc-b-grid-inner { grid-template-columns: repeat(2, 1fr) !important; }
    [class*="cols-3"] .cwlc-f-grid-inner, [class*="cols-3"] .cwlc-b-grid-inner { grid-template-columns: repeat(3, 1fr) !important; }
    [class*="cols-4"] .cwlc-f-grid-inner, [class*="cols-4"] .cwlc-b-grid-inner { grid-template-columns: repeat(4, 1fr) !important; }
    [class*="cols-5"] .cwlc-f-grid-inner, [class*="cols-5"] .cwlc-b-grid-inner { grid-template-columns: repeat(5, 1fr) !important; }
}
@media (max-width: 1024px) { .cwlc-f-grid-inner, .cwlc-b-grid-inner { grid-template-columns: repeat(2, 1fr) !important; } }
/*@media (max-width: 600px) { .cwlc-f-grid-inner, .cwlc-b-grid-inner { grid-template-columns: 1fr !important; } }*/

/* --- 3. JOCURI (EFECTE PREMIUM) --- */
.cwlc-f-card {
    position: relative;
    background: var(--cwlc-light-card);
    border-radius: var(--cwlc-radius);
    border: 1px solid rgba(0,0,0,0.06);
    transition: var(--cwlc-transition);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Bordura Orange la Hover la Jocuri */
.cwlc-f-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15), 0 0 15px var(--cwlc-primary-glow, rgba(255, 106, 0, 0.5));
    border-color: var(--cwlc-orange, #ff6a00);
    z-index: 5;
}

.cwlc-f-media {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: var(--cwlc-transition);
}

.cwlc-f-card:hover .cwlc-f-media { transform: scale(1.1); }

/* --- 4. BONUSURI (NEON GLOW) --- */
.cwlc-b-card {
    position: relative;
    border-radius: var(--cwlc-radius);
    transition: var(--cwlc-transition);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
}

/* Efect Neon Verde la Hover la Bonusuri */
.cwlc-b-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,255,136,0.2), 0 0 20px var(--cwlc-secondary-glow, rgba(0, 255, 136, 0.5));
    border-color: var(--cwlc-green, #00ff88);
}

/* Skin Highlight - "The Dark Jewel" */
.cwlc-skin-highlight {
    background: linear-gradient(145deg, #0f1215 0%, #232a31 100%) !important;
    border: 2px solid var(--cwlc-green, #00ff88) !important;
}
.cwlc-skin-highlight .cwlc-b-title { color: #fff !important; font-size: 1.4rem; text-shadow: 0 0 10px var(--cwlc-secondary-glow, rgba(0, 255, 136, 0.5)); }

/* --- 5. SKIN OVERLAY (PENTRU AMBELE) --- */
.cwlc-skin-overlay {
    min-height: 320px;
    background-size: cover;
    background-position: center;
    border: none;
}
.cwlc-skin-overlay::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 10%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}
.cwlc-f-overlay-content, .cwlc-b-overlay-content {
    position: relative; z-index: 2; height: 100%; display: flex;
    flex-direction: column; justify-content: flex-end; padding: 25px;
}

/* --- 6. BUTOANE STILIZATE (culori din panoul temei) --- */
.cwlc-f-btn, .cwlc-b-btn {
    text-decoration: none !important; padding: 14px 24px; border-radius: 12px; font-weight: 900;
    text-transform: uppercase; font-size: 13px; transition: var(--cwlc-transition);
    display: block; text-align: center; border: none; cursor: pointer; letter-spacing: 0.5px;
}
.cwlc-f-btn {
    background: var(--cwlc-orange, #ff6a00);
    color: var(--cwlc-btn-text, #fff) !important;
    box-shadow: 0 4px 15px var(--cwlc-primary-glow, rgba(255, 106, 0, 0.5));
}
.cwlc-b-btn {
    background: var(--cwlc-green, #00ff88);
    color: var(--cwlc-btn-text, #000) !important;
    box-shadow: 0 4px 15px var(--cwlc-secondary-glow, rgba(0, 255, 136, 0.5));
}

.cwlc-f-btn:hover, .cwlc-b-btn:hover { filter: brightness(1.2); transform: scale(1.05); }

/* --- 7. TEMA DARK VS LIGHT (CONTRAST) --- */
.cwlc-theme-dark .cwlc-f-card, .cwlc-theme-dark .cwlc-b-card { background: var(--cwlc-dark-card); border-color: rgba(255,255,255,0.1); }
.cwlc-theme-dark .cwlc-b-title, .cwlc-theme-dark .cwlc-f-title { color: #fff !important; }
.cwlc-theme-dark .cwlc-b-description { color: #8a949d !important; }

.cwlc-theme-light .cwlc-b-title, .cwlc-theme-light .cwlc-f-title { color: #1a1d21 !important; }
.cwlc-theme-light .cwlc-b-description { color: #555 !important; }

/* --- 8. SLIDERS & ARROWS (ULTRA-VISIBLE) --- */
.cwlc-layout-slider { padding: 0 50px !important; position: relative; }
.swiper-button-next, .swiper-button-prev {
    background: #ffffff !important; width: 46px !important; height: 46px !important;
    border-radius: 50% !important; box-shadow: 0 6px 20px rgba(0,0,0,0.2) !important;
    color: var(--cwlc-orange, #ff6a00) !important; top: 50% !important; transform: translateY(-50%) !important;
}
.cwlc-b-container .swiper-button-next, .cwlc-b-container .swiper-button-prev { color: var(--cwlc-green, #00ff88) !important; }
.swiper-button-next:after, .swiper-button-prev:after { font-size: 18px !important; font-weight: 900; }

/* --- 9. BADGES & DETALII --- */
.cwlc-f-rtp {
    position: absolute; top: 12px; left: 12px; z-index: 10;
    background: rgba(0,0,0,0.85); color: var(--cwlc-green, #00ff88); padding: 5px 12px;
    border-radius: 8px; font-size: 12px; font-weight: 900; border: 1px solid var(--cwlc-green, #00ff88);
}
.cwlc-b-badge {
    position: absolute; top: 15px; right: -5px; background: #ff0055;
    color: #fff; padding: 6px 15px; border-radius: 4px; font-size: 10px; font-weight: 900;
    box-shadow: 0 4px 10px rgba(255, 0, 85, 0.4); z-index: 5;
}

/*!* --- COMPONENTĂ TABEL ZEN (RESCRIERE) --- *!*/
/*.cwlc-table-w {*/
/*    margin: 35px 0;*/
/*    border-radius: 14px;*/
/*    overflow: hidden; !* Taie colțurile pătrate ale tabelului interior *!*/
/*    border: 1px solid rgba(0,0,0,0.08);*/
/*    transition: all 0.3s ease;*/
/*}*/

/*!* Logică pentru Scroll *!*/
/*.cwlc-t-scroll {*/
/*    overflow-x: auto;*/
/*    -webkit-overflow-scrolling: touch;*/
/*}*/
/*.cwlc-t-scroll .cwlc-dynamic-table {*/
/*    min-width: 650px; !* Forțează scroll-ul pe mobil să nu înghesuie datele *!*/
/*}*/

/*.cwlc-dynamic-table {*/
/*    width: 100%;*/
/*    border-collapse: collapse;*/
/*    font-size: 15px;*/
/*    background: transparent;*/
/*}*/

/*!* --- TEMA LIGHT --- *!*/
/*.cwlc-t-light {*/
/*    background: #ffffff;*/
/*    box-shadow: 0 10px 30px rgba(0,0,0,0.05);*/
/*}*/
/*.cwlc-t-light th {*/
/*    background: #f1f5f9;*/
/*    color: #475569;*/
/*    font-weight: 800;*/
/*    text-transform: uppercase;*/
/*    letter-spacing: 0.5px;*/
/*    border-bottom: 2px solid #e2e8f0;*/
/*}*/
/*.cwlc-t-light td {*/
/*    color: #334155;*/
/*    border-bottom: 1px solid #f1f5f9;*/
/*}*/
/*.cwlc-t-light tbody tr:nth-child(even) { background-color: #f8fafc; } !* Zebra Striping *!*/
/*.cwlc-t-light tbody tr:hover { background-color: #f1f5f9 !important; } !* Hover Effect *!*/

/*!* --- TEMA DARK --- *!*/
/*.cwlc-t-dark {*/
/*    background: #1a1d21;*/
/*    border-color: #2d3238;*/
/*    box-shadow: 0 10px 40px rgba(0,0,0,0.3);*/
/*}*/
/*.cwlc-t-dark th {*/
/*    background: #0f1113;*/
/*    color: #00ff88; !* Verde neon pentru contrast pe negru *!*/
/*    font-weight: 800;*/
/*    border-bottom: 2px solid #2d3238;*/
/*}*/
/*.cwlc-t-dark td {*/
/*    color: #cbd5e1;*/
/*    border-bottom: 1px solid #2d3238;*/
/*}*/
/*.cwlc-t-dark tbody tr:nth-child(even) { background-color: #22262c; }*/
/*.cwlc-t-dark tbody tr:hover { background-color: #2d3238 !important; }*/
/*.cwlc-t-dark td strong { color: #ffffff; }*/

/*!* Celulele comune *!*/
/*.cwlc-dynamic-table th,*/
/*.cwlc-dynamic-table td {*/
/*    padding: 18px 20px;*/
/*    text-align: left;*/
/*}*/

/*!* Fix pentru ecrane foarte mici când scroll este OFF *!*/
/*@media (max-width: 600px) {*/
/*    .cwlc-table-w:not(.cwlc-t-scroll) .cwlc-dynamic-table {*/
/*        font-size: 11px;*/
/*    }*/
/*    .cwlc-table-w:not(.cwlc-t-scroll) th,*/
/*    .cwlc-table-w:not(.cwlc-t-scroll) td {*/
/*        padding: 10px 5px;*/
/*    }*/
/*}*/

/*THE AB OVE STYLES ARE MODERN AND VERY GOOD, BUT I COMMENTED THEM,
JUST TO APPLY SOME OLD UGGLY STYLES
 BECAUSE OF THE REFFERENCE EXAMPLE WHICH NEEDS TO BE REPRODUCED 100%*/
.cwlc-table-w {
    overflow-x: auto;
    margin-bottom: 1.5rem;
}

.cwlc-table-w table {
    width: 100%;

    border-collapse: separate;
    border-spacing: 0;

    /*color: rgb(22, 22, 22);*/
    color: #fefefe;

    table-layout: fixed;
}

/* ================= HEAD ================= */

.cwlc-table-w thead {
    vertical-align: bottom;
}

.cwlc-table-w th {
    font-weight: 600;
    text-align: left;
}

/* ================= CELLS ================= */

.cwlc-table-w th,
.cwlc-table-w td {
    padding: 14px 14px 14px 24px;
    word-break: break-word;
    border-right: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
}

/* left border */
.cwlc-table-w tr th:first-child,
.cwlc-table-w tr td:first-child {
    border-left: 1px solid #dee2e6;
}

/* top border */
.cwlc-table-w thead tr:first-child th {
    border-top: 1px solid #dee2e6;
}

/* rounded corners */
.cwlc-table-w thead tr:first-child th:first-child {
    /*border-top-left-radius: 8px;*/
}

.cwlc-table-w thead tr:first-child th:last-child {
    /*border-top-right-radius: 8px;*/
}

/*!* optional zebra *!*/
/*.cwlc-table-w tbody tr:nth-child(even) {*/
/*    background: rgba(0, 0, 0, 0.02);*/
/*}*/

/*!* optional hover *!*/
/*.cwlc-table-w tbody tr:hover {*/
/*    background: rgba(47, 157, 243, 0.05);*/
/*}*/

/* normal borders */
.cwlc-table-w th,
.cwlc-table-w td {
    /*border-color: #161616;*/
    border-color: #eee;
}

/* outer borders */
.cwlc-table-w tr th:first-child,
.cwlc-table-w tr td:first-child {
    /*border-left: 1px solid #161616;*/
    border-left: 1px solid #eee;
}

.cwlc-table-w thead tr:first-child th {
    /*border-top: 1px solid #161616;*/
    border-left: 1px solid #eee;
}

/* thick separator under header */
/*.cwlc-table-w thead {*/
/*    border-bottom: 3px solid #161616 !important;*/
/*}*/

.cwlc-table-w th {
    /*border-bottom: 3px solid #161616 !important;*/
    border-bottom: 3px solid #eee !important;
}

/*END OF TEMPORRARY UGGLY STYLES*/

/*casinos cards start*/
/* ==========================================================================
   FRONTEND - CARD OPERATOR (ITEM TOP)
   ========================================================================== */
:root {
    --bs-primary: var(--cwlc-primary, #2f9df3); /* Ajustează cu culoarea ta de brand */
    --bs-secondary: var(--cwlc-secondary, #ccd0d4);
    --theme-rounded: 12px;
    --theme-rounded-button: 8px;
    --button_text_color: var(--cwlc-btn-text, #ffffff);
    /*--button_background_color: #332def; !* Verdele de "Bet Now" *!*/
    --button_background_color: linear-gradient(to top, var(--cwlc-primary, #fa4d00), var(--cwlc-primary-glow, #fa5e00));
}

/* Wrapper-ul principal (Grid-ul) */
.cards .item {
    position: relative;
    display: grid;
    grid-template-columns: 210px 230px 1fr 230px;
    grid-gap: 20px;
    align-items: center;
    border-top: 1px solid #3a435b;
    padding: 20px;
}

.cards .item .logo {
    width: 180px;
    height: 90px;
    padding: 20px;
    border-radius: var(--theme-rounded);
    display: flex;
    justify-content: center;
    align-items: center;
}

.cards .item .logo img {
    max-height: 50px;
}

/* Steaua apare DOAR pe item.top */
.cards .item.top .logo svg {
    display: block;
    color: var(--bs-primary);
}

.cards .item .logo svg {
    display: none;
    width: 30px;
    height: 30px;
    position: absolute;
    top: -1px;
    left: 200px; /* Sau unde ai tu nevoie sa stea pe logo */
}

.cards .item .bonus {
    position: relative;
    padding-left: 48px;
    line-height: normal;
    text-align: center;
}

.cards .item .bonus .gift {
    position: absolute;
    left: 0;
    width: 36px;
    height: 36px;
    color: var(--bs-primary);
}

.cards .item .bonus .bonus_value {
    font-weight: 700;
    color: var(--bs-primary);
}

.cards .item .bonus_description {
    font-size: .85rem;
    line-height: normal;
    text-align: center;
}

.cards .item .buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cards .item .buttons .btn {
    display: inline-flex; /* Schimbat din block în inline-flex */
    align-items: center;  /* Centrează vertical textul și săgeata */
    justify-content: center;
    font-weight: 500;
    line-height: 1.5;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all .15s ease-in-out;
    border-radius: 50px !important;
    padding: .5rem 1rem !important;
}

.cards .item .buttons .btn-primary {
    color: var(--button_text_color) !important;
    background: var(--button_background_color) !important;
}

/* Săgeata din buton */
.cards .item .buttons .btn svg {
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.cards .item .buttons .btn:hover svg {
    transform: translateX(3px); /* Mic efect la hover */
}

@media (max-width: 768px){
    .cards .item {
        grid-template-columns: none;
    }

    .cards .item .logo {
        width: 100%;
    }

    .cards .svg svg {
        left: 0 !important;
    }

    .cards .bonus {
        padding-left: 0 !important;
    }

    .cards .item .bonus .gift {
        position: relative;
        display: block;
        margin: 0 auto 20px;
    }
}

/* ==========================================================================
   SHORTCODE OPERATORI / CATEGORII / TAGURI / PROVIDERI / TABELE
   ========================================================================== */
.cwlc-o-container, .cwlc-c-container, .cwlc-p-container {
    width: 100% !important;
    margin: 40px 0 !important;
    box-sizing: border-box;
}

/* --- Grid System pentru noile containere --- */
.cwlc-o-grid-inner, .cwlc-c-grid-inner, .cwlc-p-grid-inner {
    display: grid !important;
    gap: 15px;
    width: 100% !important;
}

@media (min-width: 1025px) {
    [class*="cols-1"] .cwlc-o-grid-inner, [class*="cols-1"] .cwlc-c-grid-inner, [class*="cols-1"] .cwlc-p-grid-inner { grid-template-columns: 1fr !important; }
    [class*="cols-2"] .cwlc-o-grid-inner, [class*="cols-2"] .cwlc-c-grid-inner, [class*="cols-2"] .cwlc-p-grid-inner { grid-template-columns: repeat(2, 1fr) !important; }
    [class*="cols-3"] .cwlc-o-grid-inner, [class*="cols-3"] .cwlc-c-grid-inner, [class*="cols-3"] .cwlc-p-grid-inner { grid-template-columns: repeat(3, 1fr) !important; }
    [class*="cols-4"] .cwlc-o-grid-inner, [class*="cols-4"] .cwlc-c-grid-inner, [class*="cols-4"] .cwlc-p-grid-inner { grid-template-columns: repeat(4, 1fr) !important; }
    [class*="cols-5"] .cwlc-o-grid-inner, [class*="cols-5"] .cwlc-c-grid-inner, [class*="cols-5"] .cwlc-p-grid-inner { grid-template-columns: repeat(5, 1fr) !important; }
    [class*="cols-6"] .cwlc-o-grid-inner, [class*="cols-6"] .cwlc-c-grid-inner, [class*="cols-6"] .cwlc-p-grid-inner { grid-template-columns: repeat(6, 1fr) !important; }
}
@media (max-width: 1024px) {
    .cwlc-o-grid-inner, .cwlc-c-grid-inner, .cwlc-p-grid-inner { grid-template-columns: repeat(2, 1fr) !important; }
}

/* --- Card Operator --- */
.cwlc-o-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--cwlc-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--cwlc-transition);
    position: relative;
}

.cwlc-o-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15), 0 0 20px var(--cwlc-secondary-glow, rgba(0, 255, 136, 0.5));
    border-color: var(--cwlc-green, #00ff88);
}

.cwlc-o-container.cwlc-theme-dark .cwlc-o-card {
    background: var(--cwlc-dark-card);
    border-color: rgba(255,255,255,0.1);
}

.cwlc-o-logo {
    height: 110px;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.cwlc-theme-dark .cwlc-o-logo { background: #14181c; border-color: rgba(255,255,255,0.08); }

.cwlc-o-logo img { max-height: 60px; max-width: 80%; object-fit: contain; }
.cwlc-o-initial, .cwlc-c-initial, .cwlc-p-initial {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    background: linear-gradient(135deg, var(--cwlc-orange, #ff6a00), var(--cwlc-primary-glow, #ff9d4d));
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

.cwlc-o-body { padding: 18px; display: flex; flex-direction: column; flex: 1; }

.cwlc-o-title { font-size: 1.05rem; margin: 0 0 4px 0; color: #1a1d21; }
.cwlc-theme-dark .cwlc-o-title { color: #fff; }

.cwlc-o-type {
    display: inline-block;
    align-self: flex-start;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--cwlc-primary-soft, rgba(47, 157, 243, 0.12));
    color: var(--cwlc-primary, #2f9df3);
    padding: 3px 10px;
    border-radius: 99px;
    margin: 4px 0 8px;
}

.cwlc-o-stars { color: #f5b042; font-size: 0.95rem; margin-bottom: 8px; letter-spacing: 2px; }

.cwlc-o-desc { font-size: 0.85rem; color: #555; line-height: 1.5; margin: 0 0 14px; flex: 1; }
.cwlc-theme-dark .cwlc-o-desc { color: #8a949d; }

.cwlc-o-btn {
    display: block;
    text-align: center;
    text-decoration: none !important;
    background: var(--cwlc-green, #00ff88);
    color: var(--cwlc-btn-text, #000) !important;
    font-weight: 900;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 16px;
    border-radius: 12px;
    transition: var(--cwlc-transition);
    box-shadow: 0 4px 15px var(--cwlc-secondary-glow, rgba(0, 255, 136, 0.5));
}

.cwlc-o-btn:hover { filter: brightness(1.15); transform: scale(1.03); }

/* Skin Overlay Operator */
.cwlc-o-card.cwlc-o-skin-overlay {
    min-height: 280px;
    background-size: cover;
    background-position: center;
    border: none;
    justify-content: flex-end;
}
.cwlc-o-card.cwlc-o-skin-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 15%, rgba(0,0,0,0.4) 55%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}
.cwlc-o-card.cwlc-o-skin-overlay .cwlc-o-body { position: relative; z-index: 2; }
.cwlc-o-card.cwlc-o-skin-overlay .cwlc-o-title { color: #fff; }

/* --- Card Categorie --- */
.cwlc-c-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--cwlc-radius);
    overflow: hidden;
    transition: var(--cwlc-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.cwlc-c-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
    border-color: var(--cwlc-orange, #ff6a00);
}

.cwlc-theme-dark .cwlc-c-card { background: var(--cwlc-dark-card); border-color: rgba(255,255,255,0.1); }

.cwlc-c-media {
    height: 140px;
    background-size: cover;
    background-position: center;
    background-color: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cwlc-theme-dark .cwlc-c-media { background-color: #14181c; }

.cwlc-c-body { padding: 16px; display: flex; flex-direction: column; flex: 1; }

.cwlc-c-title { font-size: 1rem; margin: 0 0 6px 0; }
.cwlc-c-title a { color: inherit; text-decoration: none; }
.cwlc-c-title a:hover { color: var(--cwlc-orange, #ff6a00); }

.cwlc-c-count {
    align-self: flex-start;
    font-size: 11px;
    font-weight: 700;
    color: var(--cwlc-orange, #ff6a00);
    background: rgba(255, 106, 0, 0.1);
    padding: 3px 10px;
    border-radius: 99px;
    margin-bottom: 8px;
}

.cwlc-c-desc { font-size: 0.82rem; color: #666; line-height: 1.5; margin: 0; }
.cwlc-theme-dark .cwlc-c-desc { color: #8a949d; }

/* --- Tag Chips --- */
.cwlc-tags-container {
    margin: 25px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cwlc-tag-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 99px;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1d21;
    text-decoration: none !important;
    transition: var(--cwlc-transition);
}

.cwlc-tag-chip:hover {
    background: var(--cwlc-orange, #ff6a00);
    border-color: var(--cwlc-orange, #ff6a00);
    color: var(--cwlc-btn-text, #fff) !important;
    transform: translateY(-2px);
}

.cwlc-tag-count {
    background: rgba(0,0,0,0.08);
    border-radius: 99px;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
}

.cwlc-tag-chip:hover .cwlc-tag-count { background: rgba(255,255,255,0.25); color: #fff; }

/* --- Card Provider --- */
.cwlc-p-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--cwlc-radius);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    transition: var(--cwlc-transition);
    height: 100%;
}

.cwlc-p-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
    border-color: var(--cwlc-orange, #ff6a00);
}

.cwlc-theme-dark .cwlc-p-card { background: var(--cwlc-dark-card); border-color: rgba(255,255,255,0.1); }

.cwlc-p-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cwlc-theme-dark .cwlc-p-logo { background: #14181c; }

.cwlc-p-logo img { max-height: 48px; max-width: 70%; object-fit: contain; }

.cwlc-p-name { font-size: 0.95rem; margin: 0; }
.cwlc-p-name a { color: inherit; text-decoration: none; }
.cwlc-p-name a:hover { color: var(--cwlc-orange, #ff6a00); }

.cwlc-p-count { font-size: 12px; color: #777; }
.cwlc-theme-dark .cwlc-p-count { color: #8a949d; }

/* --- Tabele (lista) --- */
.cwlc-single-table-block { margin-bottom: 35px; }
.cwlc-table-title { font-size: 1.15rem; margin: 0 0 10px 0; }
.cwlc-table-empty { font-style: italic; opacity: 0.6; }

/* Slider operators — săgețile moștenesc stilul existent .cwlc-f-container */
.cwlc-o-container .swiper-button-next, .cwlc-o-container .swiper-button-prev { color: var(--cwlc-orange, #ff6a00) !important; }

/* ==========================================================================
   SKINURI NOI: NEON / GLASS / SOFT (aplicabile la jocuri, bonusuri, operatori)
   ========================================================================== */

/* --- NEON: fundal închis + glow de brand --- */
.cwlc-skin-neon {
    background: linear-gradient(150deg, #10141a 0%, #1c232d 100%) !important;
    border: 1px solid var(--cwlc-primary-soft, rgba(255, 106, 0, 0.35)) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 10px 28px rgba(0,0,0,0.28) !important;
}
.cwlc-skin-neon:hover {
    border-color: var(--cwlc-orange, #ff6a00) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 16px 38px rgba(0,0,0,0.4), 0 0 26px var(--cwlc-primary-glow, rgba(255, 106, 0, 0.45)) !important;
}
.cwlc-skin-neon .cwlc-f-title,
.cwlc-skin-neon .cwlc-b-title,
.cwlc-skin-neon .cwlc-o-title { color: #fff !important; }
.cwlc-skin-neon .cwlc-f-provider,
.cwlc-skin-neon .cwlc-o-desc,
.cwlc-skin-neon .cwlc-b-description { color: #aab4bd !important; }
.cwlc-skin-neon .cwlc-o-logo { background: rgba(255,255,255,0.05) !important; border-color: rgba(255,255,255,0.08) !important; }
.cwlc-skin-neon .cwlc-o-btn { box-shadow: 0 0 22px var(--cwlc-secondary-glow, rgba(0, 255, 136, 0.4)), 0 4px 14px rgba(0,0,0,0.35) !important; }
.cwlc-skin-neon .cwlc-f-btn { box-shadow: 0 0 22px var(--cwlc-primary-glow, rgba(255, 106, 0, 0.4)), 0 4px 14px rgba(0,0,0,0.35) !important; }
.cwlc-skin-neon .cwlc-b-btn { box-shadow: 0 0 22px var(--cwlc-secondary-glow, rgba(0, 255, 136, 0.4)), 0 4px 14px rgba(0,0,0,0.35) !important; }

/* --- GLASS: glassmorphism (transparent + blur) --- */
.cwlc-skin-glass {
    background: rgba(255,255,255,0.55) !important;
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    backdrop-filter: blur(14px) saturate(160%);
    border: 1px solid rgba(255,255,255,0.75) !important;
    box-shadow: 0 10px 30px rgba(31,38,135,0.14) !important;
}
.cwlc-theme-dark .cwlc-skin-glass {
    background: rgba(255,255,255,0.06) !important;
    border-color: rgba(255,255,255,0.16) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.45) !important;
}
.cwlc-skin-glass:hover {
    border-color: var(--cwlc-orange, #ff6a00) !important;
    box-shadow: 0 16px 36px rgba(31,38,135,0.2) !important;
}
.cwlc-theme-dark .cwlc-skin-glass:hover {
    border-color: var(--cwlc-green, #00ff88) !important;
    box-shadow: 0 16px 36px rgba(0,0,0,0.55), 0 0 24px var(--cwlc-secondary-glow, rgba(0, 255, 136, 0.3)) !important;
}
.cwlc-skin-glass .cwlc-o-logo { background: rgba(255,255,255,0.45) !important; border-color: rgba(255,255,255,0.6) !important; }
.cwlc-skin-glass .cwlc-o-desc { color: #334155 !important; }
.cwlc-theme-dark .cwlc-skin-glass .cwlc-o-logo { background: rgba(255,255,255,0.07) !important; border-color: rgba(255,255,255,0.1) !important; }
.cwlc-theme-dark .cwlc-skin-glass .cwlc-o-desc, .cwlc-theme-dark .cwlc-skin-glass .cwlc-b-description { color: #aab4bd !important; }

/* --- SOFT: tint pastel de brand, aerisit --- */
.cwlc-skin-soft {
    background: var(--cwlc-primary-soft, rgba(255, 106, 0, 0.07)) !important;
    border: 1px solid var(--cwlc-primary-soft, rgba(255, 106, 0, 0.18)) !important;
    box-shadow: none !important;
}
.cwlc-theme-dark .cwlc-skin-soft {
    background: var(--cwlc-primary-soft, rgba(255, 106, 0, 0.16)) !important;
    border-color: rgba(255,255,255,0.12) !important;
}
.cwlc-skin-soft:hover {
    border-color: var(--cwlc-orange, #ff6a00) !important;
    box-shadow: 0 14px 32px rgba(0,0,0,0.1), 0 0 20px var(--cwlc-primary-glow, rgba(255, 106, 0, 0.35)) !important;
}
.cwlc-theme-dark .cwlc-skin-soft:hover {
    border-color: var(--cwlc-green, #00ff88) !important;
    box-shadow: 0 14px 32px rgba(0,0,0,0.4), 0 0 20px var(--cwlc-secondary-glow, rgba(0, 255, 136, 0.3)) !important;
}
.cwlc-skin-soft .cwlc-o-logo { background: rgba(255,255,255,0.5) !important; border-color: var(--cwlc-primary-soft, rgba(255, 106, 0, 0.18)) !important; }
.cwlc-theme-dark .cwlc-skin-soft .cwlc-o-logo { background: rgba(255,255,255,0.06) !important; border-color: rgba(255,255,255,0.1) !important; }