/**
 * Slot Icardi - Main Stylesheet
 * Uzay Temalı Slot Casino Platform
 */

/* ========================================
   1. CSS Variables & Color Palette - Elite Gold & Space Gray
   ======================================== */
:root {
    /* Renk Paleti - Sarı ve Uzay Grisi Kontrastlı Tema */
    --color-space-black: #0f1117;
    --color-space-gray: #1a1d29;
    --color-dark-bg: #252936;
    --color-darker-bg: #2d3142;
    --color-gold: #FFD700;
    --color-gold-light: #FFE55C;
    --color-gold-dark: #D4AF37;
    --color-amber: #FFC107;
    --color-light-gray: #b8c0cc;
    --color-medium-gray: #8891a0;
    --color-white: #ffffff;
    --color-accent: #FFD700;
    
    /* Tipografi */
    --font-heading: 'Orbitron', 'Bebas Neue', sans-serif;
    --font-body: 'Inter', 'Poppins', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    
    /* Shadows - Elite Gold Effects */
    --shadow-gold: 0 4px 12px rgba(255, 215, 0, 0.25);
    --shadow-gold-intense: 0 8px 24px rgba(255, 215, 0, 0.35);
    --shadow-dark: 0 4px 12px rgba(0, 0, 0, 0.6);
    --shadow-deep: 0 8px 24px rgba(0, 0, 0, 0.8);
}

/* ========================================
   2. Reset & Base Styles
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: 
        radial-gradient(ellipse at top, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        linear-gradient(135deg, #0f1117 0%, #1a1d29 50%, #0f1117 100%);
    background-attachment: fixed;
    color: var(--color-light-gray);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    padding-bottom: 50px; /* Space for sticky slider */
}

/* Dokulu Arkaplan Efekti - Elite Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 215, 0, 0.015) 2px,
            rgba(255, 215, 0, 0.015) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(255, 215, 0, 0.015) 2px,
            rgba(255, 215, 0, 0.015) 4px
        ),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 20px,
            rgba(255, 215, 0, 0.008) 20px,
            rgba(255, 215, 0, 0.008) 40px
        );
    z-index: -1;
    pointer-events: none;
    opacity: 0.8;
}

/* Elite Accent Particles */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

.star {
    position: absolute;
    width: 1px;
    height: 1px;
    background: rgba(255, 215, 0, 0.4);
    border-radius: 50%;
    box-shadow: 0 0 2px rgba(255, 215, 0, 0.6);
}

/* ========================================
   3. Typography
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-white);
}

h1 {
    font-size: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

h2 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}

h3 {
    font-size: 1.3rem;
}

p {
    margin-bottom: var(--spacing-sm);
}

a {
    color: var(--color-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--color-gold-light);
    text-shadow: none;
}

/* ========================================
   4. Global Search Bar
   ======================================== */
.global-search-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10002;
    background: linear-gradient(135deg, #1a1d29 0%, #252936 100%);
    padding: 5px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 50px rgba(255, 215, 0, 0.1);
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
}

.global-search-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.search-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 14px;
    color: var(--color-gold);
    font-size: 1rem;
    pointer-events: none;
    z-index: 2;
}

.global-search-input {
    width: 100%;
    padding: 7px 45px 7px 45px;
    background: rgba(15, 17, 23, 0.9);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: var(--radius-lg);
    color: var(--color-white);
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: all 0.3s ease;
    outline: none;
}

.global-search-input::placeholder {
    color: var(--color-medium-gray);
}

.global-search-input:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1), 0 4px 12px rgba(255, 215, 0, 0.3);
    background: rgba(15, 17, 23, 1);
}

.clear-search-btn {
    position: absolute;
    right: 14px;
    background: none;
    border: none;
    color: var(--color-medium-gray);
    cursor: pointer;
    font-size: 1rem;
    padding: 4px 8px;
    transition: all 0.2s ease;
    z-index: 2;
}

.clear-search-btn:hover {
    color: var(--color-gold);
    transform: scale(1.1);
}

