/* =================================
   GENEL STILLAR
   ================================= */

/* Temel Reset ve Body Stilleri */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Renk Değişkenleri */
    --primary: #06b6d4;
    --primary-dark: #0891b2;
    --accent: #0ea5e9;
    --background-dark: #0B1118;
    --sidebar-dark: #101822;
    --surface-dark: #16202C;
    --surface-hover: #1E293B;
    --text-muted: #94A3B8;
    --border-color: rgba(255, 255, 255, 0.05);
    --border-color-light: rgba(255, 255, 255, 0.1);
    
    /* Font Ailesi */
    --font-family: 'Inter', sans-serif;
}

body {
    font-family: var(--font-family);
    background-color: var(--background-dark);
    color: #f1f5f9;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* =================================
   KAR YAĞIŞI ANİMASYONU
   ================================= */

.snow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    top: -10px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
    border-radius: 50%;
    pointer-events: none;
    animation: snowfall linear infinite;
    opacity: 0;
}

/* Kar tanesi düşme animasyonu */
@keyframes snowfall {
    0% {
        transform: translateY(-10px) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) translateX(var(--drift)) rotate(360deg);
        opacity: 0;
    }
}

/* Scrollbar Stilleri */
.sidebar::-webkit-scrollbar,
.main-content::-webkit-scrollbar {
    width: 6px;
}

.sidebar::-webkit-scrollbar-track,
.main-content::-webkit-scrollbar-track {
    background: var(--sidebar-dark);
}

.sidebar::-webkit-scrollbar-thumb,
.main-content::-webkit-scrollbar-thumb {
    background: #2d3748;
    border-radius: 3px;
}

.sidebar::-webkit-scrollbar-thumb:hover,
.main-content::-webkit-scrollbar-thumb:hover {
    background: #4a5568;
}

/* =================================
   HEADER (ÜST MENÜ)
   ================================= */

.header {
    height: 80px;
    background-color: var(--sidebar-dark);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    flex-shrink: 0;
    z-index: 100;
    position: relative;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    transition: color 0.3s;
}

.mobile-menu-btn:hover {
    color: white;
}

.logo {
    text-decoration: none;
}

.logo .site-logo {
    height: 64px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
    display: block;
}

.footer-logo .site-logo {
    height: 80px;
    width: auto;
    max-width: 320px;
    object-fit: contain;
    display: inline-block;
}

.modal-brand .site-logo {
    height: 110px;
    width: auto;
    max-width: 340px;
    object-fit: contain;
    display: block;
}

.logo h1 {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.05em;
    color: #f1f5f9;
    text-transform: uppercase;
    font-style: italic;
}

.logo-highlight {
    color: var(--primary);
}

/* Header Center - Sosyal Medya */
.header-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-right {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

/* =================================
   HEADER SOSYAL MEDYA BUTONLARI
   ================================= */

.header-social-links {
    display: none;
    gap: 8px;
    background: rgba(22, 32, 44, 0.6);
    backdrop-filter: blur(12px);
    padding: 8px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.header-social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 12px;
    background-color: transparent;
    color: #9ca3af;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.header-social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s;
}

.header-social-link:hover::before {
    opacity: 1;
}

.header-social-link:hover {
    transform: translateY(-3px);
    color: white;
}

/* Telegram */
.header-social-link.telegram {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.15), rgba(33, 150, 243, 0.08));
    border: 1px solid rgba(33, 150, 243, 0.3);
}

.header-social-link.telegram:hover {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.3), rgba(33, 150, 243, 0.15));
    border-color: rgba(33, 150, 243, 0.5);
    box-shadow: 0 8px 20px rgba(33, 150, 243, 0.3);
}

.header-social-link.telegram .material-symbols-outlined {
    color: #2196F3;
}

/* Instagram */
.header-social-link.instagram {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.15), rgba(193, 53, 132, 0.08));
    border: 1px solid rgba(225, 48, 108, 0.3);
}

.header-social-link.instagram:hover {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.3), rgba(193, 53, 132, 0.15));
    border-color: rgba(225, 48, 108, 0.5);
    box-shadow: 0 8px 20px rgba(225, 48, 108, 0.3);
}

.header-social-link.instagram .material-symbols-outlined {
    color: #E1306C;
}

/* Twitter/X */
.header-social-link.twitter {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.header-social-link.twitter:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.12));
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
}

.header-social-link .twitter-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
    transition: fill 0.3s;
}

.header-social-link.twitter:hover .twitter-icon {
    fill: white;
}

/* YouTube */
.header-social-link.youtube {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.15), rgba(255, 0, 0, 0.08));
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.header-social-link.youtube:hover {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.3), rgba(255, 0, 0, 0.15));
    border-color: rgba(255, 0, 0, 0.5);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3);
}

.header-social-link.youtube .material-symbols-outlined {
    color: #FF0000;
}

/* Kick */
.header-social-link.kick {
    background: linear-gradient(135deg, rgba(83, 255, 26, 0.15), rgba(83, 255, 26, 0.08));
    border: 1px solid rgba(83, 255, 26, 0.3);
}

.header-social-link.kick:hover {
    background: linear-gradient(135deg, rgba(83, 255, 26, 0.3), rgba(83, 255, 26, 0.15));
    border-color: rgba(83, 255, 26, 0.5);
    box-shadow: 0 8px 20px rgba(83, 255, 26, 0.3);
}

.header-social-link.kick .material-symbols-outlined {
    color: #53FF1A;
}

/* Teams */
.header-social-link.teams {
    background: linear-gradient(135deg, rgba(103, 58, 183, 0.15), rgba(103, 58, 183, 0.08));
    border: 1px solid rgba(103, 58, 183, 0.3);
}

.header-social-link.teams:hover {
    background: linear-gradient(135deg, rgba(103, 58, 183, 0.3), rgba(103, 58, 183, 0.15));
    border-color: rgba(103, 58, 183, 0.5);
    box-shadow: 0 8px 20px rgba(103, 58, 183, 0.3);
}

.header-social-link.teams .material-symbols-outlined {
    color: #673AB7;
}

.header-social-link .material-symbols-outlined {
    font-size: 18px;
    transition: transform 0.3s;
}

.header-social-link:hover .material-symbols-outlined {
    transform: scale(1.15);
}

