/* Premium Sponsor Site - Ultra Modern Design */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gold-gradient: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    --dark-bg: #0a0e27;
    --card-bg: #151a35;
    --accent-color: #667eea;
    --text-primary: #ffffff;
    --text-secondary: #b8c1ec;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative;
    margin: 0;
    padding: 0;
}

/* Left Sidebar Navigation */
.sidebar-nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 250px;
    height: 100vh;
    background: rgba(21, 26, 53, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    box-shadow: 4px 0 32px rgba(0, 0, 0, 0.3);
    padding-top: 30px;
}

.sidebar-logo {
    width: 100%;
    padding: 20px 15px 30px 15px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.sidebar-logo-img {
    width: 180px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(102, 126, 234, 0.4));
    transition: all 0.3s ease;
    background: transparent;
    display: block;
}

.sidebar-logo-img:hover {
    filter: drop-shadow(0 8px 20px rgba(102, 126, 234, 0.6));
    transform: scale(1.05);
}

.sidebar-menu {
    width: 100%;
    padding: 20px 15px;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    margin-bottom: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 600;
    font-size: 15px;
    position: relative;
    overflow: hidden;
}

.sidebar-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-gradient);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.sidebar-item:hover::before {
    transform: scaleY(1);
}

.sidebar-item i {
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.sidebar-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.3);
    color: var(--text-primary);
    transform: translateX(8px);
}

.sidebar-item.active {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
}

.sidebar-item.active::before {
    transform: scaleY(1);
}

.sidebar-item.active:hover {
    transform: translateX(8px) scale(1.02);
}

/* Main Content Wrapper */
.main-content {
    margin-left: 250px;
    min-height: 100vh;
    position: relative;
}

/* Fixed width containers with space for left sidebar */
.container {
    max-width: 2000px !important;
    margin: 0 auto;
    padding: 0 15px;
}

.container-fluid {
    max-width: 2000px !important;
    margin: 0 auto;
    padding: 0 15px;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top, #1e2a4a 0%, #0a0e27 50%);
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: backgroundMove 20s linear infinite;
    z-index: -1;
}

@keyframes backgroundMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0a0e27;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-gradient);
}

/* Loading Animation */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(102, 126, 234, 0.2);
    border-top-color: #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Header - Glassmorphism */