.search-results {
    position: fixed;
    top: calc(55px + 16px);
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 800px;
    background: rgba(15, 17, 23, 0.98);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), 0 0 50px rgba(255, 215, 0, 0.15);
    max-height: calc(100vh - 150px);
    overflow-y: auto;
    z-index: 10001;
    backdrop-filter: blur(10px);
}

/* Search Overlay - Arka planı karartma */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 10000;
    display: none;
}

.search-overlay.active {
    display: block;
}

.search-results::-webkit-scrollbar {
    width: 8px;
}

.search-results::-webkit-scrollbar-track {
    background: rgba(15, 17, 23, 0.6);
    border-radius: 10px;
}

.search-results::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: 10px;
}

.search-results::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold-light);
}

.search-category {
    padding: 12px 20px;
}

.search-category-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.search-category-title i {
    font-size: 1rem;
}

.search-result-item {
    padding: 12px 16px;
    margin: 4px 0;
    background: rgba(37, 41, 54, 0.6);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-result-item:hover {
    background: rgba(37, 41, 54, 0.9);
    border-color: var(--color-gold);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
}

.search-result-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.1);
    border-radius: var(--radius-md);
    color: var(--color-gold);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.search-result-content {
    flex: 1;
}

.search-result-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 2px;
}

.search-result-description {
    font-size: 0.85rem;
    color: var(--color-medium-gray);
}

.search-no-results {
    padding: 40px 20px;
    text-align: center;
    color: var(--color-medium-gray);
}

.search-no-results i {
    font-size: 3rem;
    color: var(--color-dark-bg);
    margin-bottom: 16px;
}

.search-no-results p {
    font-size: 1rem;
    margin: 8px 0;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .global-search-container {
        padding: 10px 16px;
        padding-right: 75px; /* Hamburger menü için yer aç */
    }
    
    .global-search-wrapper {
        max-width: 100%;
    }
    
    .global-search-input {
        padding: 12px 45px 12px 45px;
        font-size: 0.95rem;
    }
    
    .search-icon {
        left: 14px;
        font-size: 1rem;
    }
    
    .clear-search-btn {
        right: 14px;
        font-size: 1rem;
    }
    
    .search-results {
        top: calc(55px + 12px);
        width: calc(100% - 24px);
        max-width: none;
        max-height: calc(100vh - 120px);
    }
    
    .search-result-item {
        padding: 10px 12px;
    }
    
    .search-result-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .search-result-title {
        font-size: 0.95rem;
    }
    
    .search-result-description {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .global-search-container {
        padding: 8px 12px;
        padding-right: 65px; /* Hamburger menü için yer aç */
    }
    
    .global-search-input {
        padding: 10px 40px 10px 40px;
        font-size: 0.9rem;
    }
    
    .search-icon {
        left: 12px;
        font-size: 0.95rem;
    }
    
    .clear-search-btn {
        right: 12px;
        font-size: 0.95rem;
    }
    
    .search-results {
        top: calc(55px + 10px);
        width: calc(100% - 20px);
        max-height: calc(100vh - 100px);
    }
    
    .hamburger {
        top: 8px;
        right: 12px;
        padding: 8px 10px;
    }
    
    .hamburger span {
        width: 24px;
        height: 2px;
    }
}

/* ========================================
   5. Header & Navigation - Vertical Sidebar (Modern)
   ======================================== */
.header {
    position: fixed;
    top: 55px;
    left: 0;
    width: 200px;
    height: calc(100vh - 55px);
    background: var(--color-space-gray);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-right: 3px solid rgba(255, 215, 0, 0.2);
    padding: var(--spacing-md) var(--spacing-sm) 0 var(--spacing-sm);
    z-index: 1001;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.6);
    overflow-y: auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

/* Header Daraltma Butonu */
.header-collapse-btn {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: var(--color-gold);
    border: 2px solid var(--color-gold-dark);
    border-radius: 50%;
    color: var(--color-space-black);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: var(--shadow-gold);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-collapse-btn:hover {
    background: var(--color-gold-light);
    transform: translateX(-50%) scale(1.1);
    box-shadow: var(--shadow-gold-intense);
}

.header-collapse-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.header-collapse-btn:active {
    transform: translateX(-50%) scale(0.95);
}

/* Daraltılmış Header Durumu */
.header.collapsed {
    width: 70px;
    padding: var(--spacing-md) 8px;
}

.header.collapsed .header-collapse-btn i {
    transform: rotate(180deg);
}

.header.collapsed .logo-text,
.header.collapsed .nav-link span,
.header.collapsed .balance-label span,
.header.collapsed .balance-subtext {
    display: none;
}

.header.collapsed .logo {
    padding: var(--spacing-sm) 4px;
    margin-top: 32px;
}

.header.collapsed .logo-img {
    height: 45px;
}

.header.collapsed .nav-link {
    justify-content: center;
    padding: 12px 8px;
}

.header.collapsed .nav-link i {
    width: auto;
    margin: 0;
}

.header.collapsed .nav-balance-card {
    padding: 10px 4px;
}

.header.collapsed .balance-label {
    margin-bottom: 4px;
}

.header.collapsed .balance-amount {
    font-size: 0.95rem;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    pointer-events: none;
    z-index: -1;
}

/* Custom Scrollbar */
.header::-webkit-scrollbar {
    width: 6px;
}

.header::-webkit-scrollbar-track {
    background: rgba(15, 17, 23, 0.6);
    border-radius: 10px;
}

.header::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.header::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold-light);
    box-shadow: var(--shadow-gold);
}

