/* ========================================
   PREMIUM GLASS THEME 2025
   Modern • Elegant • Professional
   ======================================== */

:root {
    /* Primary Colors - Cool & Professional */
    --primary-blue: #3b82f6;
    --primary-teal: #14b8a6;
    --accent-amber: #f59e0b;
    --accent-rose: #f43f5e;
    
    /* Background Colors - Dark Glass */
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-tertiary: #334155;
    --bg-card: rgba(30, 41, 59, 0.7);
    
    /* Glass Effects */
    --glass-bg: rgba(51, 65, 85, 0.4);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    
    /* Text Colors */
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #64748b;
    
    /* Status Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    
    /* Gradients - Subtle & Elegant */
    --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --gradient-cyan: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    --gradient-rose: linear-gradient(135deg, #f43f5e 0%, #ec4899 100%);
    --gradient-teal: linear-gradient(135deg, #14b8a6 0%, #06b6d4 100%);
    
    /* Spacing */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.35);
    --shadow-glow-blue: 0 0 30px rgba(59, 130, 246, 0.3);
    --shadow-glow-teal: 0 0 30px rgba(20, 184, 166, 0.3);
}

/* ========================================
   BASE STYLES
   ======================================== */

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Animated Background - Glass Theme */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(20, 184, 166, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    z-index: -1;
    animation: backgroundShift 25s ease infinite;
}

@keyframes backgroundShift {
    0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.8; transform: scale(1.05) rotate(5deg); }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   NAVIGATION
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    background: rgba(15, 15, 35, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    padding: 8px 0;
    background: rgba(15, 15, 35, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* Logo */
.nav-brand {
    flex-shrink: 0;
}

.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
    transition: transform 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 42px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.5));
}

.brand-text {
    font-size: 26px;
    font-weight: 800;
    background: linear-gradient(135deg, #00d9ff 0%, #8b5cf6 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.2), transparent);
    transition: left 0.5s ease;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(139, 92, 246, 0.15);
    transform: translateY(-2px);
}

.nav-link.active {
    color: var(--text-primary);
    background: rgba(139, 92, 246, 0.25);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

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

/* User Info */
/* User Info - Compact Modern Design */
.user-info-compact {
    display: flex;
    align-items: center;
    gap: 8px;
}

.balance-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    transition: all 0.3s ease;
}

.balance-badge i {
    font-size: 14px;
    color: #3b82f6;
}

.balance-badge:hover {
    background: rgba(15, 23, 42, 0.95);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-1px);
}

.user-menu-wrapper {
    position: relative;
}

.user-menu-wrapper:hover .user-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-avatar-compact {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(59, 130, 246, 0.3);
}

.user-avatar-compact i {
    font-size: 16px;
    color: #ffffff;
}