.header {
    background: rgba(21, 26, 53, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 20px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.8s ease-out;
    position: relative;
}

.header .col-auto:first-child {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.header .container-fluid {
    padding-left: 280px;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.site-logo-img {
    max-height: 60px;
    max-width: 200px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(102, 126, 234, 0.4));
    transition: all 0.4s ease;
    animation: logoFloat 3s ease-in-out infinite;
}

.site-logo-img:hover {
    filter: drop-shadow(0 8px 20px rgba(102, 126, 234, 0.6));
    transform: scale(1.05);
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.logo {
    color: white;
    font-weight: 900;
    margin: 0;
    font-size: 32px;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite, textGlow 2s ease-in-out infinite;
    position: relative;
    text-shadow: 0 0 30px rgba(102, 126, 234, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo:hover {
    letter-spacing: 5px;
    transform: scale(1.05);
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes textGlow {
    0%, 100% {
        filter: brightness(1) drop-shadow(0 0 10px rgba(102, 126, 234, 0.3));
    }
    50% {
        filter: brightness(1.4) drop-shadow(0 0 20px rgba(102, 126, 234, 0.6));
    }
}

/* Header Navigation */
.header-nav {
    display: flex;
    gap: 10px;
    align-items: center;
}

.nav-tab {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-tab i {
    font-size: 16px;
}

.nav-tab:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border-color: rgba(102, 126, 234, 0.5);
    transform: translateY(-2px);
}

.nav-tab.active {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.nav-tab.active:hover {
    transform: translateY(-2px) scale(1.02);
}

/* Header Social Media Icons */
.header-social {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.header-social-icon {
    color: var(--text-secondary);
    font-size: 22px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.header-social-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.header-social-icon:hover::before {
    width: 100px;
    height: 100px;
}

.header-social-icon:hover {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
    transform: translateY(-4px) rotate(5deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.5);
}

.header-social-icon i {
    position: relative;
    z-index: 1;
}

.social-icon-img {
    max-width: 24px;
    max-height: 24px;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

/* YouTube Red Color */
.header-social-icon .fa-youtube {
    color: #FF0000;
}

.header-social-icon:hover .fa-youtube {
    color: #FFFFFF;
}

/* Marquee Section */
.marquee-section {
    background: rgba(21, 26, 53, 0.5);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
}

.marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 2000px;
    margin: 0 auto;
}

.marquee::before,
.marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
}

.marquee::before {
    left: 0;
    background: linear-gradient(to right, rgba(21, 26, 53, 1), transparent);
}

.marquee::after {
    right: 0;
    background: linear-gradient(to left, rgba(21, 26, 53, 1), transparent);
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.marquee-item {
    flex-shrink: 0;
    margin: 0 25px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.marquee-item img {
    height: 45px;
    max-width: 180px;
    object-fit: contain;
    filter: brightness(1);
    transition: filter 0.3s;
    background: transparent;
    mix-blend-mode: screen;
}

.marquee-item:hover {
    transform: scale(1.03);
    background: rgba(255, 255, 255, 0.08);
}

.marquee-item:hover img {
    filter: brightness(1.1);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Section Spacing */
section {
    padding: 60px 0;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Title */
.section-title {
    color: var(--text-primary);
    font-weight: 800;
    font-size: 36px;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 40px;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 10px;
    animation: expandWidth 1s ease-out;
}

@keyframes expandWidth {
    from { width: 0; }
    to { width: 120px; }
}

/* Big Sliders - 2 Column Grid */
.big-sliders {
    background: transparent;
    padding: 60px 0 !important;
}

.big-sliders .container {
    max-width: 2000px;
}

.big-sliders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.slider-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.05);
}

.slider-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 1;
    pointer-events: none;
}

.slider-item:hover::before {
    opacity: 1;
}

.slider-item a {
    display: block;
    position: relative;
}

.slider-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
    background: var(--dark-bg);
}

.slider-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(102, 126, 234, 0.4);
    border-color: rgba(102, 126, 234, 0.5);
}

.slider-item:hover img {
    transform: scale(1.05);
}

/* Responsive for big sliders */
@media (max-width: 768px) {
    .big-sliders-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .slider-item img {
        height: 220px;
    }
}

/* VIP Sponsor Cards - Glassmorphism */
.vip-cards {
    background: transparent;
}

.sponsor-card {
    background: rgba(21, 26, 53, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.sponsor-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg 340deg,
        rgba(102, 126, 234, 0.8) 340deg 360deg
    );
    animation: rotate 6s linear infinite;
    opacity: 0;
    transition: opacity 0.5s;
}

.sponsor-card::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: rgba(21, 26, 53, 0.9);
    border-radius: 18px;
    z-index: 1;
}

.sponsor-card > * {
    position: relative;
    z-index: 2;
}

@keyframes rotate {
    to { transform: rotate(360deg); }
}

.sponsor-card:hover::before {
    opacity: 1;
}

.sponsor-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.5);
}

.card-header-custom {
    background: var(--primary-gradient);
    padding: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sponsor-logo {
    height: 45px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
    background: transparent;
    mix-blend-mode: screen;
}

.stars {
    display: flex;
    gap: 3px;
}

.stars i {
    color: #ffd700;
    font-size: 16px;
    animation: starPulse 1.5s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.1s);
}

@keyframes starPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.card-banner {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.card-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(21, 26, 53, 0.5) 100%);
    z-index: 1;
}

.card-banner img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s ease;
    background: var(--dark-bg);
}

.sponsor-card:hover .card-banner img {
    transform: scale(1.1);
}

.card-body-custom {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 20px;
}

.card-description {
    color: var(--text-secondary);
    font-size: 14px;
    flex: 1;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Buttons - Premium */
.btn-primary {
    background: var(--primary-gradient);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.6);
}

.btn-outline-primary {
    border: 2px solid #667eea;
    color: #667eea;
    background: transparent;
    transition: all 0.4s;
    border-radius: 10px;
    padding: 10px 25px;
    font-weight: 600;
}

.btn-outline-primary:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.5);
}

/* Small Cards */
.small-cards {
    background: transparent;
}