/* Kullanıcı İşlemleri */
.user-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Buton Stilleri */
.btn-secondary {
    background-color: var(--surface-dark);
    color: white;
    border: 1px solid var(--border-color-light);
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-primary {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(6, 182, 212, 0.2);
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-icon {
    background-color: var(--surface-dark);
    color: white;
    border: 1px solid var(--border-color-light);
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.btn-icon:hover {
    background-color: var(--surface-hover);
}

.btn-icon .material-symbols-outlined {
    font-size: 20px;
}

/* Pulse Animasyonu */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* =================================
   ANA WRAPPER
   ================================= */

.main-wrapper {
    display: flex;
    flex: 1;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

/* =================================
   SIDEBAR (SOL MENÜ)
   ================================= */

.sidebar {
    display: none;
    flex-direction: column;
    width: 256px;
    background-color: var(--sidebar-dark);
    border-right: 1px solid var(--border-color);
    overflow-y: auto;
    flex-shrink: 0;
    position: relative;
    z-index: 10;
}

/* Hızlı İşlem Kartları */
.quick-actions {
    padding: 16px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.quick-action-card {
    border-radius: 12px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.quick-action-card.green {
    background: linear-gradient(135deg, rgba(22, 101, 52, 0.4), rgba(21, 128, 61, 0.2));
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.quick-action-card.green:hover {
    background: rgba(22, 101, 52, 0.3);
}

.quick-action-card.blue {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.4), rgba(29, 78, 216, 0.2));
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.quick-action-card.blue:hover {
    background: rgba(30, 58, 138, 0.3);
}

.quick-action-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    transition: transform 0.3s;
}

.quick-action-card.green .quick-action-icon {
    background-color: rgba(34, 197, 94, 0.2);
}

.quick-action-card.green .material-symbols-outlined {
    color: #4ade80;
}

.quick-action-card.blue .quick-action-icon {
    background-color: rgba(59, 130, 246, 0.2);
}

.quick-action-card.blue .material-symbols-outlined {
    color: #60a5fa;
}

.quick-action-card:hover .quick-action-icon {
    transform: scale(1.1);
}

.quick-action-label {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
    color: #9ca3af;
    margin-bottom: 4px;
}

.quick-action-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 9999px;
}

.quick-action-card.green .quick-action-badge {
    background-color: #22c55e;
    color: white;
}

.quick-action-card.blue .quick-action-badge {
    background-color: #3b82f6;
    color: white;
}

/* Navigasyon Menüsü */
.sidebar-nav {
    flex: 1;
    padding: 12px;
}

.nav-section-title {
    padding: 12px;
    font-size: 12px;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 16px;
}

.nav-section-title:first-child {
    margin-top: 0;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 12px;
    color: #9ca3af;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 4px;
    position: relative;
    overflow: hidden;
}

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

.nav-item:hover::before,
.nav-item.active::before {
    transform: scaleY(1);
}

.nav-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6, 182, 212, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.nav-item:hover::after {
    opacity: 1;
}

.nav-item:hover {
    color: white;
    background: linear-gradient(90deg, rgba(6, 182, 212, 0.08), transparent);
    transform: translateX(4px);
    padding-left: 16px;
}

.nav-item.active {
    color: white;
    background: linear-gradient(90deg, rgba(6, 182, 212, 0.15), rgba(6, 182, 212, 0.05));
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.nav-item .material-symbols-outlined {
    font-size: 22px;
    color: #6b7280;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.nav-item:hover .material-symbols-outlined,
.nav-item.active .material-symbols-outlined {
    color: var(--primary);
    transform: scale(1.1);
}

.nav-item span:last-of-type {
    font-size: 14px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.nav-item-indicator {
    margin-left: auto;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary);
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s;
}

.nav-item.active .nav-item-indicator {
    opacity: 1;
    transform: scale(1);
}

/* =================================
   MAIN CONTENT (ANA İÇERİK)
   ================================= */

.main-content {
    flex: 1;
    overflow-y: auto;
    padding: 32px 16px;
    background-color: var(--background-dark);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* =================================
   HERO SLIDER
   ================================= */

.hero-slider {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color-light);
    margin-bottom: 32px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--background-dark), rgba(11, 17, 24, 0.8), transparent);
    z-index: 10;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: transform 0.7s;
}

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        #0f172a 0%, 
        #1e1b4b 25%, 
        #312e81 50%, 
        #4c1d95 75%, 
        #7c3aed 100%);
    opacity: 0.8;
    animation: heroGradientShift 8s ease-in-out infinite alternate;
}

@keyframes heroGradientShift {
    0% {
        background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 25%, #312e81 50%, #4c1d95 75%, #7c3aed 100%);
    }
    50% {
        background: linear-gradient(135deg, #0f172a 0%, #164e63 25%, #0891b2 50%, #0d9488 75%, #10b981 100%);
    }
    100% {
        background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 25%, #312e81 50%, #4c1d95 75%, #7c3aed 100%);
    }
}

.hero-slider:hover .hero-bg {
    transform: scale(1.05);
}

.hero-content {
    position: relative;
    z-index: 20;
    padding: 64px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 380px;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    color: white;
    margin-bottom: 8px;
    line-height: 1;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: #d1d5db;
    margin-bottom: 32px;
    max-width: 512px;
}

.hero-subtitle .highlight {
    color: var(--primary);
}

.btn-hero {
    background-color: var(--primary);
    color: white;
    padding: 16px 40px;
    border-radius: 12px;
    border: none;
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.4);
    cursor: pointer;
    transition: all 0.3s;
    width: fit-content;
}

.btn-hero:hover {
    background-color: var(--primary-dark);
    transform: translateY(-4px);
}

/* Slider Butonları */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-color-light);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.slider-btn-prev {
    left: 16px;
}

.slider-btn-next {
    right: 16px;
}

/* =================================
   SPONSORLAR SAYFASI
   ================================= */

/* Arama Kutusu */
.sponsors-search {
    position: relative;
    margin-bottom: 32px;
}

.sponsors-search .material-symbols-outlined {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    font-size: 24px;
}

.search-input {
    width: 100%;
    padding: 16px 20px 16px 56px;
    background: var(--surface-dark);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: white;
    font-size: 15px;
    transition: all 0.3s;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.search-input::placeholder {
    color: #64748b;
}

/* Section Header Simple */
.section-header-simple {
    margin-bottom: 20px;
}

.section-header-simple h2 {
    font-size: 24px;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
}

/* Ana Sponsorlar Grid */
.main-sponsors {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.main-sponsor-card {
    position: relative;
    height: 150px;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.main-sponsor-card.blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(37, 99, 235, 0.1));
    border-color: rgba(59, 130, 246, 0.3);
}

.main-sponsor-card.green {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(22, 163, 74, 0.1));
    border-color: rgba(34, 197, 94, 0.3);
}

.main-sponsor-card.purple {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(147, 51, 234, 0.1));
    border-color: rgba(168, 85, 247, 0.3);
}

.main-sponsor-card.dark {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.95));
    border-color: rgba(148, 163, 184, 0.2);
}