.user-avatar-compact:hover {
    transform: scale(1.05);
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

/* Nav Actions */
.nav-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn i {
    font-size: 14px;
    line-height: 1;
}

.btn span {
    line-height: 1;
}

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

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

.btn-primary {
    background: rgba(59, 130, 246, 0.15);
    backdrop-filter: blur(15px) saturate(180%);
    border: 1px solid rgba(59, 130, 246, 0.4);
    color: white;
    box-shadow: 
        0 4px 20px rgba(59, 130, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
    background: rgba(59, 130, 246, 0.25);
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 
        0 8px 30px rgba(59, 130, 246, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(16, 185, 129, 0.15);
    backdrop-filter: blur(15px) saturate(180%);
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: white;
    box-shadow: 
        0 4px 20px rgba(16, 185, 129, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
    background: rgba(16, 185, 129, 0.25);
    border-color: rgba(16, 185, 129, 0.6);
    box-shadow: 
        0 8px 30px rgba(16, 185, 129, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(139, 92, 246, 0.5);
}

.btn-outline:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: var(--primary-purple);
}

/* Header Login & Register Buttons */

/* ========================================
   MAIN CONTENT
   ======================================== */

.main-content {
    padding-top: 85px;
    min-height: 100vh;
}

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

.modern-slider-wrapper {
    margin: 30px 0 40px;
    position: relative;
}

.modern-slider {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
    cursor: pointer;
}

.slide-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
}

.slide-item.active {
    opacity: 1;
    z-index: 1;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    width: 30px;
    border-radius: 5px;
    background: linear-gradient(90deg, #00d9ff, #8b5cf6);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.8);
}

/* ========================================
   WINNERS SECTION - AUTO SCROLL
   ======================================== */

.recent-winners-section {
    margin: 30px 0;
    padding: 20px 0;
    background: rgba(59, 130, 246, 0.03);
    border-top: 1px solid rgba(59, 130, 246, 0.15);
    border-bottom: 1px solid rgba(20, 184, 166, 0.15);
    position: relative;
    overflow: hidden;
}

.winners-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.recent-winners-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.winners-title-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.winners-icon {
    width: 36px;
    height: 36px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
}

.recent-winners-title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.winners-live-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    color: #10b981;
    letter-spacing: 0.3px;
}

.live-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Winners Auto-Slide Animation + Manual Scroll */
.winners-marquee-wrapper {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    cursor: grab;
    user-select: none;
}

.winners-marquee-wrapper::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
}

.winners-marquee-wrapper:active {
    cursor: grabbing;
}

.winners-marquee {
    width: 100%;
    overflow: visible;
}

.winners-marquee-content {
    display: flex;
    gap: 12px;
    padding: 5px 0;
    width: fit-content;
    animation: autoSlide 90s linear infinite;
}

/* Hover veya touch'ta animasyon durdur */
.winners-marquee-wrapper:hover .winners-marquee-content,
.winners-marquee-wrapper:active .winners-marquee-content {
    animation-play-state: paused;
}

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

/* Mobilde daha hızlı ama yine de yavaş */
@media (max-width: 768px) {
    .winners-marquee-content {
        animation: autoSlide 60s linear infinite;
    }
}

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

.winner-card {
    flex: 0 0 240px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: rgba(51, 65, 85, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.winner-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

.winner-game-image {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.winner-game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.winner-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.winner-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
}

.winner-game {
    font-size: 10px;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.winner-amount-wrapper {
    display: flex;
    align-items: baseline;
    gap: 2px;
    flex-shrink: 0;
}

.winner-amount {
    font-size: 14px;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.winner-currency {
    font-size: 11px;
    color: #f59e0b;
    font-weight: 600;
}

.winner-arrow {
    color: var(--text-muted);
    font-size: 10px;
    flex-shrink: 0;
}

/* Mobile Layout */
@media (max-width: 768px) {
    .recent-winners-header {
        justify-content: space-between;
        padding: 0 20px;
    }

    .winners-marquee-wrapper {
        padding: 0 10px;
    }

    .winner-card {
        flex: 0 0 200px;
        padding: 8px;
        gap: 8px;
    }

    .winner-game-image {
        width: 36px;
        height: 36px;
    }

    .winner-name {
        font-size: 11px;
    }

    .winner-game {
        font-size: 9px;
    }

    .winner-amount {
        font-size: 12px;
    }
}

/* ========================================
   GAMES SECTION
   ======================================== */

.games-section {
    margin: 50px 0;
}

.section {
    padding: 30px 0;
}

.section-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 30px;
    gap: 20px;
}

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

.section-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.section-header-center .section-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    line-height: 1.2;
}

.section-header-center .section-title i {
    font-size: 22px;
    background: var(--gradient-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header-center .section-subtitle {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
    padding: 0;
}

.view-all-center {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.section-header-center .btn-view-all {
    margin-top: 0;
    flex-shrink: 0;
}

.section-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-cyan);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
    flex-shrink: 0;
}

.section-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
}

.section-subtitle {
    font-size: 13px;
    color: var(--text-secondary);
    padding-left: 0;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-view-all:hover {
    background: rgba(59, 130, 246, 0.25);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

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

@media (min-width: 768px) and (max-width: 1199px) {
    .games-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.game-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg-card);
    box-shadow: var(--shadow-md);
    width: 100%;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

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

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
}

.game-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
    background: rgba(15, 23, 42, 0.8);
}

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

.game-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 8px;
    background: linear-gradient(to top, 
        rgba(15, 23, 42, 0.95) 0%, 
        rgba(15, 23, 42, 0.7) 60%, 
        transparent 100%);
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
    pointer-events: none;
}

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

.game-card:hover .game-info {
    opacity: 0;
}

/* Touch cihazlarda hover'ı devre dışı bırak */
@media (hover: none) and (pointer: coarse) {
    /* Mobilde overlay ve before efektini kapat */
    .game-card::before {
        opacity: 0 !important;
    }
    
    .game-overlay {
        opacity: 0 !important;
        pointer-events: none !important;
    }
    
    .game-card:hover .game-info {
        opacity: 1 !important;
    }
    
    /* Sadece hafif basma efekti */
    .game-card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    .game-card:active .game-image {
        transform: scale(1) !important;
    }
}

.play-btn {
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: white;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    pointer-events: auto;
}

.play-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.play-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.play-btn:hover i {
    transform: translateX(2px);
}

.game-name {
    font-size: 12px;
    font-weight: 600;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

.game-provider {
    display: none;
}

/* Mobil optimizasyonu */
@media (max-width: 768px) {
    .game-info {
        padding: 8px 6px;
        background: linear-gradient(to top, 
            rgba(15, 23, 42, 0.85) 0%, 
            transparent 100%);
    }
    
    .game-name {
        font-size: 11px;
        font-weight: 600;
    }
    
    .play-btn {
        padding: 10px 24px;
        font-size: 13px;
        gap: 6px;
    }
    
    .play-btn i {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .game-info {
        padding: 6px 5px;
    }
    
    .game-name {
        font-size: 10px;
    }
    
    .play-btn {
        padding: 9px 20px;
        font-size: 12px;
    }
}

.game-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-purple);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 3;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

.game-card:hover .game-play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

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

.footer {
    margin-top: 80px;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.5), transparent);
}

.footer-header {
    padding: 30px 0;
    text-align: center;
    background: rgba(139, 92, 246, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-header-title {
    font-size: 20px;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.footer-header-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.footer-main {
    padding: 50px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr auto;
    gap: 40px;
    align-items: start;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact .footer-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    font-weight: 600;
}

.footer-contact .footer-email {
    font-size: 16px;
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-contact .footer-email:hover {
    color: var(--primary-cyan);
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.social-icon.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.social-icon.telegram {
    background: linear-gradient(135deg, #0088cc, #0077b5);
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.footer-menu-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    background: var(--gradient-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-menu a:hover {
    color: var(--primary-cyan);
    transform: translateX(5px);
}

.footer-badges-desktop {
    display: flex;
    justify-content: flex-end;
}

.footer-badges {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-badges .badge-18,
.footer-badges .badge-gcb {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.footer-badges .badge-18 {
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.footer-badges .gcb-link:hover img {
    transform: scale(1.1);
}

.footer-license {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.footer-license p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.footer-payments {
    padding: 35px 0;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.payment-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.payment-row img {
    height: 28px;
    width: auto;
    opacity: 0.6;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.payment-row img:hover {
    opacity: 1;
    transform: scale(1.15);
    filter: brightness(0) invert(1);
}

.footer-badges-mobile,
.footer-license-mobile {
    display: none;
}

.mobile-nav-spacer {
    display: none;
}

/* ========================================
   MOBILE NAVIGATION
   ======================================== */

.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 15, 35, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(139, 92, 246, 0.3);
    padding: 8px 0;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
}

.mobile-bottom-nav .mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 11px;
    font-weight: 500;
    padding: 8px;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    flex: 1;
}

.mobile-bottom-nav .mobile-nav-item.active {
    color: var(--primary-cyan);
    background: rgba(0, 217, 255, 0.1);
}

.mobile-bottom-nav .mobile-nav-item i {
    font-size: 20px;
}

.mobile-bottom-nav .mobile-nav-item span {
    font-size: 10px;
}

.support-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.online-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    border: 2px solid var(--bg-primary);
    animation: blink 1.5s ease-in-out infinite;
}

/* Side Menu */
.side-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.side-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100%;
    background: var(--bg-secondary);
    border-left: 1px solid rgba(139, 92, 246, 0.3);
    z-index: 1999;
    overflow-y: auto;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
}

.side-menu.active {
    right: 0;
}

.side-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(139, 92, 246, 0.1);
}

.side-menu-header h3 {
    font-size: 20px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.side-menu-close {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.side-menu-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.side-menu-content {
    padding: 15px;
}

.side-menu-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    margin-bottom: 8px;
}

.side-menu-item i {
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.side-menu-item:hover {
    background: rgba(139, 92, 246, 0.15);
    color: var(--text-primary);
    transform: translateX(5px);
}

.side-menu-item.active {
    background: rgba(139, 92, 246, 0.25);
    color: var(--primary-cyan);
}

.side-menu-item.active i {
    color: var(--primary-cyan);
}

.side-menu-item.logout {
    color: var(--danger);
}

.side-menu-item.logout:hover {
    background: rgba(239, 68, 68, 0.15);
}

.side-menu-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 15px 0;
}

.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(139, 92, 246, 0.3);
    padding: 10px 0;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
}

.mobile-nav-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 11px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.mobile-nav-item.active {
    color: var(--primary-cyan);
    background: rgba(0, 217, 255, 0.1);
}

.mobile-nav-item i {
    font-size: 20px;
}

.mobile-nav-item span {
    font-size: 10px;
}

/* ========================================
   MODALS
   ======================================== */

/* Auth Modals */
.auth-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.auth-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: var(--bg-secondary);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--radius-xl);
    padding: 0;
    width: 90%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 2001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

/* Kayıt modalı için desktop düzenlemesi */
#registerModal {
    max-width: 900px;
}

@media (min-width: 769px) {
    #registerModal .auth-modal-body form {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px 25px;
    }
    
    #registerModal .form-group {
        margin-bottom: 0;
    }
    
    /* Checkbox'ları yan yana yap - son 2 form-group */
    #registerModal .form-group:nth-of-type(7) {
        grid-column: 1;
    }
    
    #registerModal .form-group:nth-of-type(8) {
        grid-column: 2;
    }
    
    #registerModal .btn-primary {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 10px auto 0;
    }
    
    #registerModal .auth-switch-text {
        grid-column: 1 / -1;
        margin-top: 10px;
    }
}

.auth-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.auth-modal-header {
    padding: 25px 25px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    background: rgba(139, 92, 246, 0.05);
}

.auth-modal-header h2 {
    font-size: 24px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.auth-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.auth-modal-body {
    padding: 25px;
}

/* Auth modal scrollbar - Koyu mor tema */
.auth-modal {
    scrollbar-width: thin;
    scrollbar-color: rgba(109, 40, 217, 0.6) rgba(30, 27, 75, 0.4);
}

.auth-modal::-webkit-scrollbar {
    width: 8px;
}

.auth-modal::-webkit-scrollbar-track {
    background: rgba(30, 27, 75, 0.4);
    border-radius: 10px;
}

.auth-modal::-webkit-scrollbar-thumb {
    background: linear-gradient(
        180deg,
        rgba(109, 40, 217, 0.7),
        rgba(88, 28, 135, 0.7)
    );
    border-radius: 10px;
    border: 1px solid rgba(109, 40, 217, 0.3);
}

.auth-modal::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(
        180deg,
        rgba(109, 40, 217, 0.9),
        rgba(88, 28, 135, 0.9)
    );
}

.auth-alert {
    padding: 12px 16px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.auth-alert.success {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--success);
}

.auth-alert.error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: var(--danger);
}

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

/* Form Styles in Modals */
.input-with-icon {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 16px;
    z-index: 1;
}

.input-with-icon .form-control {
    padding-left: 45px;
}

.password-input-wrapper {
    position: relative;
}

.password-input-wrapper .input-icon {
    left: 16px;
}

.password-input-wrapper .form-control {
    padding-left: 45px;
    padding-right: 45px;
}

.password-toggle {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 16px;
    transition: color 0.3s ease;
    z-index: 1;
}

.password-toggle:hover {
    color: var(--text-primary);
}

.form-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 13px;
    color: rgba(203, 213, 225, 0.9);
    line-height: 1.6;
    user-select: none;
}

.checkbox-wrapper input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 1px;
    accent-color: #3b82f6;
}