.nav-container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    flex: 1;
    overflow-y: auto;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    padding: 1.2rem var(--spacing-sm);
    margin-top: 32px;
    margin-bottom: var(--spacing-xs);
    border-radius: 0;
    background: transparent;
    border: none;
    position: relative;
    overflow: visible;
    transition: all 0.3s ease;
    width: 100%;
}

.logo:hover {
    border-color: transparent;
    background: transparent;
}

.logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.logo-img {
    height: 65px;
    width: auto;
    filter: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 0;
}

.logo-img:hover {
    transform: scale(1.05);
    filter: brightness(1.2) drop-shadow(0 0 8px rgba(255, 215, 0, 0.3));
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--color-gold);
    text-shadow: none;
    text-align: center;
    letter-spacing: 1.8px;
    position: relative;
    z-index: 1;
    font-weight: 700;
    white-space: nowrap;
    overflow: visible;
}

.nav-menu {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 4px;
    flex: 1;
}

.nav-menu li {
    width: 100%;
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--color-light-gray);
    font-weight: 500;
    font-size: 0.82rem;
    padding: 10px 12px;
    border-radius: 8px;
    transition: all 0.2s ease;
    width: 100%;
    position: relative;
    border: 1px solid transparent;
}

.nav-link::before {
    display: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width 0.2s ease;
}