.main-sponsor-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.main-sponsor-logo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.main-sponsor-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(1.1);
}

.main-sponsor-text {
    text-align: center;
}

.main-sponsor-text h3 {
    font-size: 24px;
    font-weight: 900;
    color: white;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.main-sponsor-text p {
    font-size: 16px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
}

/* VIP Siteler Grid */
.vip-sites-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.vip-site-card {
    background: linear-gradient(135deg, rgba(22, 32, 44, 0.95), rgba(16, 24, 34, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s;
}

.vip-site-card:hover {
    transform: translateY(-4px);
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.vip-site-logo {
    width: 100%;
    height: 60px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.vip-site-bonus {
    font-size: 18px;
    font-weight: 900;
    color: white;
    margin-bottom: 8px;
    line-height: 1.2;
}

.vip-site-desc {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 16px;
    line-height: 1.4;
}

.vip-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    border-radius: 20px;
    color: white;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.vip-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.4);
}

.vip-badge .material-symbols-outlined {
    font-size: 16px;
}

/* =================================
   İSTATİSTİK BANDI
   ================================= */

.stats-banner {
    width: 100%;
    background-color: var(--surface-dark);
    border: 1px solid var(--border-color-light);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}

.stats-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(34, 197, 94, 0.1), transparent);
    pointer-events: none;
}

.stats-text {
    position: relative;
    z-index: 10;
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    color: white;
    letter-spacing: -0.025em;
    text-align: center;
}

.stats-amount {
    color: var(--primary);
    font-size: 48px;
    margin: 0 8px;
    filter: drop-shadow(0 0 15px rgba(6, 182, 212, 0.5));
}

/* =================================
   HIZLI ERİŞİM KARTLARI
   ================================= */

.feature-cards {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.feature-card {
    background: linear-gradient(135deg, rgba(22, 32, 44, 0.95), rgba(16, 24, 34, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(6, 182, 212, 0.1));
    opacity: 0;
    transition: opacity 0.4s;
}

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

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover::after {
    opacity: 1;
    animation: rotate 10s linear infinite;
}

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

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(6, 182, 212, 0.4);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.15), 0 0 0 1px rgba(6, 182, 212, 0.1);
}

.feature-card-bg {
    position: absolute;
    width: 120px;
    height: 120px;
    object-fit: contain;
    opacity: 0.15;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s;
    z-index: 0;
}

.feature-card:hover .feature-card-bg {
    transform: translate(-50%, -50%) scale(1.2) rotate(10deg);
    opacity: 0.25;
}

.feature-card-icon {
    font-size: 72px;
    margin-bottom: 16px;
    position: relative;
    z-index: 10;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.feature-card:hover .feature-card-icon {
    transform: scale(1.15) translateY(-5px);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
}

.feature-card-icon.blue {
    color: #3b82f6;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.feature-card:hover .feature-card-icon.blue {
    color: #60a5fa;
    text-shadow: 0 0 30px rgba(59, 130, 246, 0.8);
}

.feature-card-icon.yellow {
    color: #fbbf24;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.feature-card:hover .feature-card-icon.yellow {
    color: #fcd34d;
    text-shadow: 0 0 30px rgba(251, 191, 36, 0.8);
}

.feature-card-icon.gold {
    color: #f59e0b;
    text-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
}

.feature-card:hover .feature-card-icon.gold {
    color: #fbbf24;
    text-shadow: 0 0 30px rgba(245, 158, 11, 0.8);
}

.feature-card-icon.red {
    color: #ef4444;
    text-shadow: 0 0 20px rgba(239, 68, 68, 0.5);
}

.feature-card:hover .feature-card-icon.red {
    color: #f87171;
    text-shadow: 0 0 30px rgba(239, 68, 68, 0.8);
}

.feature-card-content {
    position: relative;
    z-index: 10;
    text-align: center;
    margin-top: auto;
}

.feature-card-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    display: block;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.feature-card-title {
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.025em;
    color: white;
    line-height: 1.2;
    transition: all 0.3s;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.feature-card:hover .feature-card-title {
    color: var(--primary);
    text-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
}

.live-badge-small {
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(220, 38, 38, 0.15));
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: #fca5a5;
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.3);
}

.live-badge-small .material-symbols-outlined {
    font-size: 14px;
    animation: pulse 2s ease-in-out infinite;
}

.live-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(220, 38, 38, 0.2));
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 700;
    color: #fca5a5;
    position: relative;
    z-index: 10;
    margin-bottom: 16px;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
}

.live-badge .material-symbols-outlined {
    font-size: 18px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* =================================
   BÖLÜM BAŞLIKLARI
   ================================= */

.section {
    margin-bottom: 64px;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.section-header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-icon {
    padding: 8px;
    background-color: rgba(6, 182, 212, 0.1);
    border-radius: 8px;
    color: var(--primary);
}

.section-header-left .section-title {
    margin: 0;
    text-transform: uppercase;
}

.section-controls {
    display: flex;
    gap: 8px;
}

.control-btn {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background-color: var(--surface-dark);
    border: 1px solid var(--border-color-light);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.control-btn:hover {
    background-color: var(--primary);
}

.control-btn .material-symbols-outlined {
    font-size: 20px;
}

/* =================================
   SAYFA SİSTEMİ
   ================================= */

.page-content {
    display: none;
}

.page-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

/* Sayfa Başlığı */
.page-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(22, 32, 44, 0.8));
    border-radius: 20px;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.page-header-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
}

.page-header-icon .material-symbols-outlined {
    font-size: 48px;
    color: white;
}

.page-header-text {
    flex: 1;
}

.page-title {
    font-size: 36px;
    font-weight: 900;
    color: white;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.page-subtitle {
    font-size: 16px;
    color: #94a3b8;
    font-weight: 500;
}

/* Oyun Kategorileri */
.game-categories {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.game-categories::-webkit-scrollbar {
    height: 4px;
}

.game-categories::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 2px;
}

.category-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--surface-dark);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: #94a3b8;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.category-btn:hover {
    background: var(--surface-hover);
    border-color: rgba(6, 182, 212, 0.3);
    color: white;
}