.checkbox-wrapper span {
    flex: 1;
}

.checkbox-wrapper .terms-link {
    color: #60a5fa;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.checkbox-wrapper .terms-link:hover {
    color: #3b82f6;
    text-decoration: underline;
}

.forgot-password-link {
    color: var(--primary-cyan);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.forgot-password-link:hover {
    color: var(--primary-purple);
}

.required-mark {
    color: var(--danger);
    margin-left: 2px;
}

.btn-full {
    width: 100%;
}

.phone-input-wrapper {
    position: relative;
}

.phone-input-wrapper .form-control {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 14px;
    transition: all 0.3s ease;
}

.phone-input-wrapper .form-control::placeholder {
    color: var(--text-muted);
}

.phone-input-wrapper .input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 16px;
    pointer-events: none;
}

.phone-input-wrapper .form-control {
    padding-left: 48px;
}

.phone-input-wrapper .form-control:focus {
    outline: none;
    border-color: rgba(59, 130, 246, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-purple);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}

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

/* ========================================
   MODAL - Ultra Professional Glass Design
   ======================================== */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.94);
    backdrop-filter: blur(20px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    animation: modalBackdropFade 0.4s ease;
    padding: 20px;
}

.modal.active {
    display: flex;
}

@keyframes modalBackdropFade {
    from { 
        opacity: 0; 
        backdrop-filter: blur(0px);
    }
    to { 
        opacity: 1; 
        backdrop-filter: blur(20px);
    }
}

.modal-content {
    position: relative;
    background: linear-gradient(
        145deg,
        rgba(30, 41, 59, 0.98) 0%,
        rgba(51, 65, 85, 0.95) 100%
    );
    backdrop-filter: blur(40px);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 24px;
    padding: 50px 45px 45px;
    max-width: 460px;
    width: 100%;
    max-height: 88vh;
    overflow: hidden;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 100px rgba(59, 130, 246, 0.15),
        inset 0 1px 2px rgba(255, 255, 255, 0.1);
    animation: modalSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Decorative top accent */
.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(59, 130, 246, 0.8) 20%,
        rgba(139, 92, 246, 0.8) 50%,
        rgba(236, 72, 153, 0.8) 80%,
        transparent
    );
}

