.footer li a {
    text-decoration: none;
    color: #cbd5e1;
    transition: 0.3s;
}

.footer li a:hover {
    color: #00e0ff;
}



/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ================= ROOT (PRO LEVEL) ================= */
:root {
    --sidebar-width: 100px;
    --sidebar-mobile: 60px;
}

/* ================= BODY ================= */
body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(180deg, #050608, #0b0f1a);
    color: #fff;
    overflow-x: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
     user-select: none;
}

/* ================= SIDEBAR ================= */
.side-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: linear-gradient(180deg, #1b2543, #172335);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 35px;
    z-index: 1000;
}


/* == LOGO === */
.logo {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;   /* 👈 THIS FIXES YOUR ISSUE */
}

.logo img {
    width: 100px;
    height: auto;
}


/* ===== MENU ==== */
.menu {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;  /* 👈 pushes icons down */
}

.menu-user {
    margin-top: auto;
    margin-bottom: 20px;
}


/* ===== MENU ITEMS ===== */
.menu-item {
    width: 60px;
    height: 60px;
    margin: 6px 0;
    border-radius: 16px;
    background: #101827;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #02bf6d;
    font-size: 22px;
    transition: 0.3s;
}

.menu-item:hover {
    background: linear-gradient(135deg, #3fd5e2, #00ffa6);
    color: #000
}

@media (max-width: 768px) {

    .side-menu {
        width: 65px;
        padding-top: 15px;
        align-items: center;
    }

    .logo {
        margin-bottom: 10px;
    }

    .logo img {
        width: 48px;
    }

    .menu {
        gap: 6px;
    }

    .menu-item {
        width: 50px;
        height: 50px;
        font-size: 18px;
        border-radius: 14px;
    }

    .content-shell {
        margin-left: 70px;
        
        padding: 15px;
    }
}
    /* CONTENT SHIFT */
   .content-shell {
    margin-left: var(--sidebar-width);
    width: calc(100% - var(--sidebar-width));
    padding: 20px;
}



/* ================= TOGGLE BUTTON ================= */
.menu-bottom {
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 20px;
}

/* ================= HEADER ================= */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    height: auto;
}
.header img {
    width: auto !important;
    height: 60px !important;
}

/* FIX HEADER LOGO SIZE */
/* ===== FORCE LOGO SIZE FIX ===== */
.header .logo-text img {
    height: 45px !important;
    width: auto !important;
    max-height: none !important;
}