.category-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-color: var(--primary);
    color: white;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

.category-btn .material-symbols-outlined {
    font-size: 20px;
}

/* Oyun Kartları Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
}

/* =================================
   BİLET KARTLARI
   ================================= */

.tickets-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
}

/* =================================
   ETKİNLİK KARTLARI
   ================================= */

.events-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
}

.event-card {
    background: linear-gradient(135deg, rgba(22, 32, 44, 0.95), rgba(16, 24, 34, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-8px);
    border-color: rgba(6, 182, 212, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(6, 182, 212, 0.2);
}

.event-image {
    position: relative;
    width: 100%;
    min-height: 200px;
    max-height: 400px;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    transition: transform 0.5s;
}

.event-card:hover .event-image img {
    transform: scale(1.02);
}

.event-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 8px 16px;
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 900;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.event-badge.hot {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.9), rgba(220, 38, 38, 0.9));
}

.event-badge.new {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.9), rgba(37, 99, 235, 0.9));
}

.event-badge.vip {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.9), rgba(245, 158, 11, 0.9));
}

.event-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-header {
    margin-bottom: 20px;
}

.event-sponsor {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.event-title {
    font-size: 22px;
    font-weight: 900;
    color: white;
    line-height: 1.2;
    text-transform: uppercase;
}

/* Başlık altı: Detay butonu */
.event-detail-toggle {
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.02em;
    transition: all 0.2s ease;
}

.event-detail-toggle:hover {
    color: #ffffff;
    border-color: rgba(6, 182, 212, 0.35);
    box-shadow: 0 0 0 1px rgba(6, 182, 212, 0.18);
}

.event-detail-toggle .material-symbols-outlined {
    font-size: 18px;
}

/* Fotoğraf üstü Detay overlay (blur + scroll) */
.detail-overlay {
    position: absolute;
    inset: 0;
    z-index: 20;
    padding: 14px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.event-card.details-open .detail-overlay {
    opacity: 1;
    pointer-events: auto;
}

.event-card.details-open .event-image img {
    filter: blur(10px);
    transform: scale(1.02);
}

.detail-panel {
    width: 100%;
    height: 100%;
    border-radius: 14px;
    background: rgba(11, 17, 24, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.detail-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 12px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.detail-top-title {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: white;
}

.detail-close {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.detail-close:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(6, 182, 212, 0.35);
}

.detail-body {
    padding: 12px;
    overflow-y: auto;
    color: #e2e8f0;
    font-size: 13px;
    line-height: 1.6;
}

.detail-body h4 {
    font-size: 13px;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}

.detail-body p + p {
    margin-top: 10px;
}

.detail-body ul {
    padding-left: 16px;
    margin-top: 10px;
}

.detail-body li {
    margin: 6px 0;
    color: #cbd5e1;
}

.detail-body::-webkit-scrollbar {
    width: 6px;
}

.detail-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.18);
    border-radius: 999px;
}

/* Etkinlik Geri Sayım */
.event-countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

/* Ödül Bilgileri */
.event-prizes {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    padding: 16px;
    background: rgba(6, 182, 212, 0.05);
    border: 1px solid rgba(6, 182, 212, 0.15);
    border-radius: 12px;
}

.prize-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.prize-label {
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.prize-value {
    font-size: 16px;
    font-weight: 900;
    color: var(--primary);
}

.event-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 16px 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(6, 182, 212, 0.3);
    margin-top: auto;
}

.event-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.5);
}

.event-btn .material-symbols-outlined {
    font-size: 22px;
}

/* Telegram Butonu */
.event-btn.telegram-btn {
    background: linear-gradient(135deg, #0088cc, #006699);
    box-shadow: 0 4px 16px rgba(0, 136, 204, 0.4);
    justify-content: center;
    text-decoration: none;
    gap: 6px;
}

.event-btn.telegram-btn:hover {
    background: linear-gradient(135deg, #0099dd, #0077bb);
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.6);
    text-decoration: none;
}

.event-btn.telegram-btn i {
    font-size: 20px;
}

.event-btn {
    text-decoration: none;
}

.ticket-card {
    background: linear-gradient(135deg, rgba(22, 32, 44, 0.95), rgba(16, 24, 34, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.ticket-card:hover {
    transform: translateY(-8px);
    border-color: rgba(6, 182, 212, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(6, 182, 212, 0.2);
}

.ticket-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.ticket-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.ticket-card:hover .ticket-image img {
    transform: scale(1.05);
}

.ticket-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.95), rgba(8, 145, 178, 0.95));
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 900;
    color: white;
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.4);
    z-index: 10;
}

.ticket-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ticket-title {
    font-size: 20px;
    font-weight: 900;
    color: white;
    margin-bottom: 12px;
    line-height: 1.3;
}

.ticket-description {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 24px;
    line-height: 1.6;
    flex: 1;
}

/* Geri Sayım */
.ticket-countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 8px;
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 12px;
    transition: all 0.3s;
}

.ticket-card:hover .countdown-item {
    background: rgba(6, 182, 212, 0.12);
    border-color: rgba(6, 182, 212, 0.3);
}

.countdown-value {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
}

.countdown-label {
    font-size: 10px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ticket-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(6, 182, 212, 0.3);
}

.ticket-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.5);
}

.ticket-btn .material-symbols-outlined {
    font-size: 22px;
}

.game-card {
    background: var(--surface-dark);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.game-card:hover {
    transform: translateY(-8px);
    border-color: rgba(6, 182, 212, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(6, 182, 212, 0.2);
}

.game-card-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.game-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.game-card:hover .game-card-image img {
    transform: scale(1.1);
}

.game-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    opacity: 0;
    transition: opacity 0.3s;
}

.game-card:hover .game-card-overlay {
    opacity: 1;
}

.game-play-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(6, 182, 212, 0.4);
}