/* Subtle inner glow */
.modal-content::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    height: 100px;
    background: linear-gradient(
        180deg,
        rgba(59, 130, 246, 0.05) 0%,
        transparent 100%
    );
    border-radius: 24px 24px 0 0;
    pointer-events: none;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(40px) scale(0.94);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-header {
    margin-bottom: 35px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.modal-title {
    font-size: 30px;
    font-weight: 800;
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #e0e7ff 50%,
        #c7d2fe 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(59, 130, 246, 0.3);
}

.modal-subtitle {
    font-size: 14px;
    color: rgba(203, 213, 225, 0.75);
    font-weight: 400;
    line-height: 1.5;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(51, 65, 85, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(239, 68, 68, 0.25);
    border-color: rgba(239, 68, 68, 0.5);
    color: white;
    transform: rotate(90deg) scale(1.05);
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.3);
}

/* Modal Body */
.modal-body {
    position: relative;
    z-index: 1;
    max-height: calc(88vh - 180px);
    overflow-y: auto;
    padding-right: 5px;
}

/* Custom Professional Scrollbar - Blue Theme */
.modal-body::-webkit-scrollbar {
    width: 6px;
}

.modal-body::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.5);
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: linear-gradient(
        180deg,
        rgba(59, 130, 246, 0.6),
        rgba(99, 102, 241, 0.6)
    );
    border-radius: 10px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(
        180deg,
        rgba(59, 130, 246, 0.8),
        rgba(99, 102, 241, 0.8)
    );
}

/* Scrollbar Firefox */
.modal-body {
    scrollbar-width: thin;
    scrollbar-color: rgba(59, 130, 246, 0.6) rgba(15, 23, 42, 0.5);
}

/* Mobile Modal */
@media (max-width: 600px) {
    .modal {
        padding: 15px;
    }
    
    .modal-content {
        padding: 40px 30px 35px;
        border-radius: 20px;
        max-height: 90vh;
    }
    
    .modal-content::before {
        height: 2px;
    }
    
    .modal-title {
        font-size: 26px;
    }
    
    .modal-subtitle {
        font-size: 13px;
    }
    
    .modal-close {
        top: 15px;
        right: 15px;
        width: 36px;
        height: 36px;
        border-radius: 10px;
        font-size: 18px;
    }
    
    .modal-body {
        max-height: calc(90vh - 160px);
    }
}

/* ========================================
   FORM STYLES - Ultra Professional Design
   ======================================== */

.form-group {
    margin-bottom: 22px;
    position: relative;
}

.form-label {
    display: block;
    margin-bottom: 9px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(226, 232, 240, 0.95);
    letter-spacing: 0.3px;
    text-transform: uppercase;
    font-size: 11px;
}

.form-input {
    width: 100%;
    padding: 15px 18px;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(71, 85, 105, 0.4);
    border-radius: 14px;
    color: white;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-input::placeholder {
    color: rgba(148, 163, 184, 0.4);
    font-weight: 400;
}

.form-input:hover:not(:focus) {
    border-color: rgba(71, 85, 105, 0.6);
    background: rgba(15, 23, 42, 0.7);
}

.form-input:focus {
    outline: none;
    border-color: rgba(59, 130, 246, 0.7);
    background: rgba(15, 23, 42, 0.85);
    box-shadow: 
        0 0 0 4px rgba(59, 130, 246, 0.12),
        inset 0 2px 4px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

/* Input Icons */
.form-input-wrapper {
    position: relative;
}

.form-input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(148, 163, 184, 0.5);
    font-size: 16px;
    pointer-events: none;
    transition: color 0.3s ease;
    z-index: 1;
}

.form-input.with-icon {
    padding-left: 48px;
}

.form-input-wrapper .form-input.with-icon {
    padding-left: 48px;
    padding-right: 50px; /* Şifre toggle için */
}

.form-input:focus + .form-input-icon,
.form-input-wrapper:focus-within .form-input-icon {
    color: rgba(59, 130, 246, 0.8);
}

/* Password Toggle */
.password-toggle {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: rgba(148, 163, 184, 0.5);
    font-size: 18px;
    transition: color 0.3s ease;
    z-index: 2;
}

.password-toggle:hover {
    color: rgba(203, 213, 225, 0.9);
}

/* Form Input Wrapper (for password toggle) */
.form-input-wrapper {
    position: relative;
}

.form-input-wrapper .form-input {
    padding-right: 50px;
}

/* Password Toggle */
.password-toggle {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(148, 163, 184, 0.5);
    font-size: 18px;
    transition: color 0.3s ease;
    z-index: 2;
    padding: 5px;
}

.password-toggle:hover {
    color: rgba(203, 213, 225, 0.9);
}

/* Phone Input with +90 Prefix */
.phone-input-group {
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
}

.phone-prefix {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(148, 163, 184, 0.7);
    font-size: 15px;
    font-weight: 600;
    pointer-events: none;
    z-index: 2;
}

.phone-input {
    padding-left: 55px !important;
    width: 100%;
}

/* Submit Button */
.modal-content .btn-primary {
    width: 100%;
    padding: 16px;
    font-size: 15px;
    font-weight: 700;
    margin-top: 12px;
    border-radius: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.modal-content .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s ease;
}

.modal-content .btn-primary:hover::before {
    left: 100%;
}

/* Form Footer */
.form-footer {
    margin-top: 28px;
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(71, 85, 105, 0.3);
}

.form-footer p {
    color: rgba(203, 213, 225, 0.7);
    font-size: 14px;
    margin-bottom: 0;
    font-weight: 400;
}

.form-footer a {
    color: #60a5fa;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-left: 5px;
    position: relative;
}

.form-footer a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #60a5fa;
    transition: width 0.3s ease;
}

.form-footer a:hover {
    color: #3b82f6;
}

.form-footer a:hover::after {
    width: 100%;
}

/* Checkbox */
.form-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 18px 0;
    cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #3b82f6;
    cursor: pointer;
    border-radius: 4px;
}

.form-checkbox label {
    color: rgba(203, 213, 225, 0.85);
    font-size: 13px;
    cursor: pointer;
    user-select: none;
    line-height: 1.5;
}

/* Divider */
.form-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 25px 0;
}

.form-divider::before,
.form-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(71, 85, 105, 0.3);
}