@media (max-width: 768px) {

    .logo-text img {
        height: 30px;  /* 👈 mobile smaller */
    }

}
@media (max-width: 768px) {

    .content-shell {
        padding-left: 0px !important;
    }

    .header-left {
        margin-left: -10px;
    }

}
/* BELL */
.bell-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #00ffa6, #3fd5e2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* ================= NOTIFICATION ================= */
.bell {
    width: 45px;
    height: 45px;

    border-radius: 50%;

    background: linear-gradient(135deg, #00ffa6, #3fd5e2);

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    cursor: pointer;

    box-shadow: 0 0 15px rgba(0,255,166,0.6);
}

.bell i {
    color: #000;
    font-size: 18px;
}
.bell:hover {
    transform: scale(1.1);
}
/* RED DOT */
.bell .dot {
    position: absolute;
    top: 5px;
    right: 6px;

    width: 8px;
    height: 8px;

    background: red;
    border-radius: 50%;
}

/* ================= CARD ================= */

/* ================= BUTTON ================= */
.btn {
    display: block;
    background: linear-gradient(135deg, #3fd5e2, #00ffa6);
    padding: 8px;
    border-radius: 6px;
    margin-top: 10px;
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

/* ================= DROPDOWN FIX ================= */

/* ================= GLOBAL WIDTH FIX ================= */


/* ================= PULSE ================= */


/* DASHBOARD GRID FIX */
.container-fluid {
    margin-left: 220px; /* sidebar width */
    padding: 20px;
}


/* HERO TEXT */
.hero-text {
    margin-bottom: 15px;
}

/* MAIN HEADING */
.hero-text h1 {
    font-size: 22px;
    letter-spacing: 2px;
    color: #7df9ff;
    text-transform: uppercase;
}

/* SUB TEXT */
.hero-text p {
    font-size: 13px;
    color: #9ca3af;
    margin-top: 5px;
}



/* TRUSTED GRID */
.trusted-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

/* CARD */
.trusted-card {
    background: linear-gradient(180deg, #1a2238, #12182b);
    border-radius: 12px;
    padding: 15px;
    position: relative;
    transition: 0.3s;
}

.trusted-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0,255,170,0.3);
}

/* LOGO */
.trusted-card .logo {
    width: 100%;
    height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
}

/* SPONSOR BADGE */
.sponsor {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #00ffa6;
    color: #000;
    padding: 3px 8px;
    font-size: 10px;
    border-radius: 5px;
}

/* TEXT */
.trusted-card h4 {
    font-size: 14px;
}

.trusted-card p {
    font-size: 12px;
    color: #aaa;
}

/* RATING */
.rating {
    color: gold;
    font-size: 12px;
    margin-top: 5px;
}

/* BUTTONS */
.btns {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.btn-detail {
    background: #2a3555;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
}

.btn-go {
    background: linear-gradient(135deg, #3fd5e2, #00ffa6);
    padding: 5px 10px;
    border-radius: 5px;
    color: #000;
}



/* LOGO SMALL */
.logo {
    width: 80px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 8px;
}


/* ================= TICKER ================= */


/* ================= END TICKER ================= */

/* CARD STYLE */


/* TABLE */
.table {
    border-radius: 10px;
    overflow: hidden;
}

.table th {
    background: #111827;
}

/* BUTTONS */
.btn {
    border-radius: 8px;
}


/* GRID */
.trusted-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

/* CARD */
.trusted-card {
    background: linear-gradient(180deg, #0f172a, #020617);
    border-radius: 18px;
    padding: 18px;
    position: relative;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.05);
}

/* HOVER GLOW */
.trusted-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 20px rgba(0,255,200,0.3);
}

/* TOP LOGO */
/* BANNER */
.trusted-banner {
    width: 100%;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 10px;
}

.trusted-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* IMPORTANT */
}

/* BADGE */
.badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #0ea5e9;
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
}

/* TITLE */
.trusted-card h3 {
    font-size: 16px;
    margin-top: 10px;
}

/* BONUS */
.bonus {
    font-size: 13px;
    color: #9ca3af;
    margin: 5px 0;
}

/* STARS */
.stars {
    color: gold;
    font-size: 14px;
    margin-bottom: 10px;
}

.stars span {
    color: #fff;
    margin-left: 6px;
}

/* BUTTON GROUP */
.btn-group {
    display: flex;
    gap: 10px;
}

/* DETAIL BUTTON */
.btn-detail {
    flex: 1;
    background: #1f2937;
    color: #fff;
    padding: 10px;
    border-radius: 6px;
    text-align: center;
    text-decoration: none;
}

/* GO BUTTON */
.btn-go {
    flex: 1;
    background: linear-gradient(135deg, #3fd5e2, #00ffa6);
    color: #020303;
    padding: 6px;
    border-radius: 6px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
}


/* DROPDOWN MENU */
.dropdown-menu {
    position: fixed;
    left: 110px;       /* just after sidebar */
    bottom: 90px;      /* above toggle button */

    width: 200px;
    background: #111827;
    border-radius: 12px;
    padding: 10px;

    display: none;
    flex-direction: column;
    gap: 8px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 9999;
}

/* SHOW */
.dropdown-menu.active {
    display: flex;
}

/* LINKS */
.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 10px;
    border-radius: 8px;
    color: #9ca3af;
    text-decoration: none;

    transition: 0.3s;
}

/* HOVER */
.dropdown-menu a:hover {
    background: linear-gradient(135deg, #3fd5e2, #00ffa6);
    color: #000;
}

/* LEFT SIDE */
.trusted-left {
    display: flex;
    flex-direction: column;
    color: #7dd3fc;
    font-size: 20px;
    letter-spacing: 2px;
    font-weight: 600;

}

/* LINE */
.title-line {
    width: 120px;
    height: 3px;
    margin-top: 6px;
    background: linear-gradient(90deg, #07cf93, transparent);
    border-radius: 10px;
}

/* BADGE */
.trusted-badge {
    font-size: 14px;
    color: #9ca3af;
    background: rgba(255,255,255,0.05);
    padding: 6px 12px;
    border-radius: 8px;
    white-space: nowrap;
}

/* FIX OVERFLOW ISSUE */

#trustedArea {
    margin-top: 15px;
}


.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

/* RESPONSIVE */
@media(max-width:1024px){
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px){
    .grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:768px){
    
    .trusted-header {
        width: 100%;
        padding-right: 10px;
    }

}

/* MAKE SURE CLICK WORKS */
.menu-bottom {
    cursor: pointer;
    z-index: 2000;
    position: relative;
}

/* DROPDOWN MENU */
.dropdown-menu {
    position: fixed;
    left: 110px;       /* just after sidebar */
    bottom: 90px;      /* above toggle button */

    width: 200px;
    background: #111827;
    border-radius: 12px;
    padding: 10px;

    display: none;
    flex-direction: column;
    gap: 8px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 9999;
}

/* SHOW */
.dropdown-menu.active {
    display: flex;
}

/* LINKS */
.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 10px;
    border-radius: 8px;
    color: #9ca3af;
    text-decoration: none;

    transition: 0.3s;
}

/* HOVER */
.dropdown-menu a:hover {
    background: linear-gradient(135deg, #3fd5e2, #00ffa6);
    color: #000;
}



/* ACTIVE */
.dropdown-menu.active {
    display: block;
}

.menu-bottom {
    pointer-events: auto;
}

/* CARD GRID */
#allSitesArea {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

/* CARD */
.site-card {
    background: linear-gradient(145deg, #0b1220, #0f1b2e);
    border-radius: 15px;
    padding: 15px;
    transition: 0.3s;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.site-card:hover {
    transform: translateY(-5px);
}

/* IMAGE */
.site-img img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
}

/* CONTENT */
.site-content {
    text-align: center;
    margin-top: 10px;
}

.site-content h4 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 5px;
}

.bonus {
    color: #9ca3af;
    font-size: 13px;
}

/* RATING */
.rating {
    color: gold;
    margin: 8px 0;
}

/* BUTTON */
.btn-go {
    display: inline-block;
    padding: 8px 15px;
    background: #14f1c6;
    color: #000;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}


/* 🔥 MODAL BACKGROUND */
/* BACKDROP */
.search-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(20px);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;

    z-index: 9999;
}

/* ACTIVE */
.search-modal.active {
    opacity: 1;
    visibility: visible;
}

/* BOX */
.search-box {
    width: 600px;
    max-width: 95%;

    background: linear-gradient(145deg, #0b1220, #0f1b2e);
    border-radius: 20px;

    box-shadow: 
        0 0 40px rgba(0,255,200,0.15),
        inset 0 0 20px rgba(255,255,255,0.02);

    padding: 20px;

    transform: scale(0.9);
    transition: 0.3s ease;
}

/* POP ANIMATION */
.search-modal.active .search-box {
    transform: scale(1);
}

/* HEADER */
.search-header {
    display: flex;
    align-items: center;
    gap: 10px;

    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    padding: 10px 15px;

    border: 1px solid rgba(255,255,255,0.05);
}

/* ICON */
.search-header i {
    color: #14f1c6;
}

/* INPUT */
.search-header input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    color: #fff;
    font-size: 15px;
}

/* CLOSE */
.search-close {
    cursor: pointer;
    color: #aaa;
    font-size: 14px;
}

/* RESULTS */
.search-results {
    margin-top: 15px;
    max-height: 400px;
    overflow-y: auto;
}

/* ITEM */
.search-item {
    display: flex;
    gap: 12px;
    padding: 10px;
    border-radius: 12px;
    transition: 0.2s;
    cursor: pointer;
}

.search-item:hover {
    background: rgba(255,255,255,0.05);
}

/* IMAGE */
.search-item img {
    width: 55px;
    height: 55px;
    border-radius: 10px;
    object-fit: cover;
}

/* TEXT */
.search-item h4 {
    margin: 0;
    font-size: 14px;
    color: #fff;
}

.search-item p {
    font-size: 12px;
    color: #9ca3af;
}

/* BUTTON */
.search-item a {
    font-size: 12px;
    color: #14f1c6;
    text-decoration: none;
}


/* BACKDROP */
.auth-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(15px);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 9999;
}

.auth-modal.active {
    opacity: 1;
    visibility: visible;
}

/* BOX */
.auth-box {
    width: 350px;
    background: linear-gradient(145deg,#0b1220,#0f1b2e);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0,255,200,0.2);

    transform: scale(0.9);
    transition: 0.3s;
}

.auth-modal.active .auth-box {
    transform: scale(1);
}

/* CLOSE */
.auth-close {
    position: absolute;
    right: 20px;
    top: 15px;
    cursor: pointer;
    color: #aaa;
}

/* TABS */
.auth-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.auth-tabs button {
    flex: 1;
    padding: 10px;
    border-radius: 10px;
    border: none;
    background: #0b1220;
    color: #9ca3af;
    cursor: pointer;
    transition: 0.3s;
}

/* ACTIVE BUTTON */
.auth-tabs button.active {
    background: linear-gradient(90deg,#00ffa6,#3fd5e2);
    color: #000;
    font-weight: bold;
    box-shadow: 0 0 10px #00ffa6;
}

/* HOVER */
.auth-tabs button:hover {
    transform: scale(1.05);
}

/* INPUT */
.auth-box input {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 10px;
    border: none;
    background: #111827;
    color: #fff;
}

/* BUTTON */
.auth-box button {
    width: 100%;
    padding: 10px;
    background: #14f1c6;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
}


.profile-menu {
    position: absolute;
    left: 70px;
    bottom: 120px;
    background: #0f172a;
    padding: 12px;
    border-radius: 10px;
    display: none;
    min-width: 150px;
    box-shadow: 0 0 15px rgba(0,255,170,0.3);
}

.profile-menu.show {
    display: block;
}

.profile-menu p {
    color: #22d3ee;
    margin-bottom: 8px;
    font-size: 14px;
}

.profile-menu a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 6px 0;
}


/* ===== MODAL BACKDROP ===== */
.auth-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* ===== BOX ===== */
.auth-box {
    width: 360px;
    padding: 25px;
    border-radius: 20px;

    background: linear-gradient(145deg, #0f172a, #020617);
    box-shadow: 0 0 30px rgba(0,255,200,0.2);

    animation: fadeInScale 0.4s ease;
}

/* ===== HEADER ===== */
.auth-header {
    text-align: center;
    margin-bottom: 15px;
}

.auth-header h2 {
    color: #22d3ee;
    font-size: 20px;
}

.auth-header p {
    font-size: 12px;
    color: #9ca3af;
}

/* ===== TABS ===== */
.auth-tabs {
    display: flex;
    margin-bottom: 15px;
}

.auth-tabs button {
    flex: 1;
    padding: 10px;
    border: none;
    cursor: pointer;
    background: #111827;
    color: #9ca3af;
    border-radius: 10px;
}

.auth-tabs .active {
    background: linear-gradient(90deg, #22d3ee, #00ffa6);
    color: #000;
}

/* ===== INPUT GROUP ===== */
.input-group {
    display: flex;
    align-items: center;
    background: #020617;
    margin-bottom: 10px;
    border-radius: 10px;
    padding: 10px;
    border: 1px solid rgba(255,255,255,0.05);
}

.input-group i {
    color: #22d3ee;
    margin-right: 10px;
}

.input-group input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    width: 100%;
}

/* ===== Auth Model BUTTON ===== */
.auth-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;

    background: linear-gradient(90deg, #00ffa6, #22d3ee);
    color: #000;
    font-weight: bold;
    cursor: pointer;

    transition: 0.3s;
}

.auth-btn:hover {
    transform: scale(1.05);
}

/* CLOSE */
.auth-close {
    position: absolute;
    right: 15px;
    top: 10px;
    cursor: pointer;
    color: #fff;
}

/* ANIMATION */
@keyframes fadeInScale {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}


.auth-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.auth-modal.active {
    opacity: 1;
    visibility: visible;
}






.profile-menu {
    position: absolute;
    left: 70px;
    bottom: 100px;
    background: #0b1220;
    padding: 10px;
    border-radius: 10px;
    display: none;
    min-width: 160px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    z-index: 9999;
}

.profile-menu a {
    display: block;
    padding: 8px;
    color: #fff;
    text-decoration: none;
}

.profile-menu a:hover {
    background: #1f2937;
}


.profile-container {
    max-width: 400px;
    margin: 60px auto;
    background: #0b1220;
    padding: 25px;
    border-radius: 12px;
    color: #fff;
}

.profile-box input {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: none;
}

.profile-box button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(90deg,#00ffa6,#3fd5e2);
    border: none;
    border-radius: 8px;
    font-weight: bold;
}


/* DASHBOARD */
.dash-container {
    display: flex;
    min-height: 100vh;
    background: #050b18;
}

/* SIDEBAR */
.dash-sidebar {
    width: 220px;
    background: #0b1220;
    padding: 20px;
    color: #fff;
}

.dash-sidebar h3 {
    margin-bottom: 20px;
}

.dash-sidebar a {
    display: block;
    padding: 10px;
    margin-bottom: 8px;
    color: #9ca3af;
    text-decoration: none;
    border-radius: 8px;
}

.dash-sidebar a:hover {
    background: #1f2937;
    color: #00ffa6;
}

/* CONTENT */
.dash-content {
    flex: 1;
    padding: 30px;
    color: #fff;
}

/* CARDS */
.dash-cards {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

/* ================= CARD ================= */
.card {
    background: #0f172a;
    border-radius: 12px;
    overflow: hidden;
}

.card img {
    width: 100%;
    height: auto;
}


/* ===== PROFILE PREMIUM UI ===== */

.profile-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top, #0b1220, #020617);
}

/* CARD */
.profile-card {
    width: 380px;
    padding: 30px;
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0,255,166,0.2);
    box-shadow: 0 0 40px rgba(0,255,166,0.2);
    text-align: center;
    color: #fff;
}

/* AVATAR */
.profile-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: linear-gradient(135deg,#00ffa6,#3fd5e2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #000;
}

/* INPUT GROUP */
.input-group {
    text-align: left;
    margin-bottom: 15px;
}

.input-group label {
    font-size: 13px;
    color: #9ca3af;
}

.input-group input {
    width: 100%;
    padding: 12px;
    margin-top: 5px;
    border-radius: 10px;
    border: none;
    background: #020617;
    color: #fff;
    outline: none;
    transition: 0.3s;
}

.input-group input:focus {
    border: 1px solid #00ffa6;
    box-shadow: 0 0 10px #00ffa6;
}

/* BUTTON */
.btn-update {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(90deg,#00ffa6,#3fd5e2);
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn-update:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #00ffa6;
}

/* BACK */
.back-btn {
    display: inline-block;
    margin-top: 15px;
    color: #00ffa6;
    text-decoration: none;
    font-size: 14px;
}

.back-btn:hover {
    text-decoration: underline;
}


.success-msg {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(90deg,#00ffa6,#3fd5e2);
    color: #000;
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: 600;
    z-index: 9999;
}


.dash-sidebar a[href="index.php"] {
    background: linear-gradient(90deg,#00ffa6,#3fd5e2);
    color: #000;
    font-weight: bold;
}

/* FORGOT PASSWORD */
.forgot-link {
    text-align: right;
    margin-top: 8px;
}

.forgot-link a {
    font-size: 13px;
    color: #00ffa6;
    text-decoration: none;
}

.forgot-link a:hover {
    text-decoration: underline;
}


#toast {
    position: fixed;
    top: 20px;
    right: 20px;
    min-width: 250px;
    padding: 12px 18px;
    border-radius: 10px;
    color: #000;
    font-weight: 600;
    z-index: 9999;
    display: none;
    transition: all 0.4s ease;
}


button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* User Name Suggestions */

.suggestions {
    background: #0b1220;
    border-radius: 8px;
    margin-top: 5px;
    padding: 5px;
}

.suggestions div {
    padding: 6px;
    cursor: pointer;
    color: #ccc;
}

.suggestions div:hover {
    background: #1f2937;
    color: #00ffa6;
}

/* End Of User Name Suggestions */

#sponsoredArea {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* 🔥 Sponsored Slider */
.sponsored-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 0;
    scroll-behavior: smooth;
}

.sponsored-slider::-webkit-scrollbar {
    height: 6px;
}

.sponsored-slider::-webkit-scrollbar-thumb {
    background: #00ffc8;
    border-radius: 10px;
}

/* 🔥 Sponsored Card */
.sponsored-card {
    min-width: 260px;
    background: linear-gradient(145deg, #0b0f1a, #111827);
    border-radius: 16px;
    padding: 12px;
    position: relative;
    transition: 0.3s ease;
    box-shadow: 0 0 0 transparent;
}

/* 🔥 Glow Effect */
.sponsored-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    background: linear-gradient(45deg, #00ffc8, #00bfff, #00ffc8);
    z-index: -1;
    opacity: 0;
    transition: 0.3s;
}

.sponsored-card:hover::before {
    opacity: 1;
}

.sponsored-card:hover {
    transform: translateY(-6px) scale(1.02);
}

/* IMAGE */
.sponsored-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 10px;
}

/* TITLE */
.sponsored-title {
    color: #fff;
    font-weight: 600;
    margin-top: 8px;
}

/* BONUS */
.sponsored-bonus {
    color: #00ffc8;
    font-size: 14px;
}

/* BUTTON */
.sponsored-btn {
    display: inline-block;
    margin-top: 10px;
    background: #00ffc8;
    color: #000;
    padding: 6px 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

/* Sponsored Slider Responsive */

/* 🔥 Slider Container */
.sponsored-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
}

/* Hide scrollbar */
.sponsored-slider::-webkit-scrollbar {
    display: none;
}

/* 🔥 Card */
.sponsored-card {
    min-width: 260px;
    background: linear-gradient(145deg, #0b0f1a, #111827);
    border-radius: 16px;
    padding: 12px;
    position: relative;
    transition: 0.3s ease;
    flex-shrink: 0;
}

/* 🔥 Glow */
.sponsored-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 0 20px #00ffc8;
}

/* IMAGE */
.sponsored-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 10px;
}

/* 🔥 BADGE */
.sponsored-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: linear-gradient(45deg, #ff9800, #ff3d00);
    color: #fff;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: bold;
}

/* TEXT */
.sponsored-title {
    color: #fff;
    font-weight: 600;
    margin-top: 8px;
}

.sponsored-bonus {
    color: #00ffc8;
    font-size: 14px;
}

/* BUTTON */
.sponsored-btn {
    display: inline-block;
    margin-top: 10px;
    background: #00ffc8;
    color: #000;
    padding: 6px 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

.banner-scroll-wrapper {
    overflow: hidden;
    width: 100%;
    margin: 20px 0;
}

.banner-scroll {
    display: flex;
    gap: 15px;
    animation: scrollBanner 25s linear infinite;
}

.banner-item {
    min-width: 300px;
    height: 120px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
}

.banner-item img,
.banner-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

@keyframes scrollBanner {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.auth-modal {
    z-index: 9999;
}

.auth-box {
    position: relative;
    z-index: 10000;
}


.success-msg {
    background: linear-gradient(90deg,#00ffa6,#3fd5e2);
    color: #000;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-weight: 600;
}

#registerMsg {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 500;
}


#forgotModal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

#forgotModal.active {
    opacity: 1;
    visibility: visible;
}


.auth-modal {
    z-index: 1000;
}


/* 🔥 PROFESSIONAL TOAST */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;

    background: linear-gradient(135deg, #00f5a0, #00d9f5);
    color: #000;

    padding: 12px 18px;
    border-radius: 8px;

    font-size: 14px;
    font-weight: 500;

    max-width: 300px;
    width: auto;

    opacity: 0;
    transform: translateY(20px);

    transition: all 0.4s ease;

    z-index: 999999;

    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* SHOW */
.toast.show {
    opacity: 1;
    transform: translateY(0);
}

/* ERROR */
.toast.error {
    background: linear-gradient(135deg, #ff4b5c, #ff7a7a);
    color: #fff;
}




/* 🔥 FOOTER FIXED DESIGN */

/* 🔥 PREMIUM FOOTER */

/* MAIN FOOTER */
.footer {
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(180deg, #0b0f1a, #05080f);

    border-top: 2px solid #00ffd0; /* 🔥 TOP LINE */
}
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;

    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.08); /* 🔥 BOTTOM LINE */
}

.footer {
    overflow: hidden;
}

/* LEFT SIDE */
/* LEFT SIDE */
.footer-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

/* RIGHT SIDE FIX */
/* RIGHT SIDE (MAIN FIX) */
.footer-right {
    display: flex;
    flex-direction: column;   /* 🔥 vertical stack */
    gap: 12px;
    align-items: flex-end;
}

.footer-left p {
    margin: 0;
    color: #aaa;
    font-size: 14px;
}

/* ICON */
.footer-icon {
    width: 80px;
    height: 50px;
    background: linear-gradient(135deg, #00ffd0, #0099ff);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 22px;
    box-shadow: 0 0 20px rgba(0,255,208,0.4);
}

/* RIGHT */
.footer-right {
    position: relative !important;
    right: 0;
    top: 0;
}

/* BADGES */
.footer-right .badge {
    padding: 10px 16px;
    border-radius: 12px;
    border: 1px solid #00ffd0;
    background: rgba(0,255,208,0.1);
    backdrop-filter: blur(6px);
    font-size: 13px;
}

.footer-right .red {
    border-color: #ff4d4d;
    background: rgba(255,0,0,0.1);
}

/* GRID */
.footer-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* COLUMN */
.footer-col h4 {
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col li {
    margin: 8px 0;
    color: #aaa;
    transition: 0.3s;
    cursor: pointer;
}

.footer-col li:hover {
    color: #00ffd0;
    transform: translateX(5px);
}

/* SOCIAL BUTTONS */
.socials {
    display: flex;
    gap: 12px;
}

/* BASE */
.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    transition: 0.3s;
    text-decoration: none;
}

/* TELEGRAM */
.social-btn.telegram {
    background: linear-gradient(135deg, #0088cc, #00c6ff);
}

.social-btn.telegram:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px #00c6ff;
}

/* X (TWITTER) */
.social-btn.twitter {
    background: linear-gradient(135deg, #000, #333);
}

.social-btn.twitter:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px #555;
}

/* INSTAGRAM */
.social-btn.instagram {
    background: linear-gradient(135deg, #ff0066, #ffcc00);
}

.social-btn.instagram:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px #ff0066;
}

.social-btn:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, #00ffd0, #0099ff);
}

/* BOTTOM */
.footer-bottom {
    text-align: center;
    margin-top: 35px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #777;
}



.badge-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: 0.3s;
}

/* BLUE BUTTON */
.badge-btn.blue {
    border: 1px solid #00aaff;
    background: rgba(0,170,255,0.1);
    color: #4fc3ff;
}

.badge-btn.blue:hover {
    background: rgba(0,170,255,0.2);
}

/* RED BUTTON */
.badge-btn.red {
    border: 1px solid #ff4d4d;
    background: rgba(255,0,0,0.1);
    color: #ff6b6b;
}

.badge-btn.red:hover {
    background: rgba(255,0,0,0.2);
}



.footer-icon {
    box-shadow: 0 0 25px rgba(0,255,208,0.5);
}


@media (max-width:768px){
    .container div[class*="grid"]{
        grid-template-columns: 1fr !important;
    }
}

/* HEART TEXT LOGO */
.logo-text img {
    height: 80px;
    width: auto;
    
}

/* Align properly */
.header-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}



/* ===== FOOTER EXTRA SECTION ===== */
/* ===== FOOTER EXTRA SECTION ===== */
.footer-extra {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
}

.footer-extra p {
    color: #9ca3af;
    font-size: 14px;
    max-width: 800px;
    margin: 10px auto;
    line-height: 1.6;
}

.footer-extra strong {
    color: #ffffff;
}

.dmca-badge {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dmca-badge img {
    width: 100px !important;
    height: auto !important;
    max-width: 120px !important;
    display: block;
    margin: 0 auto;
}




/* END */

/* ============================================================================ =================== */

.page-title {
    font-size: 28px;
    margin-bottom: 10px;
}

.subtitle {
    color: #aaa;
    margin-bottom: 20px;
}

.feature-stats {
    display: flex;
    gap: 40px;
    margin: 20px 0;
    font-size: 20px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

.feature-card {
    background: #0b0f1a;
    padding: 25px;
    border-radius: 12px;
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border: 1px solid #00ffd0;
}

/* ================= CONTENT ================= */

.page-title {
    margin-bottom: 20px;
}

.sites-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

.site-card {
    background: #0b0f1a;
    padding: 20px;
    border-radius: 12px;
}

.main-content {
    width: 100%;
}


/* ================= ADS ================= */
.top-ads {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns like Betlink */
    gap: 12px;
    margin-top: 15px;
}

/* EACH AD CARD */
.ad-card {
    border-radius: 12px;
    overflow: hidden;
}

/* IMAGE */
.ad-card img,
.ad-card video {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* ================= FINAL MOBILE FIX ================= */

@media (max-width: 768px) {

    .side-menu {
        width: var(--sidebar-mobile);
    }

    .content-shell {
        width: calc(100% - var(--sidebar-width));
    margin-left: var(--sidebar-width);
    overflow-x: hidden;
    }

    .top-ads {
        display: flex;
        flex-direction: column;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .logo img {
        width: 50px;
    }

    .menu-item {
        width: 45px;
        height: 45px;
    }
}

/* ===== MOBILE FOOTER FIX ===== */
@media (max-width: 768px) {

    .footer {
       width: 100%;
        margin-left: 0;
        padding: 20px 15px;
    }

    /* GRID FIX INSIDE FOOTER */
    .footer-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr); /* 🔥 2 COLUMN */
        gap: 20px;
        width: 100%
    }

 /* BUTTON AREA (18+ + BeGambleAware) */
    .footer-badges {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    .footer-badges a,
    .footer-badges span {
        flex: 1;
        text-align: center;
        padding: 10px;
        font-size: 13px;
    }
    /* GRID → SINGLE COLUMN */
    .footer-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .footer-right {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        width: 100%;
    }

    .footer-bottom {
        text-align: center;
        font-size: 13px;
        margin-top: 15px;
    }
}
/* ===== PERFECT MOBILE FIX ===== */
@media (max-width: 768px) {

    .content-shell {
        margin-left: 60px;
        width: calc(100% - 60px);
    }

    .footer {
        width: 100% !important;
        margin-left: 0 !important;
        padding: 20px 15px;
    }
}
/* FEATURE PAGE */
.feature-page {
    padding: 20px;
}

.feature-title {
    font-size: 24px;
    margin-bottom: 10px;
}

.feature-sub {
    color: #aaa;
    margin-bottom: 20px;
}

/* GRID */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* CARD */
.feature-card {
    background: #0f172a;
    padding: 20px;
    border-radius: 14px;
    text-align: center;
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: #16213e;
}

/* ICON */
.feature-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 10px;
    background: linear-gradient(135deg, #3fd5e2, #00ffa6);
    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    color: black;
    font-size: 20px;
}

/* MOBILE */
@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


.feature-page {
    padding: 20px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.feature-card {
    background: #0f172a;
    padding: 18px;
    border-radius: 14px;
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
    display: block;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: #16213e;
}

.feature-card i {
    font-size: 10px;
    margin-bottom: 10px;
    color: #00ffa6;
}

.feature-card h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.feature-card p {
    font-size: 13px;
    color: #aaa;
}

/* MOBILE */
@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

table {
    background: #0f172a;
    color: #fff;
    border-collapse: collapse;
}

table th, table td {
    padding: 10px;
    border: 1px solid #222;
}

table a {
    color: #00ffa6;
    text-decoration: none;
}

/* ================= MOBILE GRID CONTROL ================= */
@media (max-width: 768px) {

    /* ⭐ Trusted → 2 per row */
    .trusted-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* 🌐 All Sites → 3 per row */
    .allsites-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }

}
.allsites-grid img {
    height: 60px;
    object-fit: contain;
}
/* ================= MOBILE FONT FIX ================= */
@media (max-width: 768px) {

    /* 🌐 ALL SITES TEXT SMALL */
    .allsites-grid .site-card h3,
    .allsites-grid .site-card h4 {
        font-size: 12px !important;
        line-height: 1.2;
    }

    .allsites-grid .site-card p {
        font-size: 10px !important;
        color: #aaa;
    }

}

/* ================= MOBILE FOOTER 2-COLUMN ================= */
@media (max-width: 768px) {

    .footer-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr); /* 👈 2 column */
        gap: 20px;
    }

    .footer-col {
        width: 100%;
    }

    .socials {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-top: 10px;
    }

    /* TEXT SIZE ADJUST */
    .footer-col h4 {
        font-size: 14px;
    }

    .footer-col ul li {
        font-size: 13px;
    }
}
/* ================= MOBILE BANNER FIX ================= */
@media (max-width: 768px) {

    .banner-scroll-wrapper {
        overflow-x: auto;
        overflow-y: hidden;

        padding: 0 10px;
        margin-right: 0;

        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }

    .banner-scroll {
        display: flex;
        flex-wrap: nowrap;
        gap: 12px;
    }

}
@media (max-width: 768px) {

    .banner-card {
        flex: 0 0 100%;   /* 👈 FULL WIDTH */
        max-width: 100%;

        scroll-snap-align: start;
        border-radius: 12px;
        overflow: hidden;
    }

}
.banner-card img {
    width: 100%;
    height: auto;
    display: block;
}
.banner-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

/* ===== FIX ALL MEDIA CUT ===== */
img,
video {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    display: block;
}

/* REMOVE ALL HEIGHT LIMIT */
.ad-card,
.banner-card,
.site-card,
.post-card {
    height: auto !important;
    max-height: none !important;
    overflow: hidden;
}

@media (max-width: 768px) {

    img,
    video {
        width: 100%;
        height: auto !important;
        max-height: none !important;
        object-fit: contain !important;
    }

}

/* PREVENT PARENT CUT */
.post-card,
.banner-card,
.ad-card {
    overflow: visible !important;
}

video {
    width: 100%;
    height: auto;
    display: block;
}


/* ===== STOP HORIZONTAL SCROLL ===== */
html, body {
    overflow-x: hidden !important;
    max-width: 100%;
}

@media (max-width: 768px) {
    .content-shell {
        width: calc(100% - 70px); /* sidebar width */
        margin-left: 70px;
        padding: 10px;
    }
}


/* ================= TOP TICKER ================= */
/* ================= TOP TICKER CLEAN ================= */
.top-ticker {
    margin-left: var(--sidebar-width);
    padding: 8px 15px;
    margin-top: -20px;
    margin-right: 200px;
    background: linear-gradient(90deg, #00ffa6, #3fd5e2);
    border-radius: 30px;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* SCROLL AREA */
.ticker-track {
    display: flex;
    gap: 40px;

    white-space: nowrap;
    animation: tickerMove 25s linear infinite;
}

/* TEXT */
.ticker-item {
    font-size: 14px;
    color: #000;
    font-weight: 500;
}

/* ICON */
.ticker-icon {
    margin-right: 10px;
    font-size: 14px;
}

/* ANIMATION */
@keyframes tickerMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {

    .top-ticker {
        margin-left: 70px;
        margin-right: 10px;
        padding: 6px 10px;
        border-radius: 20px;
    }

    .ticker-item {
        font-size: 12px;
    }
}

/* ===== FORCE FIX BANNER ===== */
/* WRAPPER */
/* WRAPPER */
.banner-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
}

/* TRACK */
.banner-track {
    display: flex;
    gap: 12px;
    width: max-content;
    animation: scrollBanner 30s linear infinite;
    animation-delay: 0.5s; /* 👈 FIX */
}

/* ITEM */
.banner-item {
    flex: 0 0 300px;
}

/* IMAGE */
.banner-item video,
.banner-item img {
    width: 100%;
    height: auto;
    display: block;
   
}

/* ANIMATION */
@keyframes scrollBanner {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* MOBILE FIX */
@media (max-width: 768px) {
    
    .banner-slider {
        display: block !important;
        min-height: 100px;
    }

    .banner-track {
        animation-duration: 45s; /* smoother */
        display: flex !important;
        width: max-content;
    }

    
/* PAUSE ON HOVER */
.banner-slider:hover .banner-track {
    animation-play-state: paused;
}


/* =============Sponsored=========== */
.sponsored-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Desktop */
    gap: 20px;
}

/* Mobile */
@media (max-width: 768px) {
    .sponsored-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .sponsored-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Card fix */
.sponsored-grid .card {
    width: 100%;
    min-width: 0;
}

/* ===== MOBILE (SLIDER) ===== */
@media (max-width: 768px) {

    #sponsoredArea {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        gap: 10px;
        padding-left: 10px;
    }

    #sponsoredArea .card {
        height: auto !important;
        display: flex;
        flex-direction: column;
    }

    /* 🔥 IMAGE FIX (important) */
    #sponsoredArea .card img {
    width: 100%;
        height: auto;
        display: block;
    }
    
    #sponsoredArea .card-body {
    padding: 10px;
    flex: unset !important;
}
#sponsoredArea .sponsored-card {
    flex: 0 0 48% !important;
    max-width: 48% !important;
}
}