.game-play-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.6);
}

.game-play-btn .material-symbols-outlined {
    font-size: 24px;
}

.game-fav-btn {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
}

.game-fav-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: #ef4444;
    transform: scale(1.1);
}

.game-fav-btn .material-symbols-outlined {
    font-size: 24px;
}

.game-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.game-badge.hot {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.9), rgba(220, 38, 38, 0.9));
    color: white;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.5);
}

.game-badge.new {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.9), rgba(37, 99, 235, 0.9));
    color: white;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.game-badge.popular {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.9), rgba(147, 51, 234, 0.9));
    color: white;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
}

.game-badge.jackpot {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.9), rgba(245, 158, 11, 0.9));
    color: white;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.game-card-info {
    padding: 20px;
}

.game-card-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.game-card:hover .game-card-title {
    color: var(--primary);
}

.game-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.game-provider {
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

.game-rtp {
    font-size: 12px;
    padding: 4px 10px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 12px;
    color: var(--primary);
    font-weight: 600;
}

/* =================================
   SOSYAL MEDYA KARTLARI
   ================================= */

.social-cards {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
}

.social-card {
    background-color: var(--surface-dark);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.social-card:hover {
    background-color: var(--surface-hover);
}

.social-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    transition: transform 0.3s;
}

.social-card:hover .social-icon {
    transform: scale(1.1);
}

.social-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.social-icon.telegram {
    color: #229ED9;
}

.social-icon.twitter {
    color: white;
}

.social-icon.instagram {
    color: #E1306C;
}

.social-icon.youtube {
    color: #FF0000;
}

.social-icon .material-symbols-outlined {
    font-size: 48px;
}

.social-card h3 {
    font-weight: 700;
    color: white;
    font-size: 18px;
    margin-bottom: 4px;
}

.social-card p {
    font-size: 12px;
    color: #9ca3af;
    margin-bottom: 8px;
}

.social-reward {
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
}

/* =================================
   SLOT OYUNLARI
   ================================= */

.slots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.slot-card {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    background-color: var(--surface-dark);
    border: 1px solid var(--border-color);
}

.slot-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.slot-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: opacity 0.3s;
}

.slot-card:hover .slot-overlay {
    opacity: 1;
}

.slot-play-btn {
    background-color: var(--primary);
    color: white;
    padding: 12px;
    border-radius: 50%;
    border: none;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(16px);
    transition: transform 0.3s;
}

.slot-card:hover .slot-play-btn {
    transform: translateY(0);
}

.slot-play-btn .material-symbols-outlined {
    font-size: 32px;
}

.slot-name {
    color: white;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
}

.slot-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
}

.slot-badge.hot {
    background-color: #eab308;
    color: black;
}

.slot-badge.new {
    background-color: #3b82f6;
    color: white;
}

/* =================================
   FOOTER
   ================================= */

.footer {
    margin-top: 80px;
    padding: 60px 32px;
    text-align: center;
    background: transparent;
}

.footer-logo {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 16px;
}

.footer-logo h1 {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    font-style: italic;
}

.footer-logo h1 {
    color: white;
}

.logo-highlight {
    color: var(--primary);
}

.footer-text {
    color: #6b7280;
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.payment-methods {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.payment-methods span {
    color: #64748b;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s;
}

.payment-methods span:hover {
    color: #94a3b8;
}

/* =================================
   PUAN MARKET
   ================================= */

.market-header {
    text-align: center;
    margin-bottom: 48px;
}

.market-title {
    font-size: 36px;
    font-weight: 900;
    color: white;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.market-subtitle {
    font-size: 15px;
    color: #94a3b8;
    line-height: 1.6;
}

.market-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
}

.market-card {
    position: relative;
    background: linear-gradient(135deg, rgba(22, 32, 44, 0.95), rgba(16, 24, 34, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.market-card:hover {
    transform: translateY(-6px);
    border-color: rgba(6, 182, 212, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(6, 182, 212, 0.2);
}

.market-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 10;
}

.market-badge.balance {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.9), rgba(22, 163, 74, 0.9));
    color: white;
}

.market-badge.other {
    background: linear-gradient(135deg, rgba(100, 116, 139, 0.9), rgba(71, 85, 105, 0.9));
    color: white;
}

.market-image {
    position: relative;
    height: 220px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.6), rgba(30, 41, 59, 0.4));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.market-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.market-card:hover .market-image img {
    transform: scale(1.08);
}

/* Market Icon Styles */
.market-icon {
    font-size: 80px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease, filter 0.5s ease;
}

.market-card:hover .market-icon {
    transform: scale(1.15);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
}

/* Market Gradient Backgrounds */
.market-gradient-purple {
    background: linear-gradient(135deg, #7c3aed 0%, #4c1d95 50%, #2e1065 100%);
}

.market-gradient-cyan {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 50%, #155e75 100%);
}

.market-gradient-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 50%, #1e3a8a 100%);
}

.market-gradient-gold {
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 50%, #92400e 100%);
}

.market-gradient-emerald {
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #065f46 100%);
}

.market-gradient-pink {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 50%, #9d174d 100%);
}

.market-gradient-silver {
    background: linear-gradient(135deg, #94a3b8 0%, #64748b 50%, #334155 100%);
}

.market-gradient-indigo {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 50%, #3730a3 100%);
}

.market-label {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 20px;
    font-size: 13px;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 16px rgba(6, 182, 212, 0.4);
}

.market-content {
    padding: 24px;
}

.market-product-title {
    font-size: 18px;
    font-weight: 900;
    color: white;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.market-description {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 40px;
}

.market-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.market-price {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 900;
    color: #fbbf24;
}

.market-price .material-symbols-outlined {
    font-size: 26px;
    color: #fbbf24;
}

.market-btn {
    flex: 1;
    max-width: 180px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

.market-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.5);
}

/* =================================
   MODALS (POPUP)
   ================================= */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: linear-gradient(135deg, #1a2332 0%, #0f1821 100%);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 24px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    animation: slideUp 0.3s ease;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(239, 68, 68, 0.2);
    transform: rotate(90deg);
}

.modal-close .material-symbols-outlined {
    font-size: 24px;
}

/* Kayıt Ol Modal - Yan Yana Layout */
.register-modal {
    display: flex;
    padding: 0;
}

.modal-left {
    flex: 0 0 350px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(8, 145, 178, 0.05));
    padding: 48px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(6, 182, 212, 0.2);
}

.modal-brand {
    margin-bottom: 32px;
}

.modal-brand h1 {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    font-style: italic;
    color: white;
}

.modal-hero-image {
    width: 100%;
    max-width: 280px;
}

.modal-hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(6, 182, 212, 0.3));
}