.form-divider span {
    color: rgba(148, 163, 184, 0.6);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Success/Error Messages */
.form-message {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 13px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: messageSlideIn 0.3s ease;
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-message-error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}

.form-message-success {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #6ee7b7;
}

.form-message i {
    font-size: 16px;
}

/* Loading State */
.btn-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin: -8px 0 0 -8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spinner 0.6s linear infinite;
}

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

/* Mobile Form Optimizations */
@media (max-width: 600px) {
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-input {
        padding: 14px 16px;
        font-size: 16px; /* iOS zoom prevention */
    }
    
    .form-input-wrapper .form-input {
        padding-left: 46px;
    }
    
    .modal-content .btn-primary {
        padding: 15px;
        font-size: 14px;
    }
}

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

.btn-submit {
    width: 100%;
    padding: 14px;
    margin-top: 10px;
}

.auth-switch-text {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-secondary);
}

.auth-switch-text a {
    color: var(--primary-cyan);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.auth-switch-text a:hover {
    color: var(--primary-purple);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 992px) {
    .desktop-only {
        display: none !important;
    }

    .navbar {
        padding: 10px 0;
    }

    .brand-text {
        font-size: 22px;
    }

    .nav-actions {
        gap: 8px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .modern-slider {
        height: 300px;
        margin: 20px 0;
    }
    
    .modern-slider-wrapper {
        margin: 20px 0 30px;
    }
    
    .slide-item {
        background-size: cover;
        background-position: center;
    }

    .games-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }

    .section-header-center .section-title {
        font-size: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 30px;
    }

    .footer-contact {
        grid-column: 1 / -1;
        text-align: center;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-social {
        justify-content: center;
    }

    .footer-badges-desktop {
        grid-column: 1 / -1;
        justify-content: center;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .payment-row {
        gap: 20px;
    }

    .payment-row img {
        height: 24px;
    }

    .mobile-bottom-nav {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }

    .mobile-nav-spacer {
        display: block;
        height: 70px;
    }
}

@media (max-width: 600px) {
    .brand-text {
        font-size: 20px;
    }

    .user-balance {
        font-size: 13px;
    }

    .user-avatar {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .modern-slider {
        height: 200px;
        border-radius: var(--radius-md);
        margin: 15px 0;
    }
    
    .modern-slider-wrapper {
        margin: 15px 0 25px;
    }
    
    .slide-item {
        background-size: cover;
        background-position: center;
    }
    
    .slider-dots {
        bottom: 10px;
        gap: 6px;
    }
    
    .slider-dots .dot {
        width: 8px;
        height: 8px;
    }
    
    .slider-dots .dot.active {
        width: 20px;
    }

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

    .section-header-center {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .section-header-center .section-title {
        font-size: 18px;
        justify-content: center;
    }

    .section-header-center .btn-view-all {
        display: none;
    }

    .view-all-center {
        display: block;
        text-align: center;
        margin-top: 20px;
    }

    .games-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        margin-bottom: 30px;
    }

    .winner-card {
        flex: 0 0 200px;
        padding: 8px;
        gap: 8px;
    }

    .winner-game-image {
        width: 36px;
        height: 36px;
    }

    .winner-name {
        font-size: 11px;
    }

    .winner-game {
        font-size: 9px;
    }

    .winner-amount {
        font-size: 12px;
    }

    .footer-main {
        display: none;
    }

    .footer-header {
        padding: 20px 15px;
    }

    .footer-header-title {
        font-size: 16px;
    }

    .footer-header-subtitle {
        font-size: 12px;
    }

    .footer-payments {
        padding: 25px 15px;
    }

    .payment-row {
        gap: 15px;
    }

    .payment-row img {
        height: 20px;
    }

    .footer-badges-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-badges-mobile .footer-badges {
        flex-direction: row;
        gap: 15px;
    }

    .footer-badges-mobile .badge-18,
    .footer-badges-mobile .badge-gcb {
        height: 40px;
    }

    .footer-license-mobile {
        display: block;
        font-size: 11px;
        color: var(--text-muted);
        line-height: 1.6;
        text-align: center;
        padding: 0 20px;
        margin-top: 15px;
    }

    .modal-content {
        padding: 25px;
    }

    .modal-title {
        font-size: 22px;
    }

    .auth-modal {
        max-width: 95%;
    }

    .auth-modal-header {
        padding: 20px 20px 15px;
    }

    .auth-modal-header h2 {
        font-size: 20px;
    }

    .auth-modal-body {
        padding: 20px;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.text-center { text-align: center; }
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #8b5cf6, #ec4899);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #7c3aed, #db2777);
}

/* ========================================
   GAME FILTERS & SEARCH
   ======================================== */

.game-filters {
    background: rgba(30, 30, 63, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 30px;
}

.filter-row {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.search-box {
    position: relative;
    flex: 1;
    min-width: 250px;
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 16px;
    pointer-events: none;
    z-index: 1;
}

.search-input {
    width: 100%;
    padding: 14px 16px 14px 48px !important;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 14px;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-cyan);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.15);
}

.provider-box {
    min-width: 200px;
}

.provider-select {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.provider-select:focus {
    outline: none;
    border-color: var(--primary-purple);
    background: rgba(255, 255, 255, 0.08);
}

.provider-select option {
    background: var(--bg-secondary);
    color: var(--text-primary);
    padding: 10px;
}

/* ========================================
   PAGINATION
   ======================================== */

/* ========================================
   PAGINATION - Professional Glass Design
   ======================================== */

.pagination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 60px 0 50px;
    padding: 0;
}

.pagination {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 15px 25px;
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 15px;
    background: rgba(51, 65, 85, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.pagination a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pagination a:hover {
    background: rgba(59, 130, 246, 0.25);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.pagination a:hover::before {
    opacity: 1;
}

.pagination .btn-primary,
.pagination a.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-color: transparent;
    color: white;
    box-shadow: 
        0 4px 20px rgba(59, 130, 246, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.pagination .btn-primary:hover,
.pagination a.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 8px 30px rgba(59, 130, 246, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.pagination .disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.pagination-dots {
    color: var(--text-secondary);
    font-weight: bold;
    padding: 0 5px;
    user-select: none;
}

.pagination-info {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0 15px;
}

/* ========================================
   PAGE HEADER STYLES
   ======================================== */

.page-header {
    margin-bottom: 30px;
}

.page-header .section-title {
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.page-header .section-title i {
    font-size: 28px;
    background: var(--gradient-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header .section-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    margin-left: 40px;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 60px 20px;
    background: rgba(30, 30, 63, 0.3);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.no-results i {
    font-size: 64px;
    color: var(--text-muted);
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-results h3 {
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.no-results p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Empty State (Oyun Bulunamadı) */
.empty-state {
    text-align: center;
    padding: 80px 30px;
    margin: 40px 0;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.7) 0%, rgba(51, 65, 85, 0.7) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-xl);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.empty-state i {
    font-size: 72px;
    color: rgba(148, 163, 184, 0.4);
    margin-bottom: 24px;
    display: block;
}

.empty-state h3 {
    font-size: 26px;
    color: white;
    margin-bottom: 12px;
    font-weight: 700;
}

.empty-state p {
    font-size: 15px;
    color: rgba(203, 213, 225, 0.7);
    margin-bottom: 28px;
    line-height: 1.6;
}

.empty-state .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Search Results Info */
.search-results-info {
    text-align: center;
    padding: 15px 20px;
    margin-bottom: 25px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: var(--radius-lg);
    color: rgba(203, 213, 225, 0.9);
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.search-results-info i {
    color: #60a5fa;
    margin-right: 6px;
}

/* ========================================
   RESPONSIVE - FILTERS & PAGINATION
   ======================================== */

@media (max-width: 768px) {
    .game-filters {
        padding: 20px;
        margin-bottom: 30px;
    }

    .filter-row {
        flex-direction: column;
        gap: 12px;
    }

    .search-box,
    .provider-box {
        width: 100%;
        min-width: 100%;
    }

    /* Mobil Pagination - Daha kompakt ve profesyonel */
    .pagination-wrapper {
        margin: 45px 0 35px;
        padding: 0 10px;
    }

    .pagination {
        padding: 12px 15px;
        gap: 6px;
        flex-wrap: wrap;
        justify-content: center;
        max-width: 100%;
    }

    .pagination a,
    .pagination span {
        min-width: 40px;
        height: 40px;
        font-size: 13px;
        padding: 0 10px;
    }

    /* Önceki/Sonraki butonları mobilde daha küçük */
    .pagination .btn-secondary {
        font-size: 12px;
        padding: 0 12px;
        gap: 5px;
    }

    .pagination .btn-secondary i {
        font-size: 10px;
    }

    /* Dots mobilde daha küçük */
    .pagination-dots {
        padding: 0 3px;
        font-size: 12px;
    }

    .pagination-info {
        width: 100%;
        text-align: center;
        margin: 10px 0;
    }

    .page-header {
        text-align: center;
        margin-bottom: 25px;
    }

    .page-header .section-title {
        font-size: 22px;
        justify-content: center;
    }

    .page-header .section-subtitle {
        margin-left: 0;
        font-size: 13px;
    }
    
    /* Mobilde oyunlar ile pagination arası daha fazla boşluk */
    .games-grid {
        margin-bottom: 35px;
    }
}


/* ========================================
   GAME FILTERS & SEARCH - Professional Glass
   ======================================== */

.game-filters {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.7) 0%, rgba(51, 65, 85, 0.7) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-xl);
    padding: 25px;
    margin-bottom: 40px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.filter-row {
    display: flex;
    gap: 15px;
    align-items: center;
}

.search-box {
    position: relative;
    flex: 1;
    min-width: 250px;
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(59, 130, 246, 0.7);
    font-size: 16px;
    pointer-events: none;
    z-index: 1;
}

.search-input {
    width: 100%;
    padding: 13px 16px 13px 48px !important;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.search-input:focus {
    outline: none;
    border-color: rgba(59, 130, 246, 0.6);
    background: rgba(15, 23, 42, 0.9);
    box-shadow: 
        0 0 0 3px rgba(59, 130, 246, 0.15),
        0 4px 20px rgba(59, 130, 246, 0.2);
}

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

.provider-box {
    min-width: 220px;
}

.provider-select {
    width: 100%;
    padding: 13px 16px;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.provider-select:focus {
    outline: none;
    border-color: rgba(59, 130, 246, 0.6);
    background: rgba(15, 23, 42, 0.9);
    box-shadow: 
        0 0 0 3px rgba(59, 130, 246, 0.15),
        0 4px 20px rgba(59, 130, 246, 0.2);
}

.provider-select option {
    background: var(--bg-secondary);
    color: var(--text-primary);
    padding: 10px;
}

.clear-btn {
    white-space: nowrap;
    padding: 13px 20px !important;
    background: rgba(239, 68, 68, 0.15) !important;
    border: 1px solid rgba(239, 68, 68, 0.3) !important;
    backdrop-filter: blur(10px);
}

.clear-btn:hover {
    background: rgba(239, 68, 68, 0.25) !important;
    border-color: rgba(239, 68, 68, 0.5) !important;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.3) !important;
}

/* ========================================
   PAGINATION - CENTERED
   ======================================== */

.pagination-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 50px;
    padding: 30px 0;
}

.pagination {
    display: flex;
    gap: 6px;
    align-items: center;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    background: rgba(51, 65, 85, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.pagination a:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}

.pagination .active {
    background: var(--gradient-primary);
    border-color: transparent;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.pagination .disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.pagination-info {
    font-size: 13px;
    color: var(--text-secondary);
    text-align: center;
}

.page-header {
    margin-bottom: 30px;
}

.page-header .section-title {
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
    font-size: 28px;
}

.page-header .section-title i {
    font-size: 26px;
    background: var(--gradient-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header .section-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    margin-left: 38px;
}


/* ========================================
   SLOTS & CASINO PAGES - LAYOUT
   ======================================== */

.page-container {
    padding-top: 30px;
    padding-bottom: 50px;
}

.page-header {
    margin-bottom: 25px;
}

.page-header .section-title {
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
    font-size: 28px;
    font-weight: 800;
}

.page-header .section-title i {
    font-size: 26px;
    background: var(--gradient-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header .section-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    margin-left: 38px;
}

/* ========================================
   GAME FILTERS - MINIMAL DESIGN
   ======================================== */

.game-filters {
    background: rgba(51, 65, 85, 0.25);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 14px;
    margin-bottom: 30px;
}

.filter-row {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
}

.filter-left {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-box {
    position: relative;
    flex: 1;
    max-width: 350px;
}

.search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 14px;
    pointer-events: none;
}

.search-input {
    width: 100%;
    padding: 10px 12px 10px 38px !important;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 13px;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: rgba(59, 130, 246, 0.4);
    background: rgba(15, 23, 42, 0.7);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.08);
}

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

.provider-box {
    min-width: 160px;
}

.provider-select {
    width: 100%;
    padding: 10px 12px;
    padding-right: 35px;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath fill='%23cbd5e1' d='M5 7L1 3h8z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.provider-select:focus {
    outline: none;
    border-color: rgba(59, 130, 246, 0.4);
    background-color: rgba(15, 23, 42, 0.7);
}

.provider-select option {
    background: var(--bg-secondary);
    color: var(--text-primary);
    padding: 8px;
}

/* ========================================
   PAGINATION - CENTERED & CLEAN
   ======================================== */

.pagination-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
    margin-bottom: 20px;
    padding: 20px 0;
}

.pagination {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 8px;
    background: rgba(51, 65, 85, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
}

.pagination a:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-1px);
}

.pagination .active {
    background: var(--gradient-primary);
    border-color: transparent;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
}

.pagination .disabled {
    opacity: 0.25;
    cursor: not-allowed;
    pointer-events: none;
}

.pagination-info {
    font-size: 12px;
    color: var(--text-secondary);
    text-align: center;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 60px 20px;
    background: rgba(51, 65, 85, 0.15);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.04);
    margin: 40px 0;
}

.no-results i {
    font-size: 56px;
    color: var(--text-muted);
    margin-bottom: 16px;
    opacity: 0.3;
}

.no-results h3 {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-weight: 700;
}

.no-results p {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ========================================
   RESPONSIVE - SLOTS & CASINO
   ======================================== */

@media (max-width: 768px) {
    .page-container {
        padding-top: 20px;
        padding-bottom: 30px;
    }

    .page-header {
        text-align: center;
        margin-bottom: 25px;
    }

    .page-header .section-title {
        font-size: 22px;
        justify-content: center;
    }

    .page-header .section-subtitle {
        margin-left: 0;
        font-size: 13px;
    }

    .game-filters {
        padding: 15px;
        margin-bottom: 25px;
    }

    .filter-row {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }

    .filter-left {
        flex-direction: column;
        width: 100%;
    }

    .search-box,
    .provider-box {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
    }

    /* Küçük mobil pagination */
    .pagination-wrapper {
        margin: 35px 0 25px;
        padding: 0 5px;
    }

    .pagination {
        padding: 10px 12px;
        gap: 5px;
        flex-wrap: wrap;
    }

    .pagination a,
    .pagination span {
        min-width: 35px;
        height: 35px;
        font-size: 12px;
        padding: 0 8px;
    }

    .pagination .btn-secondary {
        font-size: 11px;
        padding: 0 10px;
    }

    .pagination-dots {
        font-size: 11px;
    }

    .pagination-info {
        order: 1;
        margin-top: 8px;
        font-size: 12px;
    }
}


/* ========================================
   USER DROPDOWN MENU STYLES
   ======================================== */

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.user-balance {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 600;
    font-size: 15px;
    color: #00FFFF;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-deposit {
    padding: 10px 20px !important;
    background: linear-gradient(135deg, #10b981, #059669) !important;
    border: none !important;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    color: white !important;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-deposit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.4);
}

.btn-admin {
    padding: 10px 20px !important;
    background: linear-gradient(135deg, #fbbf24, #f59e0b) !important;
    border: none !important;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    color: white !important;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(251, 191, 36, 0.3);
}

.btn-admin:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(251, 191, 36, 0.5);
}

.user-avatar {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, #00FFFF, #FF00FF);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.user-avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.4);
}

.user-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 260px;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6),
                0 0 0 1px rgba(59, 130, 246, 0.1);
    z-index: 1000;
}

.user-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-header {
    padding: 16px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px 12px 0 0;
}

.dropdown-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dropdown-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: #ffffff;
    border: 2px solid rgba(59, 130, 246, 0.3);
}

.dropdown-user-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dropdown-user-details strong {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.dropdown-balance {
    font-size: 12px;
    color: rgba(59, 130, 246, 1);
    font-weight: 600;
}

.dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}
/* Dropdown Items - Temel Stiller */
.dropdown-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    padding-right: 55px !important; /* Badge için alan */
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.dropdown-item i {
    width: 18px;
    font-size: 16px;
    color: rgba(59, 130, 246, 0.7);
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: rgba(59, 130, 246, 0.1);
    color: var(--text-primary);
    border-left-color: rgba(59, 130, 246, 0.8);
}

.dropdown-item:hover i {
    color: #3b82f6;
    transform: translateX(2px);
}

.dropdown-item.admin-item {
    background: rgba(139, 92, 246, 0.08);
    border-left-color: rgba(139, 92, 246, 0.3);
}

.dropdown-item.admin-item:hover {
    background: rgba(139, 92, 246, 0.15);
    border-left-color: rgba(139, 92, 246, 0.8);
}

.dropdown-item.admin-item i {
    color: rgba(139, 92, 246, 0.8);
}

.dropdown-item.admin-item:hover i {
    color: #8b5cf6;
}

.dropdown-item.logout-item {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 4px;
}

.dropdown-item.logout-item:hover {
    background: rgba(239, 68, 68, 0.1);
    border-left-color: rgba(239, 68, 68, 0.8);
}

.dropdown-item.logout-item i {
    color: rgba(239, 68, 68, 0.7);
}

.dropdown-item.logout-item:hover i {
    color: #ef4444;
}

.notification-badge {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: rgba(239, 68, 68, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid rgba(239, 68, 68, 0.8);
    color: white;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 25px rgba(239, 68, 68, 0.6),
        0 4px 15px rgba(239, 68, 68, 0.4),
        inset 0 0 15px rgba(239, 68, 68, 0.3),
        inset 0 2px 5px rgba(255, 255, 255, 0.2);
    animation: pulse-notification 2s ease-in-out infinite;
    z-index: 10;
}

.notification-badge::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 100, 100, 0.3) 0%, transparent 50%, rgba(200, 50, 50, 0.3) 100%);
    z-index: -1;
}

@keyframes pulse-notification {
    0%, 100% {
        box-shadow: 
            0 0 25px rgba(239, 68, 68, 0.6),
            0 4px 15px rgba(239, 68, 68, 0.4),
            inset 0 0 15px rgba(239, 68, 68, 0.3),
            inset 0 2px 5px rgba(255, 255, 255, 0.2);
        transform: translateY(-50%) scale(1);
        border-color: rgba(239, 68, 68, 0.8);
    }
    50% {
        box-shadow: 
            0 0 35px rgba(239, 68, 68, 0.8),
            0 6px 20px rgba(239, 68, 68, 0.5),
            inset 0 0 20px rgba(239, 68, 68, 0.4),
            inset 0 2px 8px rgba(255, 255, 255, 0.3);
        transform: translateY(-50%) scale(1.08);
        border-color: rgba(239, 68, 68, 1);
    }
}

/* Admin Divider Fix */
.admin-section-divider {
    margin: 8px 0;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
/* Notification Badge - Glass Circle - FINAL VERSION */
.user-dropdown-menu .dropdown-item {
    position: relative;
}

.user-dropdown-menu .dropdown-item .notification-badge {
    position: absolute !important;
    right: 15px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    background: rgba(239, 68, 68, 0.3) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border: 2.5px solid #ef4444 !important;
    color: #ffffff !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 
        0 0 30px rgba(239, 68, 68, 0.7),
        0 5px 20px rgba(239, 68, 68, 0.5),
        inset 0 0 20px rgba(239, 68, 68, 0.4),
        inset 0 3px 8px rgba(255, 255, 255, 0.3) !important;
    animation: pulse-glow 2s ease-in-out infinite !important;
    z-index: 999 !important;
    line-height: 1 !important;
    padding: 0 !important;
    margin: 0 !important;
}

.user-dropdown-menu .dropdown-item .notification-badge::before {
    content: '' !important;
    position: absolute !important;
    inset: -3px !important;
    border-radius: 50% !important;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.4) 0%, transparent 70%) !important;
    z-index: -1 !important;
    animation: rotate-glow 3s linear infinite !important;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 
            0 0 30px rgba(239, 68, 68, 0.7),
            0 5px 20px rgba(239, 68, 68, 0.5),
            inset 0 0 20px rgba(239, 68, 68, 0.4),
            inset 0 3px 8px rgba(255, 255, 255, 0.3);
        transform: translateY(-50%) scale(1);
        border-color: #ef4444;
    }
    50% {
        box-shadow: 
            0 0 40px rgba(239, 68, 68, 0.9),
            0 7px 25px rgba(239, 68, 68, 0.6),
            inset 0 0 25px rgba(239, 68, 68, 0.5),
            inset 0 3px 10px rgba(255, 255, 255, 0.4);
        transform: translateY(-50%) scale(1.1);
        border-color: #ff5555;
    }
}

@keyframes rotate-glow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Admin Section Divider */
.admin-section-divider {
    margin: 8px 0;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ========================================
   GÜNCEL ADRES BANNER - GLASS MOR TEMA
   ======================================== */

.current-site-banner {
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.site-banner-wrapper {
    position: relative;
    z-index: 1;
}

.banner-content {
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.15) 0%, 
        rgba(124, 58, 237, 0.12) 50%, 
        rgba(109, 40, 217, 0.15) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(167, 139, 250, 0.25);
    border-radius: 20px;
    padding: 28px 40px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: 
        0 10px 40px rgba(139, 92, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Parlaklık efekti */
.banner-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at center,
        rgba(167, 139, 250, 0.15) 0%,
        transparent 70%
    );
    animation: bannerGlow 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes bannerGlow {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(10%, 10%) scale(1.2);
        opacity: 0.8;
    }
}

/* Üst parlak çizgi */
.banner-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(167, 139, 250, 0.8) 50%, 
        transparent 100%);
}

.banner-content:hover {
    transform: translateY(-2px);
    border-color: rgba(167, 139, 250, 0.4);
    box-shadow: 
        0 15px 50px rgba(139, 92, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.banner-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.3) 0%, 
        rgba(124, 58, 237, 0.25) 100%);
    border: 2px solid rgba(167, 139, 250, 0.4);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #c4b5fd;
    box-shadow: 
        0 4px 15px rgba(139, 92, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* İkon hover animasyonu */
.banner-content:hover .banner-icon {
    transform: rotate(5deg) scale(1.05);
    border-color: rgba(167, 139, 250, 0.6);
    box-shadow: 
        0 6px 20px rgba(139, 92, 246, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.banner-icon i {
    position: relative;
    z-index: 1;
    animation: iconPulse 2s ease-in-out infinite;
}

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

.banner-text {
    flex: 1;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.banner-label {
    color: #e9d5ff;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}

.banner-link {
    color: #f3e8ff;
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.25) 0%, 
        rgba(124, 58, 237, 0.2) 100%);
    padding: 8px 22px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 19px;
    border: 1px solid rgba(167, 139, 250, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 12px rgba(139, 92, 246, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    letter-spacing: 0.3px;
}

/* Link parlama efekti */
.banner-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.2) 50%, 
        transparent 100%);
    transition: left 0.5s ease;
}

.banner-link:hover::before {
    left: 100%;
}

.banner-link:hover {
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.35) 0%, 
        rgba(124, 58, 237, 0.3) 100%);
    border-color: rgba(167, 139, 250, 0.6);
    transform: translateY(-2px);
    box-shadow: 
        0 6px 18px rgba(139, 92, 246, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.banner-suffix {
    color: #e9d5ff;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}

/* Mobil Responsive */
@media (max-width: 768px) {
    .current-site-banner {
        padding: 25px 0;
    }
    
    .banner-content {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
        gap: 20px;
    }
    
    .banner-icon {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
    
    .banner-text {
        flex-direction: column;
        text-align: center;
        font-size: 16px;
        gap: 8px;
    }
    
    .banner-link {
        padding: 10px 20px;
        font-size: 17px;
        width: auto;
        display: inline-block;
    }
}

@media (max-width: 480px) {
    .banner-content {
        padding: 20px 16px;
        border-radius: 16px;
    }
    
    .banner-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .banner-text {
        font-size: 15px;
    }
    
    .banner-link {
        font-size: 16px;
        padding: 9px 18px;
    }
    
    .banner-label,
    .banner-suffix {
        font-size: 14px;
    }
}