.nav-link i {
    font-size: 1rem;
    width: 22px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.nav-link:hover {
    color: var(--color-white);
    background: rgba(255, 215, 0, 0.12);
    transform: translateX(4px);
    border-color: rgba(255, 215, 0, 0.3);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover i {
    transform: scale(1.1);
    color: var(--color-gold);
}

.nav-link.active {
    color: var(--color-space-black);
    background: var(--color-gold);
    border-color: var(--color-gold);
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
    background: var(--color-space-black);
}

.nav-link.active i {
    color: var(--color-space-black);
}

/* ========================================
   Auth Butonları - Modern Tasarım ve Alta Hizalı
   ======================================== */

/* Auth butonları grubu */
.nav-auth-item:first-of-type {
    margin-top: 0;
    padding-top: var(--spacing-sm);
}

.nav-auth-item {
    margin-top: 8px !important;
}

/* Profil Linki - Elite Gold Tasarım */
.nav-link-profile {
    background: rgba(255, 215, 0, 0.1) !important;
    border: 2px solid rgba(255, 215, 0, 0.4) !important;
    color: var(--color-white) !important;
    font-weight: 600;
    padding: 8px 12px !important;
}

.nav-link-profile i {
    color: var(--color-gold);
    font-size: 1rem !important;
}

.nav-link-profile:hover {
    background: rgba(255, 215, 0, 0.18) !important;
    border-color: var(--color-gold) !important;
    transform: translateX(5px);
}

/* Giriş Yap Butonu - Gold Outline */
.nav-link-login {
    background: transparent !important;
    border: 2px solid rgba(255, 215, 0, 0.5) !important;
    color: var(--color-gold) !important;
    font-weight: 600;
    padding: 7px 12px !important;
    font-size: 0.78rem !important;
    justify-content: center;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link-login:hover {
    background: rgba(255, 215, 0, 0.12) !important;
    border-color: var(--color-gold) !important;
    color: var(--color-white) !important;
    transform: translateX(0) scale(1.03);
    box-shadow: var(--shadow-gold);
}

.nav-link-login i {
    color: inherit;
}

/* Kayıt Ol Butonu - Elite Gold Filled */
.nav-link-register {
    background: var(--color-gold) !important;
    border: 2px solid var(--color-gold) !important;
    color: var(--color-space-black) !important;
    font-weight: 700;
    padding: 7px 12px !important;
    font-size: 0.78rem !important;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-gold);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-link-register::before {
    display: none;
}

.nav-link-register:hover {
    background: var(--color-gold-light) !important;
    border-color: var(--color-gold-light) !important;
    transform: translateX(0) scale(1.05);
    box-shadow: var(--shadow-gold-intense);
}

.nav-link-register i {
    position: relative;
    z-index: 1;
}

/* Çıkış Yap Butonu - Subtle Gray Outline */
.nav-link-logout {
    background: transparent !important;
    border: 2px solid rgba(184, 192, 204, 0.3) !important;
    color: var(--color-light-gray) !important;
    font-weight: 600;
    padding: 7px 12px !important;
    font-size: 0.78rem !important;
    justify-content: center;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link-logout:hover {
    background: rgba(184, 192, 204, 0.08) !important;
    border-color: rgba(184, 192, 204, 0.5) !important;
    color: var(--color-white) !important;
    transform: translateX(0) scale(1.03);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.nav-link-logout i {
    color: inherit;
}

/* ========================================
   Bakiye Kartı - Modern & Kompakt Tasarım
   ======================================== */
.nav-balance-item {
    margin-top: auto !important;
    padding: var(--spacing-sm) 8px;
    padding-bottom: 8px;
    position: sticky;
    bottom: 0;
    background: var(--color-space-gray);
    z-index: 10;
}

.nav-balance-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
}

.nav-balance-card::before {
    display: none;
}

.nav-balance-card:hover {
    transform: none;
    border-color: transparent;
    box-shadow: none;
    background: transparent;
}

.balance-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.72rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 5px;
    position: relative;
    z-index: 1;
}

.balance-label i {
    font-size: 0.85rem;
    color: #ffd54f;
    filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.8));
    animation: coinPulse 1.5s ease-in-out infinite;
}

@keyframes coinPulse {
    0%, 100% { 
        transform: scale(1); 
        filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.8));
    }
    50% { 
        transform: scale(1.15); 
        filter: drop-shadow(0 0 12px rgba(255, 215, 0, 1));
    }
}