.modal-right {
    flex: 1;
    padding: 48px 40px;
    overflow-y: auto;
}

/* Giriş Yap Modal - Tek Kolon */
.login-modal {
    max-width: 500px;
    padding: 48px 40px;
}

.modal-header {
    text-align: center;
    margin-bottom: 32px;
}

.modal-brand-title {
    font-size: 40px;
    font-weight: 900;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    font-style: italic;
    color: white;
    margin-bottom: 24px;
}

.modal-brand-title .site-logo {
    height: 96px;
    width: auto;
    max-width: 340px;
    object-fit: contain;
    display: inline-block;
}

.modal-title {
    font-size: 28px;
    font-weight: 900;
    color: white;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.modal-subtitle {
    font-size: 14px;
    color: #94a3b8;
}

/* Form Elemanları */
.modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 15px;
    transition: all 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(15, 23, 42, 0.8);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.form-input::placeholder {
    color: #475569;
}

.forgot-password {
    text-align: center;
    font-size: 14px;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}

.forgot-password:hover {
    color: #22d3ee;
}

.btn-modal {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
    box-shadow: 0 4px 16px rgba(6, 182, 212, 0.3);
}

.btn-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.5);
}

.btn-modal .material-symbols-outlined {
    font-size: 22px;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .register-modal {
        flex-direction: column;
    }
    
    .modal-left {
        flex: 0 0 auto;
        padding: 32px 24px;
    }
    
    .modal-brand h1 {
        font-size: 36px;
    }
    
    .modal-hero-image {
        max-width: 200px;
    }
    
    .modal-right,
    .login-modal {
        padding: 32px 24px;
    }
    
    .modal-brand-title {
        font-size: 32px;
    }
    
    .modal-title {
        font-size: 24px;
    }
}

/* =================================
   YÜZEN DESTEK BUTONU
   ================================= */

.support-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 100;
    background-color: var(--primary);
    color: white;
    padding: 16px;
    border-radius: 50%;
    border: none;
    box-shadow: 0 25px 50px -12px rgba(6, 182, 212, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.support-btn:hover {
    background-color: var(--primary-dark);
    transform: scale(1.1);
}

.support-btn .material-symbols-outlined {
    font-size: 32px;
}

/* =================================
   GÖREVLER SAYFASI
   ================================= */

.tasks-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
}

.task-card {
    background: linear-gradient(135deg, var(--surface-dark) 0%, rgba(22, 32, 44, 0.8) 100%);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    gap: 16px;
    border: 1px solid var(--border-color-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.task-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #22d3ee);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.task-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 8px 32px rgba(6, 182, 212, 0.2);
}

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

.task-icon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.task-star {
    font-size: 32px;
    color: var(--primary);
    filter: drop-shadow(0 0 8px rgba(6, 182, 212, 0.5));
}

.task-points {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 8px;
    padding: 8px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 50px;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

.task-points .points-value {
    font-size: 20px;
    font-weight: 900;
    color: white;
    line-height: 1;
}

.task-points .points-label {
    font-size: 9px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.task-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.task-title {
    font-size: 14px;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.task-description {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
    flex: 1;
}

.task-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    background: transparent;
    border: 1px solid var(--border-color-light);
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.task-btn .material-symbols-outlined {
    font-size: 18px;
}

.task-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 4px 16px rgba(6, 182, 212, 0.4);
}

/* =================================
   VIP SAYFASI - GİRİŞ FORMU
   ================================= */

.vip-login-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 20px;
    min-height: 60vh;
}

.vip-login-card {
    background: linear-gradient(135deg, var(--surface-dark) 0%, rgba(22, 32, 44, 0.95) 100%);
    border-radius: 16px;
    padding: 40px;
    width: 100%;
    max-width: 450px;
    border: 1px solid var(--border-color-light);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.vip-login-title {
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin-bottom: 32px;
}

.vip-login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vip-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vip-form-label {
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.vip-form-input {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid var(--border-color-light);
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 14px;
    color: white;
    transition: all 0.3s ease;
    font-family: var(--font-family);
}

.vip-form-input::placeholder {
    color: var(--text-muted);
}

.vip-form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.vip-forgot-password {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
    width: fit-content;
}

.vip-forgot-password:hover {
    color: #22d3ee;
}

.vip-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary) 0%, #22d3ee 100%);
    border: none;
    border-radius: 12px;
    color: #0f172a;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-family);
    margin-top: 8px;
}

.vip-submit-btn .material-symbols-outlined {
    font-size: 22px;
    font-weight: 700;
}

.vip-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.4);
}

.vip-submit-btn:active {
    transform: translateY(0);
}

/* =================================
   ÖZEL ORANLAR SAYFASI
   ================================= */

.oranlar-tabs {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.oranlar-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    background: transparent;
    border: 1px solid var(--border-color-light);
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-family);
}

.oranlar-tab .material-symbols-outlined {
    font-size: 20px;
}

.oranlar-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.oranlar-tab.active {
    background: linear-gradient(135deg, var(--primary) 0%, #22d3ee 100%);
    border-color: transparent;
    color: #0f172a;
}

.oranlar-tab-content {
    display: none;
}

.oranlar-tab-content.active {
    display: block;
}

/* Empty State */
.oranlar-empty-state {
    background: var(--surface-dark);
    border: 1px solid var(--border-color-light);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.oranlar-empty-icon {
    font-size: 36px;
    color: var(--primary);
}

.oranlar-empty-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.oranlar-empty-text {
    font-size: 13px;
    color: var(--text-muted);
}

/* Match Cards Grid */
.oranlar-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
}

@media (min-width: 768px) {
    .oranlar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .oranlar-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1400px) {
    .oranlar-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Match Card */
.match-card {
    background: var(--surface-dark);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color-light);
    transition: all 0.3s ease;
}

.match-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.match-card.success {
    border-top: 3px solid #10b981;
}

.match-card.failed {
    border-top: 3px solid #ef4444;
}

.match-header {
    padding: 12px 16px;
    display: flex;
    justify-content: center;
}

.match-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.match-status .material-symbols-outlined {
    font-size: 16px;
}

.match-status.success {
    color: #10b981;
}

.match-status.failed {
    color: #ef4444;
}

.match-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px 12px;
    border-bottom: 1px solid var(--border-color);
}