.small-sponsor-card {
    background: rgba(21, 26, 53, 0.6);
    backdrop-filter: blur(15px);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.small-sponsor-card:hover {
    transform: translateY(-8px) scale(1.05);
    background: rgba(21, 26, 53, 0.8);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

.small-sponsor-card img {
    max-height: 65px;
    object-fit: contain;
    margin-bottom: 15px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
    transition: transform 0.3s;
    background: transparent;
    mix-blend-mode: screen;
}

.small-sponsor-card:hover img {
    transform: scale(1.1) rotate(5deg);
}

.small-sponsor-card h6 {
    color: var(--text-primary);
    margin: 12px 0;
    font-size: 15px;
    font-weight: 600;
}

/* Full Width Banners */
.full-width-banners {
    background: transparent;
    padding: 40px 0 !important;
}

.full-width-banners .container {
    max-width: 2000px !important;
    padding: 0 15px;
}

.full-width-banners a {
    display: block;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.05);
}

.full-width-banners img {
    transition: transform 0.6s ease;
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    background: var(--dark-bg);
}

.full-width-banners a:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(102, 126, 234, 0.4);
    border-color: rgba(102, 126, 234, 0.5);
}

.full-width-banners a:hover img {
    transform: scale(1.02);
}

/* Footer */
.footer {
    background: rgba(21, 26, 53, 0.8);
    backdrop-filter: blur(20px);
    padding: 40px 0;
    color: var(--text-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 80px;
}

.footer p {
    margin: 0;
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.footer-social-icon {
    color: var(--text-secondary);
    font-size: 22px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.footer-social-icon:hover {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    /* Hide sidebar on mobile */
    .sidebar-nav {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    /* Remove left margin from main content */
    .main-content {
        margin-left: 0;
    }

    .container, .container-fluid {
        max-width: 100% !important;
        padding: 0 15px;
    }

    .header .col-md-4 {
        text-align: center !important;
        margin-bottom: 10px;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .header .d-flex {
        flex-direction: column;
        align-items: center !important;
    }

    .header-nav {
        margin-top: 15px;
        justify-content: center;
    }

    .header-social {
        margin: 10px 0;
    }

    .header-social-icon {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    .logo {
        font-size: 24px;
    }

    .section-title {
        font-size: 28px;
    }

    .marquee {
        max-width: 100%;
    }

    .marquee-item {
        margin: 0 15px;
        padding: 8px 15px;
    }

    .marquee-item img {
        height: 45px;
        max-width: 140px;
    }

    .sponsor-card {
        margin-bottom: 20px;
    }

    .full-width-banners img {
        height: 200px;
    }
}

/* Fade in animation on scroll */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Header Styling */
.mobile-header {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
}

.mobile-header-top {
    text-align: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(21, 26, 53, 0.5);
}

.mobile-header-top .logo {
    font-size: 24px;
    letter-spacing: 2px;
    margin: 0;
}

.mobile-header-middle {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(21, 26, 53, 0.3);
}

.mobile-header-middle .header-social {
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 15px;
    padding: 0 10px;
}

.mobile-header-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 15px 10px;
    background: rgba(21, 26, 53, 0.5);
    flex-wrap: wrap;
}

.mobile-header-bottom .user-points {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--gold-gradient);
    border-radius: 20px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.mobile-header-bottom .user-points i {
    font-size: 18px;
}

.mobile-header-bottom .points-value {
    font-size: 16px;
    color: #000;
}

.mobile-header-bottom .points-label {
    font-size: 11px;
    color: rgba(0, 0, 0, 0.7);
}

/* Mobile VIP Cards - 2 per row */
@media (max-width: 768px) {
    .header .container-fluid {
        padding-left: 15px;
    }

    .header .col-auto:first-child {
        position: static;
        transform: none;
    }

    /* VIP Sponsors - 2 columns on mobile */
    .vip-cards .row .col-lg-4 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }

    /* Big Sliders - 1 column on mobile */
    .big-sliders-grid {
        grid-template-columns: 1fr !important;
    }

    .slider-item img {
        height: 220px !important;
    }

    /* Full Width Banners - Same height as VIP cards on mobile */
    .full-width-banners img {
        height: 220px !important;
        object-fit: cover;
    }

    /* Marquee - Mobile friendly sizing */
    .marquee-section {
        padding: 15px 0;
    }

    .marquee-item {
        padding: 10px 15px;
        margin: 0 10px;
    }

    .marquee-item img {
        height: 40px !important;
        max-width: 120px !important;
    }
}

/* Very small mobile - single column for VIP */
@media (max-width: 480px) {
    .vip-cards .row .col-lg-4 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .mobile-header-top .logo {
        font-size: 20px;
    }

    .header-social-icon {
        width: 36px !important;
        height: 36px !important;
        font-size: 16px !important;
    }
}