.balance-amount {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: #ffc107;
    text-align: center;
    text-shadow: 
        0 0 15px rgba(255, 193, 7, 0.6),
        0 0 30px rgba(255, 215, 0, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
    line-height: 1;
    background: linear-gradient(180deg, #ffd54f 0%, #ffc107 50%, #ff9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.balance-subtext {
    font-size: 0.68rem;
    text-align: center;
    color: rgba(255, 193, 7, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-top: 4px;
    position: relative;
    z-index: 1;
}

/* Hamburger Menu - Mobile (Modern) */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    position: fixed;
    top: 10px;
    right: 16px;
    z-index: 10003;
    background: #1e2530;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 12px;
    border-radius: 10px;
    border: 2px solid rgba(255, 136, 0, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(255, 136, 0, 0.1);
    border-color: var(--color-gold);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    transform: scale(1.05);
}

.hamburger span {
    width: 26px;
    height: 2.5px;
    background: var(--color-gold);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger:hover span {
    background: var(--color-gold-light);
}

/* ========================================
   5. Buttons & CTAs
   ======================================== */
.btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-sm {
    padding: 8px 12px;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.btn-primary {
    background: var(--color-gold);
    color: var(--color-space-black);
    box-shadow: var(--shadow-gold);
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--color-gold-light);
    box-shadow: var(--shadow-gold-intense);
    transform: translateY(-1px);
}

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

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

.btn-secondary {
    background: transparent;
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
}

.btn-secondary:hover {
    background: var(--color-gold);
    color: var(--color-white);
}

/* ========================================
   6. Container & Layout
   ======================================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

@media (min-width: 1600px) {
    .container {
        max-width: 1200px;
        padding: 0 var(--spacing-md);
    }
}

@media (min-width: 1800px) {
    .container {
        max-width: 1300px;
    }
}

@media (min-width: 2000px) {
    .container {
        max-width: 1400px;
    }
}

.section {
    padding: var(--spacing-xl) 0;
    position: relative;
    z-index: 1;
}

/* Main Content - Sol sidebar için padding */
.main-content {
    margin-left: 200px;
    margin-top: 55px;
    min-height: calc(100vh - 55px);
    position: relative;
    transition: margin-left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Daraltılmış Header için Main Content */
.header.collapsed ~ .main-content {
    margin-left: 70px;
}

/* Adjust content for banners on large screens */
@media (min-width: 1600px) {
    .main-content {
        margin-left: calc(200px + 170px);
        margin-right: 160px;
        max-width: calc(100vw - 200px - 330px);
        transition: margin-left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .header.collapsed ~ .main-content {
        margin-left: calc(70px + 170px);
        max-width: calc(100vw - 70px - 330px);
    }
}

@media (min-width: 1800px) {
    .main-content {
        margin-left: calc(200px + 190px);
        margin-right: 180px;
        max-width: calc(100vw - 200px - 370px);
    }
    
    .header.collapsed ~ .main-content {
        margin-left: calc(70px + 190px);
        max-width: calc(100vw - 70px - 370px);
    }
}

/* ========================================
   7. Utility Classes
   ======================================== */
.text-center {
    text-align: center;
}

.text-red {
    color: var(--color-gold);
}

.glow-text {
    text-shadow: var(--shadow-red-glow);
}

.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }
.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }

/* ========================================
   7. Sticky Banners - Desktop
   ======================================== */
.sticky-banner {
    position: fixed;
    top: 120px;
    width: 130px;
    height: 620px;
    z-index: 999;
    display: none;
    will-change: transform;
    transition: transform 0.1s ease-out;
}

.sticky-banner-left {
    left: 225px;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Daraltılmış Header için Banner */
.header.collapsed ~ .sticky-banner-left {
    left: 95px;
}

.sticky-banner-right {
    right: 10px;
}

.banner-content {
    width: 100%;
    height: 100%;
    background: var(--color-dark-bg);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.banner-link {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.banner-content:hover {
    border-color: var(--color-gold);
    box-shadow: var(--shadow-gold-intense);
    transform: scale(1.02);
}

.banner-placeholder {
    text-align: center;
    color: var(--color-light-gray);
    padding: var(--spacing-sm);
}

.banner-placeholder i {
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: var(--spacing-sm);
    opacity: 0.5;
}

.banner-placeholder p {
    font-size: 0.7rem;
    margin-bottom: var(--spacing-xs);
    color: var(--color-white);
    font-weight: 600;
}

.banner-placeholder span {
    font-size: 0.65rem;
    color: var(--color-light-gray);
    opacity: 0.7;
}

/* Show banners only on large screens */
@media (min-width: 1600px) {
    .sticky-banner {
        display: block;
    }
    
    .sticky-banner-left {
        left: 230px;
    }
    
    .header.collapsed ~ .sticky-banner-left {
        left: 100px;
    }
    
    .sticky-banner-right {
        right: 10px;
    }
    
    .banner-size::after {
        content: '130 x 620';
    }
    
    .banner-size {
        font-size: 0;
    }
}

@media (min-width: 1800px) {
    .sticky-banner {
        width: 150px;
        height: 720px;
        top: 70px;
    }
    
    .sticky-banner-left {
        left: 230px;
    }
    
    .header.collapsed ~ .sticky-banner-left {
        left: 100px;
    }
    
    .sticky-banner-right {
        right: 15px;
    }
    
    .banner-placeholder i {
        font-size: 2.5rem;
    }
    
    .banner-placeholder p {
        font-size: 0.85rem;
    }
    
    .banner-size::after {
        content: '150 x 720';
    }
    
    .banner-size {
        font-size: 0;
    }
}

@media (min-width: 2000px) {
    .sticky-banner-left {
        left: calc(200px + 35px);
    }
    
    .sticky-banner-right {
        right: 20px;
    }
}

/* ========================================
   8. Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .header {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1001;
    }
    
    .header.active {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .hamburger {
        display: flex !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .global-search-container {
        padding-right: 75px; /* Hamburger menü için yer aç */
    }
    
    .sticky-banner {
        display: none !important;
    }
    
    /* Mobilde daraltma butonunu gizle */
    .header-collapse-btn {
        display: none;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .header {
        width: 100%;
        max-width: 280px;
    }
    
    .logo {
        padding: var(--spacing-md) var(--spacing-sm);
        border-radius: 0;
        overflow: visible;
    }
    
    .logo-img {
        height: 65px;
    }
    
    .logo-text {
        font-size: 0.95rem;
        letter-spacing: 1.5px;
        white-space: nowrap;
    }
    
    .nav-link {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    .nav-link i {
        font-size: 1rem;
        width: 20px;
    }
    
    /* Auth Butonları - Mobil */
    .nav-auth-item:first-of-type {
        padding-top: var(--spacing-sm);
    }
    
    .nav-link-profile,
    .nav-link-login,
    .nav-link-register,
    .nav-link-logout {
        padding: 8px 12px !important;
        font-size: 0.8rem !important;
    }
    
    .nav-link-profile i,
    .nav-link-login i,
    .nav-link-register i,
    .nav-link-logout i {
        font-size: 0.95rem !important;
        width: 18px;
    }
    
    /* Bakiye Kartı - Mobil */
    .nav-balance-item {
        margin-top: 10px !important;
        padding: 0 6px;
    }
    
    .nav-balance-card {
        padding: 10px;
        border-radius: 0;
    }
    
    .balance-label {
        font-size: 0.65rem;
        gap: 5px;
        margin-bottom: 5px;
    }
    
    .balance-label i {
        font-size: 0.8rem;
    }
    
    .balance-amount {
        font-size: 1.25rem;
    }
    
    .balance-subtext {
        font-size: 0.6rem;
        margin-top: 3px;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(9px, 9px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(20px);
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(9px, -9px);
    }
}

/* ========================================
   9. Footer Styles
   ======================================== */
.footer {
    background: var(--color-dark-bg);
    border-top: 3px solid rgba(255, 215, 0, 0.3);
    padding: 3rem 0 1.5rem;
    margin-top: 3rem;
    margin-bottom: 50px; /* Space for sticky slider */
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--color-gold) 50%, 
        transparent 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(229, 9, 20, 0.6));
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-white);
    margin: 0;
    text-shadow: 0 0 10px rgba(229, 9, 20, 0.5);
}

.footer-slogan {
    font-size: 0.95rem;
    color: var(--color-gold);
    font-style: italic;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.footer-desc {
    font-size: 0.85rem;
    color: var(--color-light-gray);
    opacity: 0.8;
}

.footer-title {
    font-size: 1rem;
    color: var(--color-white);
    margin-bottom: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-light-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: var(--color-white);
    transform: translateX(5px);
}

.footer-links li a i {
    font-size: 0.85rem;
    color: var(--color-gold);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(229, 9, 20, 0.1);
    border: 2px solid rgba(229, 9, 20, 0.3);
    border-radius: 50%;
    color: var(--color-gold);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--color-gold);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(229, 9, 20, 0.5);
}

.online-users {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-light-gray);
}

.online-indicator {
    color: #00c853;
    font-size: 0.6rem;
    animation: pulse 2s ease-in-out infinite;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-light-gray);
    font-size: 0.9rem;
}

.footer-contact li i {
    color: var(--color-gold);
    width: 20px;
    text-align: center;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(229, 9, 20, 0.2);
}

.footer-bottom p {
    color: var(--color-light-gray);
    font-size: 0.85rem;
    margin: 0.5rem 0;
}

.footer-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255, 193, 7, 0.8);
    font-weight: 600;
}

.footer-note i {
    color: var(--color-warning);
}

/* Footer Toggle/Accordion Styles */
.footer-toggle {
    cursor: default;
    position: relative;
    user-select: none;
}

.toggle-icon {
    display: none;
    font-size: 0.75rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
    vertical-align: middle;
}

.footer-collapsible-content {
    max-height: none;
    overflow: visible;
    opacity: 1;
    transition: none;
}

/* Footer Responsive - Kompakt Mobil Tasarım */
@media (max-width: 1024px) {
    .footer {
        padding: 2.5rem 0 1.25rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
        margin-bottom: 1.75rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 1.5rem 0 1rem;
        margin-top: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin-bottom: 1.25rem;
    }
    
    .footer-section {
        text-align: center;
        padding: 0;
        border-bottom: none;
    }
    
    .footer-section-always {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(229, 9, 20, 0.15);
    }
    
    .footer-section-collapsible {
        background: rgba(27, 27, 27, 0.5);
        border: 1px solid rgba(229, 9, 20, 0.2);
        border-radius: 8px;
        margin-bottom: 0.5rem;
        overflow: hidden;
    }
    
    /* Accordion Toggle Button */
    .footer-toggle {
        cursor: pointer;
        padding: 0.85rem 1rem;
        margin-bottom: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 0.3s ease;
    }
    
    .footer-toggle:hover {
        background: rgba(229, 9, 20, 0.1);
    }
    
    .toggle-icon {
        display: inline-block;
        color: var(--color-gold);
        font-size: 0.9rem;
        margin-left: 0.5rem;
    }
    
    .footer-toggle.active .toggle-icon {
        transform: rotate(180deg);
    }
    
    /* Collapsible Content */
    .footer-collapsible-content {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
        padding: 0 1rem;
    }
    
    .footer-collapsible-content.active {
        max-height: 500px;
        opacity: 1;
        padding: 0 1rem 1rem 1rem;
    }
    
    /* Sosyal Medya İkonları - Yatay Düzen */
    .footer-collapsible-content .social-links {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 0.75rem !important;
        margin-bottom: 1rem;
    }
    
    .footer-logo {
        justify-content: center;
        margin-bottom: 0.75rem;
    }
    
    .footer-logo-img {
        height: 40px;
    }
    
    .footer-brand {
        font-size: 1rem;
    }
    
    .footer-slogan {
        font-size: 0.85rem;
        margin-bottom: 0.35rem;
    }
    
    .footer-desc {
        font-size: 0.75rem;
    }
    
    .footer-title {
        font-size: 0.9rem;
        margin-bottom: 0.85rem;
    }
    
    .footer-links {
        gap: 0.5rem;
        align-items: center;
    }
    
    .footer-links li a {
        font-size: 0.8rem;
        justify-content: center;
    }
    
    .footer-links li a:hover {
        transform: translateX(0);
    }
    
    .social-links {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 0.75rem !important;
        margin-bottom: 1rem;
        flex-wrap: wrap;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    
    .online-users {
        justify-content: center;
        font-size: 0.8rem;
    }
    
    .footer-contact {
        gap: 0.5rem;
        align-items: center;
    }
    
    .footer-contact li {
        font-size: 0.8rem;
        justify-content: center;
    }
    
    .footer-bottom {
        padding-top: 1rem;
    }
    
    .footer-bottom p {
        font-size: 0.75rem;
        margin: 0.35rem 0;
    }
    
    .footer-note {
        font-size: 0.75rem;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 1rem 0 0.75rem;
        margin-top: 1.5rem;
    }
    
    .footer-content {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .footer-section-always {
        padding: 0.75rem 0;
    }
    
    .footer-section-collapsible {
        margin-bottom: 0.4rem;
        border-radius: 6px;
    }
    
    .footer-toggle {
        padding: 0.7rem 0.85rem;
        font-size: 0.85rem;
    }
    
    .toggle-icon {
        font-size: 0.8rem;
    }
    
    .footer-logo-img {
        height: 35px;
    }
    
    .footer-brand {
        font-size: 0.95rem;
    }
    
    .footer-slogan {
        font-size: 0.8rem;
    }
    
    .footer-desc {
        font-size: 0.7rem;
    }
    
    .footer-title {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-links li a {
        font-size: 0.75rem;
    }
    
    .social-links {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 0.6rem !important;
        flex-wrap: wrap;
    }
    
    .footer-collapsible-content .social-links {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 0.6rem !important;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
    }
    
    .online-users {
        font-size: 0.75rem;
    }
    
    .footer-contact li {
        font-size: 0.75rem;
    }
    
    .footer-bottom {
        padding-top: 0.85rem;
    }
    
    .footer-bottom p {
        font-size: 0.7rem;
        margin: 0.25rem 0;
    }
}

/* ========================================
   Pop-up Görsel Stili
   ======================================== */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-container {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    animation: popupSlideIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes popupSlideIn {
    0% {
        transform: scale(0.5) translateY(-50px);
        opacity: 0;
    }
    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.popup-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3),
                0 0 0 2px var(--color-gold);
}

.popup-image {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 600px;
    max-height: 600px;
    object-fit: cover;
    aspect-ratio: 1/1;
}

.popup-close-btn {
    position: absolute;
    top: 5px;
    right: 15px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    border: 3px solid var(--color-space-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 32px;
    color: var(--color-space-black);
    font-weight: bold;
    transition: all 0.3s ease;
    z-index: 1000000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.popup-close-btn:hover {
    transform: rotate(90deg) scale(1.1);
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.popup-close-btn:active {
    transform: rotate(90deg) scale(0.95);
}

/* Mobil Responsive */
@media (max-width: 768px) {
    .popup-container {
        max-width: 85vw;
        max-height: 85vh;
    }
    
    .popup-image {
        max-width: 450px;
        max-height: 450px;
    }
    
    .popup-close-btn {
        top: 10px;
        right: 10px;
        width: 53px;
        height: 53px;
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .popup-container {
        max-width: 90vw;
        max-height: 90vh;
    }
    
    .popup-image {
        max-width: 350px;
        max-height: 350px;
    }
    
    .popup-close-btn {
        top: 12px;
        right: 10px;
        width: 47px;
        height: 47px;
        font-size: 26px;
        border-width: 2px;
    }
}

/* ========================================
   Sticky Site Slider - Bottom Fixed
   ======================================== */
.sticky-site-slider {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #0f1117 0%, #1a1d29 100%);
    border-top: 2px solid var(--color-gold);
    box-shadow: 0 -4px 20px rgba(255, 215, 0, 0.2),
                0 -2px 10px rgba(0, 0, 0, 0.5);
    z-index: 999;
    overflow: hidden;
    height: 45px;
    display: flex;
    align-items: center;
}

.site-slider-track {
    display: flex;
    width: fit-content;
    animation: slideLeft 30s linear infinite;
}

.site-slider-track:hover {
    animation-play-state: paused;
}

.site-slider-content {
    display: flex;
    gap: 20px;
    padding: 0 20px;
    white-space: nowrap;
}

.site-slider-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 25px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-gold);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.site-slider-item:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
    border-color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.site-slider-item i {
    font-size: 16px;
    color: var(--color-gold-light);
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .sticky-site-slider {
        height: 40px;
    }
    
    .site-slider-item {
        font-size: 12px;
        padding: 6px 16px;
        gap: 6px;
    }
    
    .site-slider-item i {
        font-size: 14px;
    }
    
    .site-slider-track {
        animation: slideLeft 25s linear infinite;
    }
}

@media (max-width: 480px) {
    .sticky-site-slider {
        height: 35px;
    }
    
    .site-slider-item {
        font-size: 11px;
        padding: 5px 12px;
        gap: 5px;
    }
    
    .site-slider-item i {
        font-size: 12px;
    }
}