.match-league {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--text-muted);
}

.match-league .material-symbols-outlined {
    font-size: 14px;
}

.match-date {
    font-size: 11px;
    color: var(--text-muted);
}

.match-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 16px;
    gap: 12px;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.team-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-logo .material-symbols-outlined {
    font-size: 24px;
    color: white;
}

.team-logo.yellow { background: linear-gradient(135deg, #fbbf24, #f59e0b); }
.team-logo.green { background: linear-gradient(135deg, #22c55e, #16a34a); }
.team-logo.red { background: linear-gradient(135deg, #ef4444, #dc2626); }
.team-logo.blue { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.team-logo.orange { background: linear-gradient(135deg, #f97316, #ea580c); }
.team-logo.burgundy { background: linear-gradient(135deg, #881337, #9f1239); }
.team-logo.black { background: linear-gradient(135deg, #374151, #1f2937); }
.team-logo.white { background: linear-gradient(135deg, #f8fafc, #e2e8f0); }
.team-logo.white .material-symbols-outlined { color: #1f2937; }
.team-logo.skyblue { background: linear-gradient(135deg, #38bdf8, #0ea5e9); }

.team-name {
    font-size: 11px;
    font-weight: 600;
    color: white;
    text-align: center;
}

.match-score {
    font-size: 20px;
    font-weight: 900;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 8px;
}

.match-prediction {
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid var(--border-color);
}

.prediction-label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.prediction-text {
    font-size: 13px;
    font-weight: 600;
    color: white;
}

.match-stats {
    display: flex;
    justify-content: space-around;
    padding: 16px;
    background: rgba(0, 0, 0, 0.3);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-value {
    font-size: 16px;
    font-weight: 800;
    color: white;
}

.stat-label {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* =================================
   SLOT OYUNLARI SAYFASI
   ================================= */

/* Provider Filtreleri */
.slot-providers {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    background: var(--surface-dark);
    border-radius: 12px;
    padding: 12px;
    border: 1px solid var(--border-color-light);
}

.slot-provider-nav {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--border-color-light);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.slot-provider-nav:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.slot-provider-list {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    flex: 1;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.slot-provider-list::-webkit-scrollbar {
    display: none;
}

.slot-provider-btn {
    padding: 12px 20px;
    background: transparent;
    border: 1px solid var(--border-color-light);
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: var(--font-family);
}

.slot-provider-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.slot-provider-btn.active {
    background: linear-gradient(135deg, var(--primary) 0%, #22d3ee 100%);
    border-color: transparent;
    color: #0f172a;
}

/* Slot Oyunları Grid */
.slot-games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .slot-games-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (min-width: 1024px) {
    .slot-games-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (min-width: 1400px) {
    .slot-games-grid {
        grid-template-columns: repeat(8, 1fr);
    }
}

/* Slot Kartı */
.slot-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slot-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.slot-card:hover .slot-overlay {
    opacity: 1;
}

.slot-image {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 12px;
    position: relative;
}

.slot-title {
    font-size: 11px;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.slot-provider-tag {
    font-size: 8px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    margin-top: 4px;
}

.slot-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slot-play-btn {
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--primary) 0%, #22d3ee 100%);
    border: none;
    border-radius: 8px;
    color: #0f172a;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-family);
}

.slot-play-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.5);
}

.slot-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
}

.slot-badge.hot {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: white;
}

/* Slot Gradient Backgrounds */
.slot-gradient-purple { background: linear-gradient(180deg, #7c3aed 0%, #4c1d95 60%, #1e1b4b 100%); }
.slot-gradient-pink { background: linear-gradient(180deg, #ec4899 0%, #be185d 60%, #831843 100%); }
.slot-gradient-candy { background: linear-gradient(180deg, #f472b6 0%, #db2777 60%, #9d174d 100%); }
.slot-gradient-gold { background: linear-gradient(180deg, #fbbf24 0%, #d97706 60%, #92400e 100%); }
.slot-gradient-emerald { background: linear-gradient(180deg, #34d399 0%, #059669 60%, #064e3b 100%); }
.slot-gradient-rainbow { background: linear-gradient(180deg, #f472b6 0%, #8b5cf6 40%, #3b82f6 70%, #06b6d4 100%); }
.slot-gradient-starpink { background: linear-gradient(180deg, #f9a8d4 0%, #ec4899 60%, #9d174d 100%); }
.slot-gradient-baklava { background: linear-gradient(180deg, #fcd34d 0%, #f59e0b 60%, #b45309 100%); }
.slot-gradient-dice { background: linear-gradient(180deg, #a78bfa 0%, #7c3aed 60%, #4c1d95 100%); }
.slot-gradient-rushpink { background: linear-gradient(180deg, #fb7185 0%, #e11d48 60%, #881337 100%); }
.slot-gradient-xmas { background: linear-gradient(180deg, #4ade80 0%, #16a34a 40%, #dc2626 100%); }
.slot-gradient-scatter { background: linear-gradient(180deg, #f97316 0%, #ea580c 60%, #9a3412 100%); }
.slot-gradient-athena { background: linear-gradient(180deg, #c4b5fd 0%, #8b5cf6 60%, #5b21b6 100%); }
.slot-gradient-sugarxmas { background: linear-gradient(180deg, #86efac 0%, #22c55e 40%, #ef4444 100%); }
.slot-gradient-sugarrush { background: linear-gradient(180deg, #fda4af 0%, #f43f5e 60%, #be123c 100%); }
.slot-gradient-sweetxmas { background: linear-gradient(180deg, #f9a8d4 0%, #ec4899 40%, #22c55e 100%); }
.slot-gradient-hades { background: linear-gradient(180deg, #6366f1 0%, #4338ca 60%, #1e1b4b 100%); }
.slot-gradient-bonanza { background: linear-gradient(180deg, #f472b6 0%, #a855f7 60%, #6d28d9 100%); }
.slot-gradient-wisdom { background: linear-gradient(180deg, #fde047 0%, #eab308 60%, #a16207 100%); }
.slot-gradient-journey { background: linear-gradient(180deg, #fb923c 0%, #ea580c 60%, #9a3412 100%); }
.slot-gradient-goldrush { background: linear-gradient(180deg, #60a5fa 0%, #2563eb 60%, #1e3a8a 100%); }
.slot-gradient-bounty { background: linear-gradient(180deg, #fbbf24 0%, #b45309 60%, #78350f 100%); }
.slot-gradient-fruit { background: linear-gradient(180deg, #a3e635 0%, #65a30d 60%, #3f6212 100%); }
.slot-gradient-dragons { background: linear-gradient(180deg, #f87171 0%, #dc2626 60%, #7f1d1d 100%); }
.slot-gradient-coffee { background: linear-gradient(180deg, #92400e 0%, #78350f 60%, #451a03 100%); }
.slot-gradient-romeo { background: linear-gradient(180deg, #f43f5e 0%, #be123c 60%, #881337 100%); }
.slot-gradient-super7 { background: linear-gradient(180deg, #22d3ee 0%, #0891b2 60%, #164e63 100%); }
.slot-gradient-lions { background: linear-gradient(180deg, #ef4444 0%, #b91c1c 60%, #7f1d1d 100%); }
.slot-gradient-dance { background: linear-gradient(180deg, #c084fc 0%, #9333ea 60%, #581c87 100%); }
.slot-gradient-lionsgold { background: linear-gradient(180deg, #fcd34d 0%, #ca8a04 60%, #713f12 100%); }
.slot-gradient-megaways { background: linear-gradient(180deg, #f472b6 0%, #db2777 60%, #831843 100%); }
.slot-gradient-piggies { background: linear-gradient(180deg, #67e8f9 0%, #06b6d4 60%, #0e7490 100%); }
.slot-gradient-aladdin { background: linear-gradient(180deg, #fde047 0%, #ca8a04 60%, #78350f 100%); }
.slot-gradient-egypt { background: linear-gradient(180deg, #fcd34d 0%, #b45309 60%, #78350f 100%); }
.slot-gradient-egyptclassic { background: linear-gradient(180deg, #f59e0b 0%, #d97706 60%, #92400e 100%); }
.slot-gradient-asgard { background: linear-gradient(180deg, #818cf8 0%, #4f46e5 60%, #3730a3 100%); }
.slot-gradient-aztec { background: linear-gradient(180deg, #34d399 0%, #059669 60%, #064e3b 100%); }
.slot-gradient-aztecgems { background: linear-gradient(180deg, #2dd4bf 0%, #0d9488 60%, #134e4a 100%); }
.slot-gradient-aztecdeluxe { background: linear-gradient(180deg, #5eead4 0%, #14b8a6 60%, #0f766e 100%); }
.slot-gradient-barn { background: linear-gradient(180deg, #4ade80 0%, #16a34a 60%, #14532d 100%); }

/* Daha Fazla Göster */
.slot-load-more {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 0;
}

.load-more-btn {
    padding: 14px 48px;
    background: linear-gradient(135deg, var(--primary) 0%, #22d3ee 100%);
    border: none;
    border-radius: 8px;
    color: #0f172a;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-family);
}

.load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.4);
}

.load-more-info {
    font-size: 13px;
    color: var(--text-muted);
}

/* =================================
   RESPONSIVE TASARIM
   ================================= */

/* Tablet ve üzeri */
@media (min-width: 768px) {
    .hero-content {
        min-height: 450px;
        padding: 64px;
    }
    
    .header-social-links {
        display: flex;
    }
    
    .main-sponsors {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vip-sites-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .market-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tasks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .social-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .slots-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tickets-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-text {
        font-size: 32px;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .sidebar {
        display: flex;
    }
    
    .main-content {
        padding: 32px;
    }
    
    .main-sponsors {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .vip-sites-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .market-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .tasks-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .feature-cards {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .social-cards {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .slots-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .tickets-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .header-social-links {
        display: flex;
    }
}

/* Geniş ekranlar */
@media (min-width: 1280px) {
    .vip-sites-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .slots-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .games-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .tasks-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Mobil menü butonu */
@media (max-width: 1023px) {
    .mobile-menu-btn {
        display: block;
    }
}



/* === Etkinlikler: 3 kart/row (desktop) === */
@media (min-width: 1200px) {
    .events-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .event-image {
        min-height: 220px;
        max-height: 350px;
    }

    .event-content {
        padding: 18px;
    }

    .event-sponsor {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .event-title {
        font-size: 18px;
    }

    .event-countdown {
        gap: 6px;
        margin-bottom: 16px;
    }

    .countdown-item {
        padding: 10px 6px;
        border-radius: 10px;
    }

    .countdown-value {
        font-size: 20px;
        margin-bottom: 4px;
    }

    .event-prizes {
        padding: 12px;
        margin-bottom: 16px;
        gap: 10px;
    }

    .event-btn {
        padding: 14px 16px;
        font-size: 14px;
        border-radius: 12px;
    }
}



/* =================================
   SADE GÖRÜNÜM (SADECE KARTLAR)
   - Arka plan transparan
   - Header / navbar / modal yok
   ================================= */

html, body.cards-only {
    background-color: transparent !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    height: auto !important;
    min-height: 100vh;
}

body.cards-only .main-content {
    background-color: transparent !important;
    overflow-y: visible !important;
    height: auto !important;
}

/* İstersen embed/overlay kullanımında sayfa kenar boşluğu */
body.cards-only .container {
    padding-top: 0;
    padding-bottom: 200px; /* iPhone Safari alt bar için büyük boşluk */
}

/* Mobil cihazlar için ekstra alt boşluk */
@media (max-width: 768px) {
    body.cards-only .container {
        padding-bottom: 250px; /* Mobilde çok daha fazla boşluk */
    }
    
    body.cards-only .main-content {
        padding-bottom: 60px;
    }
}
