
/* Google Fonts - Rajdhani + Turkish Support Fonts */
@import url('./vendor/fonts/google-font-3.css');
@import url('./vendor/fonts/google-font-0.css');
@import url('./vendor/fonts/google-font-2.css');
@import url('./vendor/fonts/google-font-1.css');

/* Vacaciones Font */
@font-face {
    font-family: 'Vacaciones';
    src: url('../fonts/Vacaciones-font-ffp-defharo.otf') format('opentype'),
         url('../fonts/Vacaciones-font-ffp-defharo.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Root Variables */
:root {
    --primary-color: #B8860B;
    --secondary-color: #FFD700;
    --accent-color: #DAA520;
    --light-gold: #F4A460;
    --dark-blue: #2d2d2d;
    --dark: #121212;
    --gradient-bg: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2d2d2d 100%);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Rajdhani', sans-serif;
}

body {
    background: var(--gradient-bg);
    font-family: 'Rajdhani', sans-serif;
    margin: 0;
    padding: 0;
    color: #fff;
    overflow-x: hidden !important;
    max-width: 100vw !important;
}

html {
    overflow-x: hidden !important;
    max-width: 100vw !important;
}

/* Page Layout Styles */
.page-wrapper {
    display: flex;
    min-height: 100vh;
    position: relative;
}

.main-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-left: 280px;
    transition: all 0.3s ease;
}

/* Sidebar kapalÄ± olduÄŸunda ana iÃ§erik tam geniÅŸlikte */
body.sidebar-closed .main-container {
    margin-left: 0;
}

body.sidebar-closed .sidebar {
    left: -280px;
}

.content-wrapper {
    flex: 1;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.main-content {
    max-width: 100%;
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
}

/* Sidebar Styles - Mobile First: Hidden by default, Open on desktop */
.sidebar {
    position: fixed;
    left: -280px; /* Mobile: Hidden by default */
    top: 0;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg,
        rgba(18, 18, 18, 0.95) 0%,
        rgba(40, 40, 40, 0.92) 50%,
        rgba(18, 18, 18, 0.95) 100%);
    backdrop-filter: blur(15px);
    border-right: 2px solid rgba(184, 134, 11, 0.3);
    z-index: 1000;
    transition: left 0.3s ease;
    overflow-x: hidden !important;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.3);
}

/* Mobile: Active state - show sidebar */
.sidebar.active {
    left: 0;
}

/* Desktop: Always visible */
@media (min-width: 769px) {
    .sidebar {
        left: 0;
    }
    
    /* Desktop'ta active class'Ä± etkisiz */
    .sidebar.active {
        left: 0;
    }
}

.sidebar-header {
    padding: 20px;
    border-bottom: 1px solid rgba(184, 134, 11, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(18, 18, 18, 0.8);
}

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

.sidebar-logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    padding: 3px;
}

.sidebar-brand .brand-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

.sidebar-close-btn {
    display: none;
    background: transparent;
    border: none;
    color: #fff;
}

/* Sidebar Header */
.sidebar-header {
    padding: 25px 20px;
    border-bottom: 1px solid rgba(184, 134, 11, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.1), rgba(255, 215, 0, 0.05));
}

.sidebar-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 68, 68, 0.9);
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    color: white;
    cursor: pointer;
    display: none; /* Desktop'ta gizli */
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 16px;
    z-index: 1003;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.sidebar-close-btn:hover {
    background: #ff4444;
    transform: scale(1.1);
}

.sidebar-logo {
    text-align: center;
    margin-bottom: 15px;
}

.sidebar-logo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(184, 134, 11, 0.5);
    transition: all 0.3s ease;
    animation: logoGlow 3s infinite;
}

.sidebar-brand .brand-name {
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, #FFD700, #B8860B);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

/* Sidebar Navigation */
.sidebar-nav {
    flex: 1;
    padding: 20px 0;
}

.nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-item {
    margin-bottom: 5px;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    font-size: 16px;
    font-weight: 500;
}

.nav-link:hover,
.nav-item.active .nav-link {
    color: #FFD700;
    background: rgba(184, 134, 11, 0.1);
    border-left-color: #FFD700;
    transform: translateX(5px);
}

.nav-link i {
    margin-right: 12px;
    font-size: 18px;
    width: 20px;
    text-align: center;
}

/* Sidebar Sections */
.sidebar-section {
    margin: 20px 0;
    padding: 0 20px;
}

.section-title {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-title i {
    font-size: 14px;
}

/* Sidebar Social Media */
.sidebar .social-media-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.sidebar .social-button {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    width: 100%;
    height: auto;
}

.sidebar .social-button:hover {
    background: rgba(184, 134, 11, 0.2);
    border-color: #FFD700;
    color: #FFD700;
    transform: translateX(5px);
}

.sidebar .social-button i {
    margin-right: 10px;
    font-size: 16px;
    width: 18px;
}

/* Sidebar Ads */
.sidebar-ads-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-ad-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 12px;
    padding: 15px;
    position: relative;
    text-align: center;
    transition: all 0.3s ease;
}

.sidebar-ad-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(184, 134, 11, 0.4);
    transform: translateY(-2px);
}

.sidebar-ad-item .ad-logo {
    width: 100%;
    height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
    border-radius: 8px;
}

.sidebar-ad-item .ad-name {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.sidebar-ad-item .ad-description {
    font-size: 12px;
    color: #FFD700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.sidebar-ad-item .ad-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.sidebar-ad-item .ad-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(184, 134, 11, 0.5);
}

.sidebar-footer {
    margin-top: auto;
    padding: 20px 15px 15px;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(184, 134, 11, 0.3);
}

/* Sosyal Medya BÃ¶lÃ¼mÃ¼ */
.sidebar-social-section {
    margin-bottom: 20px;
}

.sidebar-social-title {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.sidebar-social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.sidebar-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.sidebar-social-icon:hover {
    background: rgba(184, 134, 11, 0.2);
    border-color: #FFD700;
    color: #FFD700;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

/* Provider BÃ¶lÃ¼mÃ¼ */
.sidebar-provider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.provider-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 15px;
    border-radius: 12px;
    border: 1px solid rgba(184, 134, 11, 0.2);
}

.provider-avatar {
    flex-shrink: 0;
}

.provider-avatar img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(184, 134, 11, 0.4);
}

.provider-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.provider-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.provider-name {
    font-size: 13px;
    font-weight: 600;
    color: #FFD700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.provider-name:hover {
    color: #fff;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

/* Top Header Styles */
.top-header {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(184, 134, 11, 0.3);
    padding: 15px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.sidebar-toggle-btn {
    background: rgba(184, 134, 11, 0.2);
    border: 1px solid rgba(184, 134, 11, 0.5);
    border-radius: 8px;
    color: #FFD700;
    cursor: pointer;
    padding: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
}

.sidebar-toggle-btn:hover {
    background: rgba(184, 134, 11, 0.3);
    transform: scale(1.05);
}

.header-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.breadcrumb-item.active {
    color: #FFD700;
}

.header-center {
    flex: 1;
    text-align: center;
}

.page-title {
    font-family: 'Vacaciones', 'Poppins', 'Montserrat', 'Inter', sans-serif;
    font-size: 32px;
    font-weight: normal;
    letter-spacing: 2px;
    background: linear-gradient(135deg,
        #FFD700 0%,
        #FFA500 25%,
        #FF6B35 50%,
        #F7931E 75%,
        #DAA520 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.6),
                 0 0 60px rgba(255, 165, 0, 0.4),
                 0 0 100px rgba(247, 147, 30, 0.2);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    position: relative;
    animation: titleGlow 3s ease-in-out infinite alternate;
    transition: all 0.3s ease;
}

.page-title:hover {
    transform: scale(1.05);
    letter-spacing: 3px;
}

@keyframes titleGlow {
    0% {
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.4),
                     0 0 40px rgba(255, 165, 0, 0.3),
                     0 0 60px rgba(247, 147, 30, 0.2);
    }
    100% {
        text-shadow: 0 0 30px rgba(255, 215, 0, 0.8),
                     0 0 60px rgba(255, 165, 0, 0.6),
                     0 0 100px rgba(247, 147, 30, 0.4);
    }
}

.page-subtitle {
    font-family: 'Vacaciones', 'Inter', 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: normal;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
    margin: 8px 0 0 0;
    font-style: italic;
}

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

.login-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 25px;
    color: #fff;
    cursor: pointer;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.login-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(184, 134, 11, 0.5);
}

/* Header Styles (kept for compatibility) */
.header {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    animation: headerBorderGlow 3s infinite;
}

@keyframes headerBorderGlow {
    0%, 100% {
        box-shadow: 
            0 0 5px var(--primary-color),
            0 0 10px var(--primary-color),
            0 0 15px var(--secondary-color),
            0 4px 30px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 
            0 0 10px var(--primary-color),
            0 0 20px var(--primary-color),
            0 0 30px var(--secondary-color),
            0 0 40px var(--secondary-color),
            0 4px 30px rgba(0, 0, 0, 0.1);
    }
}

.logo {
    position: relative;
    display: inline-block;
}

.logo img {
    max-width: 180px;
    height: auto;
    padding: 5px;
    filter: drop-shadow(0 0 10px rgba(184, 134, 11, 0.5));
    border-radius: 50%;
    animation: logoGlow 3s infinite;
}

@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 0 10px rgba(184, 134, 11, 0.5))
                drop-shadow(0 0 15px rgba(255, 215, 0, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(184, 134, 11, 0.8))
                drop-shadow(0 0 30px rgba(255, 215, 0, 0.6));
    }
    100% {
        filter: drop-shadow(0 0 10px rgba(184, 134, 11, 0.5))
                drop-shadow(0 0 15px rgba(255, 215, 0, 0.3));
    }
}

/* Ek olarak hover efekti */
.logo img:hover {
    animation: logoGlowHover 1.5s infinite;
}

@keyframes logoGlowHover {
    0% {
        filter: drop-shadow(0 0 15px rgba(184, 134, 11, 0.7))
                drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 25px rgba(184, 134, 11, 1))
                drop-shadow(0 0 35px rgba(255, 215, 0, 0.8));
    }
    100% {
        filter: drop-shadow(0 0 15px rgba(184, 134, 11, 0.7))
                drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
    }
}


.site-description {
    color: #e0e0e0;
    margin: 10px 0;
    font-size: 1.1em;
}

/* Favicon Style */
link[rel="shortcut icon"] {
    border-radius: 50%;
}

/* VIP Casino Section */
.casino-section:first-of-type .casino-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    justify-content: center;
}

.casino-section:first-of-type .casino-card {
    position: relative;
    padding: 15px;
    background: rgba(255, 255, 255, 0.15);
}

/* VIP Casino Card Footer */
.casino-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding: 0 10px;
}

/* DÃ¶nen kral tacÄ± animasyonu - GÃ¼ncellenmiÅŸ Y ekseni dÃ¶nÃ¼ÅŸÃ¼ */
.crown-icon {
    position: relative;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #ffd700, #ffeb3b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotateCrown 3s infinite linear;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.crown-icon i {
    font-size: 22px;
    color: #000;
    text-shadow: 2px 2px 2px rgba(0,0,0,0.2);
}

@keyframes rotateCrown {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

/* Hover efekti iÃ§in ek stil */
.crown-icon:hover {
    animation-duration: 1.5s;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

/* Global Icon */
.global-icon {
    position: relative;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #00bcd4, #4caf50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotateGlobe 4s infinite linear;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.global-icon i {
    font-size: 22px;
    color: #fff;
    text-shadow: 2px 2px 2px rgba(0,0,0,0.2);
    animation: pulseGlobe 2s infinite;
}

@keyframes rotateGlobe {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

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

/* Hover efekti iÃ§in ek stil */
.global-icon:hover {
    animation-duration: 2s;
    box-shadow: 0 0 15px rgba(0, 188, 212, 0.5);
}

/* Normal Casino Section */
.casino-section:nth-of-type(2) .casino-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.casino-section:nth-of-type(2) .casino-card {
    padding: 15px;
    background: rgba(255, 255, 255, 0.08);
}

.casino-section:nth-of-type(2) .casino-promotion,
.casino-section:nth-of-type(2) .stars {
    display: none;
}

/* Common Casino Styles */
.casino-section {
    margin-bottom: 30px;
}

.section-title {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 2em;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.casino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    padding: 20px 0;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.casino-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
    animation: cardBorderGlow 3s infinite;
}

@keyframes cardBorderGlow {
    0%, 100% {
        box-shadow: 
            0 0 5px var(--primary-color),
            0 0 10px var(--primary-color),
            0 0 15px var(--secondary-color),
            0 8px 25px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 
            0 0 10px var(--primary-color),
            0 0 20px var(--primary-color),
            0 0 30px var(--secondary-color),
            0 0 40px var(--secondary-color),
            0 8px 25px rgba(0, 0, 0, 0.2);
    }
}

.casino-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.3s ease;
    opacity: 0;
}

.casino-card:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.casino-card:hover {
    transform: translateY(-5px) scale(1.01);
    border-color: var(--primary-color);
    box-shadow: 0 12px 25px rgba(184, 134, 11, 0.2);
}

.casino-logo {
    width: 200px;
    height: 130px;
    object-fit: contain;
    margin: 0 auto 20px;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

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

/* VIP Casino Logo */
.casino-section:first-of-type .casino-logo {
    width: 200px;
    height: 140px;
    border-radius: 18px;
}

.casino-name {
    font-size: 1.4em;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.casino-promotion {
    font-weight: 600;
    color: #FFD700;
    margin-bottom: 20px;
    font-size: 1.1em;
    line-height: 1.4;
    padding: 0 10px;
}

.stars {
    color: #ffd700;
    margin-bottom: 12px;
    font-size: 1.1em;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.casino-button {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.9em;
    margin: 0;
    position: relative; /* Eklendi */
    overflow: hidden; /* Eklendi */
    animation: glowPulse 2s infinite; /* Eklendi */
}

/* Yeni eklenen glow animasyonu */
@keyframes glowPulse {
    0% {
        box-shadow: 0 0 5px var(--primary-color),
                    0 0 10px var(--primary-color),
                    0 0 15px var(--secondary-color);
    }
    50% {
        box-shadow: 0 0 10px var(--primary-color),
                    0 0 20px var(--primary-color),
                    0 0 25px var(--secondary-color);
    }
    100% {
        box-shadow: 0 0 5px var(--primary-color),
                    0 0 10px var(--primary-color),
                    0 0 15px var(--secondary-color);
    }
}

.casino-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(184, 134, 11, 0.1),
        transparent,
        rgba(255, 215, 0, 0.2),
        transparent
    );
    animation: glowRotate 3s linear infinite;
    z-index: 1;
}

@keyframes glowRotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.casino-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px var(--primary-color),
                0 0 30px var(--secondary-color),
                0 0 45px var(--secondary-color);
    animation: none; /* Hover durumunda ana animasyonu durdur */
}

.casino-button:hover::before {
    animation-duration: 1.5s; /* Hover durumunda dÃ¶nen efekti hÄ±zlandÄ±r */
}


/* Footer Styles */
.footer {
    text-align: center;
    padding: 30px 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    margin-top: 30px;
}

.footer-logo img {
    max-width: 120px;
    margin-bottom: 15px;
    border-radius: 50%;
}

.footer-text {
    color: #e0e0e0;
    font-size: 1em;
    margin-bottom: 15px;
}

.license img {
    max-width: 80px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.license img:hover {
    opacity: 1;
}

/* Social Media Buttons */
.social-media-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    text-decoration: none;
    transition: all 0.4s ease;
    overflow: hidden;
    animation: socialGlow 3s infinite;
}

.social-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

.social-button::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dark-blue), var(--dark));
    z-index: 1;
}

.social-button i {
    font-size: 22px;
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #fff, #e0e0e0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

@keyframes socialGlow {
    0%, 100% {
        box-shadow: 
            0 0 5px var(--primary-color),
            0 0 10px var(--primary-color),
            0 0 20px var(--secondary-color);
    }
    50% {
        box-shadow: 
            0 0 10px var(--primary-color),
            0 0 20px var(--primary-color),
            0 0 30px var(--secondary-color);
    }
}

@keyframes shine {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.social-button:hover {
    transform: translateY(-5px) scale(1.1);
    animation: socialGlowHover 1.5s infinite;
}

@keyframes socialGlowHover {
    0%, 100% {
        box-shadow: 
            0 0 15px var(--primary-color),
            0 0 30px var(--primary-color),
            0 0 45px var(--secondary-color);
    }
    50% {
        box-shadow: 
            0 0 20px var(--primary-color),
            0 0 40px var(--primary-color),
            0 0 60px var(--secondary-color);
    }
}

.social-button:hover i {
    transform: scale(1.2);
    background: linear-gradient(45deg, #ffffff, var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Responsive tasarÄ±m iÃ§in medya sorgularÄ± */
@media (max-width: 768px) {
    .social-button {
        width: 45px;
        height: 45px;
    }
    
    .social-button i {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .social-button {
        width: 40px;
        height: 40px;
    }
    
    .social-button i {
        font-size: 18px;
    }
}


/* Responsive Design */
@media (max-width: 1024px) {
    .casino-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .casino-card {
        min-height: 320px;
        padding: 20px;
    }
    
    .casino-logo {
        width: 160px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .casino-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        padding: 15px 0;
    }
    
    .casino-card {
        min-height: 300px;
        padding: 20px;
    }

    .casino-logo {
        width: 150px;
        height: 90px;
    }

    .casino-section:first-of-type .casino-logo {
        width: 170px;
        height: 110px;
    }

    .casino-name {
        font-size: 1.2em;
    }
    
    .casino-promotion {
        font-size: 1em;
    }

    .section-title {
        font-size: 1.8em;
    }

    .casino-button {
        padding: 10px 18px;
        font-size: 0.9em;
    }
}

@media (max-width: 600px) {
    .casino-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 15px;
    }
    
    .casino-card {
        min-height: 280px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }

    .casino-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 10px 0;
    }
    
    .casino-card {
        min-height: 300px;
        padding: 20px 15px;
    }

    .casino-logo {
        width: 140px;
        height: 80px;
    }
    
    .casino-section:first-of-type .casino-logo {
        width: 160px;
        height: 100px;
    }

    .casino-name {
        font-size: 1.1em;
    }
    
    .casino-promotion {
        font-size: 0.95em;
    }

    .header {
        margin-bottom: 20px;
        padding: 15px 10px;
    }

    .logo img {
        max-width: 150px;
    }

    .site-description {
        font-size: 1em;
    }
    
    .section-title {
        font-size: 1.6em;
    }

    .casino-button {
        padding: 8px 16px;
        font-size: 0.85em;
    }

    /* Normal Casino Mobil DÃ¼zeni */
    .casino-section:nth-of-type(2) .casino-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .casino-section:nth-of-type(2) .casino-card {
        min-height: auto;
        padding: 10px 8px;
    }
    
    .casino-section:nth-of-type(2) .casino-logo {
        width: 80px;
        height: 55px;
        margin-bottom: 5px;
    }
    
    .casino-section:nth-of-type(2) .casino-name {
        font-size: 0.8em;
        margin-bottom: 8px;
        line-height: 1.1;
    }
    
    .casino-section:nth-of-type(2) .casino-button {
        padding: 6px 12px;
        font-size: 0.75em;
    }
}
/* Reklam AlanlarÄ± - Ana Stiller */
.left-ads,
.right-ads {
    position: fixed;
    top: 0;
    width: 220px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    height: 100vh;
    padding: 15px;
}

.left-ads {
    left: 0;
}

.right-ads {
    right: 0;
}

/* Reklam KartÄ± Stili */
.ad-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px 15px; /* Padding arttÄ±rÄ±ldÄ± */
    border-radius: 15px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
    height: calc(100vh - 30px);
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* DeÄŸiÅŸtirildi: flex-start -> center */
    align-items: center; /* Eklendi */
    gap: 25px; /* Eklendi: Ä°Ã§erikler arasÄ± boÅŸluk */
}

.ad-item:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 8px 40px rgba(184, 134, 11, 0.2);
}

/* Logo ve Ä°Ã§erik Stilleri */
.ad-logo {
    width: 160px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 10px;
}

.ad-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
    animation: blink 1s infinite;
}

.ad-description {
    font-size: 20px;
    font-weight: bold;
    color: #FFD700;
    margin: 5px 0;
    animation: blink 1s infinite;
}

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

/* Alt Reklam AlanÄ± */
.bottom-ads {
    position: fixed;
    bottom: 0;
    left: 220px;
    right: 220px;
    background: transparent;
    z-index: 999;
    padding: 10px 0;
}

.bottom-ad-container {
    display: flex;
    flex-direction: column;
    align-items: center; /* DeÄŸiÅŸtirildi: stretch -> center */
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Alt Kart TasarÄ±mÄ± */
.bottom-ad-container .ad-item {
    height: auto;
    width: 100%;
    max-width: 800px; /* Eklendi: Maksimum geniÅŸlik */
    margin: 0 auto; /* Eklendi: Yatayda ortalama */
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center; /* DeÄŸiÅŸtirildi: space-between -> center */
    padding: 20px 30px;
    min-height: 80px;
    gap: 20px;
}

/* Logo AlanÄ± */
.bottom-ad-container .ad-logo {
    width: 120px;
    height: 60px;
    object-fit: contain;
    margin: 0;
    flex-shrink: 0;
}

/* Ä°Ã§erik AlanÄ± */
.bottom-ad-container .ad-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* Eklendi: Ä°Ã§eriÄŸi ortala */
    gap: 5px;
    flex: 1;
    max-width: 300px;
    text-align: center; /* Eklendi: Metinleri ortala */
}

.bottom-ad-container .ad-name {
    margin: 0;
    font-size: 16px;
    text-align: center; /* DeÄŸiÅŸtirildi: left -> center */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.bottom-ad-container .ad-description {
    margin: 0;
    font-size: 20px;
    text-align: center; /* DeÄŸiÅŸtirildi: left -> center */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}


/* Buton Stili */
.casino-button {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    margin: 0;
    white-space: nowrap;
    flex-shrink: 0;
}

.casino-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(var(--primary-color-rgb), 0.5);
}

/* Kapatma Butonu */
.ad-close {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(255, 68, 68, 0.9);
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.ad-close:hover {
    background: #ff4444;
    transform: scale(1.1);
}

/* Responsive TasarÄ±m */
@media (max-width: 1200px) {
    .left-ads,
    .right-ads {
        width: 180px;
    }
    
    .bottom-ads {
        left: 180px;
        right: 180px;
    }
    
    .bottom-ad-container .ad-logo {
        width: 100px;
    }
}

@media (max-width: 992px) {
    .left-ads,
    .right-ads {
        display: none;
    }
    
    .bottom-ads {
        left: 0;
        right: 0;
    }
    
    .bottom-ad-container {
        flex-direction: column;
    }
    
    .bottom-ad-container .ad-item {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .bottom-ad-container .ad-item {
        padding: 8px 12px;
    }
    
    .bottom-ad-container .casino-button {
        padding: 6px 16px;
        font-size: 0.8em;
    }
    
    .bottom-ad-container .ad-logo {
        width: 80px;
        height: 40px;
    }
    
    .bottom-ad-container .ad-name {
        font-size: 14px;
    }
    
    .bottom-ad-container .ad-description {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .bottom-ad-container {
        padding: 5px;
    }
    
    .bottom-ad-container .ad-item {
        padding: 8px;
        gap: 8px;
    }
    
    .bottom-ad-container .ad-logo {
        width: 60px;
        height: 30px;
    }
    
    .bottom-ad-container .casino-button {
        padding: 5px 12px;
        font-size: 0.75em;
    }
}

@keyframes dividerGlow {
    0% {
        box-shadow: 0 0 5px gold,
                   0 0 10px gold;
        opacity: 0.5;
    }
    50% {
        box-shadow: 0 0 15px gold,
                   0 0 25px gold;
        opacity: 1;
    }
    100% {
        box-shadow: 0 0 5px gold,
                   0 0 10px gold;
        opacity: 0.5;
    }
}

.section-divider {
    width: 100%;
    max-width: 1100px;
    margin: 30px auto;
    height: 2px;
    background: linear-gradient(
        to right,
        transparent,
        gold,
        transparent
    );
    position: relative;
    animation: dividerGlow 2s infinite;
}

footer {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px 0;
    margin-top: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    animation: footerBorderGlow 3s infinite;
}

@keyframes footerBorderGlow {
    0%, 100% {
        box-shadow: 
            0 0 5px var(--primary-color),
            0 0 10px var(--primary-color),
            0 0 15px var(--secondary-color),
            0 4px 30px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 
            0 0 10px var(--primary-color),
            0 0 20px var(--primary-color),
            0 0 30px var(--secondary-color),
            0 0 40px var(--secondary-color),
            0 4px 30px rgba(0, 0, 0, 0.1);
    }
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    animation: logoGlow 3s infinite;
}

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

.brand-name {
    font-size: 20px;
    font-weight: 600;
    background: linear-gradient(45deg, #fff, var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-middle {
    flex: 1;
    text-align: center;
    max-width: 500px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.5;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.designer-credit {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.designer-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.designer-link:hover {
    text-shadow: 0 0 10px var(--secondary-color);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-left {
        flex-direction: column;
    }

    .footer-right {
        align-items: center;
    }

    .footer-middle {
        margin: 15px 0;
    }
}
/* Preloader Styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-bg);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
    position: relative;
    width: 100px;
    height: 100px;
}

.loader .inner {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid transparent;
}

.loader .inner.one {
    border-top-color: var(--primary-color);
    animation: rotate-one 1s linear infinite;
}

.loader .inner.two {
    border-right-color: var(--secondary-color);
    animation: rotate-two 1s linear infinite;
}

.loader .inner.three {
    border-bottom-color: #FFD700;
    animation: rotate-three 1s linear infinite;
}

@keyframes rotate-one {
    0% { transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg); }
    100% { transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg); }
}

@keyframes rotate-two {
    0% { transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg); }
    100% { transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg); }
}

@keyframes rotate-three {
    0% { transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg); }
    100% { transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg); }
}

/* Navigation Styles */
.main-navigation {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    position: relative !important;
    overflow: visible !important;
    z-index: 1000 !important;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    max-width: 100%;
    overflow: visible !important;
    position: relative !important;
}

.nav-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    flex: 1;
    min-width: 0;
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
    border: 1px solid transparent;
    flex-shrink: 1;
    min-width: 0;
    white-space: nowrap;
}

.nav-btn span {
    display: inline-block;
}

.nav-btn:hover,
.nav-btn.active {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.3);
}

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

/* Auth Buttons */
.auth-section {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
    margin-left: auto;
}

.login-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    animation: glowPulse 2s infinite;
}

.login-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--secondary-color);
}

/* User Profile */
.user-profile {
    position: relative !important;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 8px 15px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.user-profile:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--secondary-color);
}

.user-avatar {
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 2px solid var(--secondary-color);
    aspect-ratio: 1 / 1 !important;
}

.user-name {
    font-weight: 600;
    color: #fff;
    font-size: 14px;
}

.user-dropdown {
    position: absolute !important;
    top: calc(100% + 5px) !important;
    right: 0 !important;
    background: rgba(30, 30, 30, 0.98) !important;
    backdrop-filter: blur(15px) !important;
    border-radius: 12px !important;
    padding: 12px 0 !important;
    min-width: 180px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    z-index: 99999 !important;
    display: none !important;
    overflow: visible !important;
    white-space: nowrap !important;
    margin-top: 5px;
}

.user-dropdown.show,
.user-dropdown[style*="block"] {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.user-dropdown a {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 15px 20px !important;
    color: rgba(255, 255, 255, 0.95) !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    border-radius: 8px !important;
    margin: 2px 8px !important;
}

.user-dropdown a:hover {
    background: rgba(255, 68, 68, 0.3) !important;
    color: #ff4444 !important;
    transform: translateX(3px) !important;
}

.user-dropdown a i {
    font-size: 14px !important;
    width: 16px !important;
    text-align: center !important;
}

/* Yeni Login Modal - Ana sistem tasarÄ±mÄ±yla uyumlu */
.auth-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.auth-modal-overlay.show {
    opacity: 1;
}

.auth-modal-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: var(--gradient-bg);
    border: 2px solid var(--primary-color);
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(184, 134, 11, 0.3);
    transition: transform 0.3s ease;
}

.auth-modal-overlay.show .auth-modal-container {
    transform: translate(-50%, -50%) scale(1);
}

.auth-modal-header {
    text-align: center;
    padding: 30px 30px 20px 30px;
    border-bottom: 1px solid rgba(184, 134, 11, 0.2);
}

.auth-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(184, 134, 11, 0.1);
    border: 1px solid var(--primary-color);
    color: var(--secondary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.auth-modal-close:hover {
    background: var(--primary-color);
    color: var(--dark);
    transform: rotate(90deg);
}

.auth-modal-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 36px;
    color: var(--dark);
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.4);
}

.auth-modal-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 0 10px 0;
    font-family: 'Rajdhani', sans-serif;
}

.auth-modal-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.4;
}

.auth-modal-content {
    padding: 20px 30px 30px 30px;
}

.auth-error-message {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #ff6b6b;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    text-align: center;
}

.auth-success-message {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: #51cf66;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    text-align: center;
}

.auth-steps-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.auth-step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(184, 134, 11, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.auth-step-item:hover {
    background: rgba(184, 134, 11, 0.05);
    border-color: rgba(184, 134, 11, 0.2);
    transform: translateY(-2px);
}

.auth-step-number {
    min-width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.3);
}

.auth-step-content h3 {
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
    font-family: 'Rajdhani', sans-serif;
}

.auth-step-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.auth-telegram-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #0088cc, #0099dd);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
}

.auth-telegram-btn:hover {
    background: linear-gradient(135deg, #006699, #0088cc);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.4);
    color: white;
}

.auth-code-input-group {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.auth-code-input {
    flex: 1;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(184, 134, 11, 0.2);
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
}

.auth-code-input:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.auth-code-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
}

.auth-verify-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--dark);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
    min-width: 120px;
    justify-content: center;
}

.auth-verify-btn:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.4);
}

.auth-verify-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.auth-code-info {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    text-align: center;
    margin: 0;
    line-height: 1.4;
}

/* Mobile Responsive Auth Modal */
@media screen and (max-width: 768px) {
    .auth-modal-container {
        width: 95%;
        max-height: 85vh;
    }
    
    .auth-modal-header {
        padding: 25px 20px 15px 20px;
    }
    
    .auth-modal-content {
        padding: 15px 20px 25px 20px;
    }
    
    .auth-step-item {
        padding: 15px;
        gap: 15px;
    }
    
    .auth-code-input-group {
        flex-direction: column;
        gap: 12px;
    }
    
    .auth-verify-btn {
        min-width: 100%;
    }
    
    .auth-modal-title {
        font-size: 20px;
    }
    
    .auth-modal-subtitle {
        font-size: 14px;
    }
}

/* Standart Modal Styles - Eski sistem iÃ§in korundu */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    animation: modalFadeIn 0.3s ease-out;
}

/* Leaderboard Styles - SÄ±ralama Tablosu */
.leaderboard-filters {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.filter-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-color: var(--secondary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.3);
}

.filter-btn i {
    font-size: 14px;
}

.leaderboard-section {
    margin-top: 30px;
}

.leaderboard-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    animation: cardBorderGlow 3s infinite;
}

.leaderboard-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.table-header {
    display: grid;
    grid-template-columns: 80px 1fr 150px;
    gap: 20px;
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.2), rgba(255, 215, 0, 0.1));
    border-radius: 12px;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 16px;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.table-row {
    display: grid;
    grid-template-columns: 80px 1fr 150px;
    gap: 20px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    align-items: center;
}

.table-row:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
    border-color: rgba(184, 134, 11, 0.3);
}

.table-row.current-user {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.15), rgba(255, 215, 0, 0.1));
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 15px rgba(184, 134, 11, 0.2);
}

.table-row.gold {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 223, 0, 0.1));
    border: 1px solid #FFD700;
}

.table-row.silver {
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.2), rgba(169, 169, 169, 0.1));
    border: 1px solid #C0C0C0;
}

.table-row.bronze {
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.2), rgba(184, 115, 51, 0.1));
    border: 1px solid #CD7F32;
}

.rank-col {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 18px;
}

.rank-number {
    min-width: 30px;
    text-align: center;
    color: #fff;
}

.rank-col i {
    font-size: 20px;
}

.table-row.gold .rank-col i {
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.table-row.silver .rank-col i {
    color: #C0C0C0;
    text-shadow: 0 0 10px rgba(192, 192, 192, 0.5);
}

.table-row.bronze .rank-col i {
    color: #CD7F32;
    text-shadow: 0 0 10px rgba(205, 127, 50, 0.5);
}

.user-col {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    flex-shrink: 0;
}

.user-avatar img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(184, 134, 11, 0.5);
    transition: all 0.3s ease;
}

.table-row:hover .user-avatar img {
    border-color: var(--secondary-color);
    box-shadow: 0 0 15px rgba(184, 134, 11, 0.3);
}

.user-info {
    flex: 1;
    min-width: 0;
}

.user-name {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 3px;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: normal;
    word-break: break-word;
}

.user-username {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    white-space: normal;
    word-break: break-word;
}

.you-badge {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.score-col {
    text-align: right;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 0;
}

.score-number {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    display: inline-block;
}

.loading-chart,
.chart-error,
.chart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

.loading-chart i,
.chart-error i,
.chart-empty i {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.loading-chart i {
    animation: spin 1s linear infinite;
}

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

/* Responsive Design - Leaderboard */
@media (max-width: 768px) {
    .filter-buttons {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 10px 16px;
        font-size: 12px;
    }
    
    .filter-btn span {
        display: none;
    }
    
    .leaderboard-container {
        padding: 15px;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 60px 1fr 100px;
        gap: 15px;
        padding: 12px 15px;
    }
    
    .rank-col {
        font-size: 16px;
    }
    
    .user-avatar img {
        width: 40px;
        height: 40px;
    }
    
    .user-name {
        font-size: 14px;
    }
    
    .user-username {
        font-size: 12px;
    }
    
    .score-number {
        font-size: 16px;
        max-width: 100px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .table-header,
    .table-row {
        grid-template-columns: 50px 1fr 90px;
        gap: 10px;
        padding: 10px 12px;
    }
    
    .user-col {
        gap: 10px;
    }
    
    .user-avatar img {
        width: 35px;
        height: 35px;
    }
    
    .user-name {
        font-size: 13px;
    }
    
    .score-number {
        font-size: 14px;
        max-width: 90px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .you-badge {
        font-size: 10px;
        padding: 1px 6px;
    }
}

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

.modal-content {
    position: relative;
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.95), rgba(26, 35, 126, 0.15));
    backdrop-filter: blur(20px);
    margin: 0;
    padding: 0;
    border-radius: 25px;
    width: 95%;
    max-width: 500px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: modalSlideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    /* Perfect Center Alignment */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    /* Max height with scroll */
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.modal-header {
    text-align: center;
    padding: 40px 35px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(255, 215, 0, 0.05), transparent);
    border-radius: 25px 25px 0 0;
}

.modal-header h2 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 15px;
    background: linear-gradient(45deg, #fff, var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    position: relative;
    z-index: 1;
}

.modal-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin: 0;
    position: relative;
    z-index: 1;
}

.close {
    position: absolute;
    top: 20px;
    right: 25px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 2;
}

.close:hover {
    color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.auth-container {
    padding: 35px;
    text-align: center;
}

.auth-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 50px 20px;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(255, 255, 255, 0.1);
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.auth-loading p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    font-weight: 600;
    background: linear-gradient(45deg, #fff, var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.auth-code-display {
    max-width: 100%;
    margin: 0 auto;
}

.auth-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    text-align: left;
    background: rgba(255, 255, 255, 0.08);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.auth-step::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.05), transparent);
    transform: rotate(45deg);
    animation: shimmer 4s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.auth-step:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(184, 134, 11, 0.25);
}

.step-number {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(184, 134, 11, 0.4);
    animation: glowPulse 2.5s infinite;
    position: relative;
    z-index: 1;
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 8px 20px rgba(184, 134, 11, 0.4);
    }
    50% {
        box-shadow: 0 8px 30px rgba(184, 134, 11, 0.7);
    }
}

.step-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.step-content h3 {
    margin: 0 0 15px 0;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(45deg, #fff, var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.step-content p {
    margin: 10px 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.6;
}

.auth-code {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.4);
    border: 3px solid var(--primary-color);
    border-radius: 18px;
    padding: 22px;
    margin: 18px 0;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(91, 83, 210, 0.3);
}

.auth-code::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(91, 83, 210, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

.auth-code span {
    font-family: 'Courier New', monospace;
    font-size: 32px;
    font-weight: bold;
    color: var(--secondary-color);
    letter-spacing: 5px;
    flex: 1;
    text-shadow: 0 0 15px var(--secondary-color);
    position: relative;
    z-index: 1;
    text-align: center;
}

.copy-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 12px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    position: relative;
    z-index: 1;
    animation: glowPulse 2.5s infinite;
    box-shadow: 0 5px 15px rgba(91, 83, 210, 0.4);
}

.copy-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 0 25px var(--secondary-color);
    animation: none;
}

.copy-btn.copied {
    background: linear-gradient(45deg, #4CAF50, #8BC34A);
    animation: none;
}

.copy-btn i {
    font-size: 18px;
}

.telegram-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(45deg, #0088cc, #00acc1);
    color: white;
    text-decoration: none;
    padding: 18px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 700;
    font-size: 18px;
    margin-top: 18px;
    box-shadow: 0 8px 20px rgba(0, 136, 204, 0.4);
    animation: glowPulse 2.5s infinite;
    position: relative;
    overflow: hidden;
}

.telegram-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.3s ease;
    opacity: 0;
}

.telegram-btn:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.telegram-btn:hover {
    background: linear-gradient(45deg, #006699, #00838f);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 136, 204, 0.6);
    color: white;
    animation: none;
}

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

.auth-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 22px;
    margin-top: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
}

.countdown {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ff4444;
    font-weight: 700;
    font-size: 20px;
    text-shadow: 0 0 15px #ff4444;
    animation: blink 1.5s infinite;
}

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

.countdown i {
    font-size: 22px;
}

.new-code-btn {
    background: linear-gradient(45deg, #6c757d, #495057);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 12px 22px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
}

.new-code-btn:hover {
    background: linear-gradient(45deg, #495057, #343a40);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(108, 117, 125, 0.4);
}

.auth-error {
    background: rgba(255, 68, 68, 0.15);
    color: #ff4444;
    border: 2px solid #ff4444;
    border-radius: 18px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 25px 0;
    backdrop-filter: blur(15px);
    animation: shake 0.6s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-8px); }
    75% { transform: translateX(8px); }
}

.auth-success {
    background: rgba(76, 175, 80, 0.15);
    color: #4CAF50;
    border: 2px solid #4CAF50;
    border-radius: 18px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 25px 0;
    backdrop-filter: blur(15px);
    animation: bounceIn 0.6s ease-out;
}

@keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); }
}

.auth-error i,
.auth-success i {
    font-size: 26px;
    flex-shrink: 0;
}

.auth-error span,
.auth-success span {
    font-weight: 600;
    font-size: 18px;
}

/* Navigation Responsive - DÃ¼zeltme */
@media (max-width: 1200px) {
    .nav-btn span {
        display: none;
    }
    
    .nav-btn {
        min-width: 40px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
        overflow: visible !important;
    }
    
    .nav-buttons {
        justify-content: center;
        flex-wrap: wrap;
        order: 2;
    }
    
    .nav-btn span {
        display: inline-block;
    }
    
    .auth-section {
        margin-left: 0;
        align-self: center;
        order: 1;
    }
    
    .user-dropdown {
        right: -10px !important;
        min-width: 160px !important;
    }
}

@media (max-width: 480px) {
    .nav-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    
    .nav-btn {
        justify-content: center;
        width: 100%;
    }
    
    .modal-content {
        width: 95%;
        margin: 10px;
    }
    
    .modal-header {
        padding: 25px 20px 20px;
    }
    
    .modal-header h2 {
        font-size: 24px;
    }
    
    .auth-container {
        padding: 20px;
    }
    
    .auth-step {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 15px;
    }
    
    .step-number {
        align-self: center;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .step-content h3 {
        font-size: 20px;
    }
    
    .auth-code {
        padding: 18px;
        gap: 12px;
    }
    
    .auth-code span {
        font-size: 24px;
        letter-spacing: 3px;
    }
    
    .copy-btn {
        width: 50px;
        height: 50px;
    }
    
    .auth-status {
        flex-direction: column;
        gap: 15px;
        padding: 18px;
    }
    
    .countdown {
        font-size: 18px;
    }
    
    .telegram-btn {
        padding: 15px 25px;
        font-size: 16px;
    }
}


/* ========================================= */
/* NEW SIDEBAR LAYOUT STYLES */
/* ========================================= */

/* Main Content Sections */
.page-section {
    margin-bottom: 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px 0;
}

.section-header .section-title {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #FFD700, #B8860B);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-shadow: 0 0 20px rgba(184, 134, 11, 0.3);
}

.section-header .section-title i {
    font-size: 24px;
    color: #FFD700;
    animation: iconGlow 2s infinite;
}

@keyframes iconGlow {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
    }
}

/* Main Footer Styles for New Layout */
.main-footer {
    background: linear-gradient(135deg,
        rgba(18, 18, 18, 0.95) 0%,
        rgba(40, 40, 40, 0.92) 50%,
        rgba(18, 18, 18, 0.95) 100%);
    backdrop-filter: blur(15px);
    border-top: 2px solid rgba(184, 134, 11, 0.3);
    padding: 30px 0;
    margin-top: 50px;
    margin-left: 280px;
    position: relative;
    transition: all 0.3s ease;
}

/* Footer da sidebar kapalÄ± olduÄŸunda tam geniÅŸlikte */
body.sidebar-closed .main-footer {
    margin-left: 0;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(184, 134, 11, 0.5), 
        rgba(255, 215, 0, 0.8), 
        rgba(184, 134, 11, 0.5), 
        transparent);
    animation: footerBorderGlow 3s infinite;
}

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

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

.main-footer .footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-footer .footer-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.main-footer .footer-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.main-footer .footer-logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(184, 134, 11, 0.5);
    transition: all 0.3s ease;
    animation: logoGlow 3s infinite;
}

.main-footer .footer-brand {
    display: flex;
    flex-direction: column;
}

.main-footer .footer-brand .brand-name {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #FFD700, #B8860B);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.main-footer .footer-brand .copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

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

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    padding: 8px 16px;
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #FFD700;
    border-color: #FFD700;
    background: rgba(184, 134, 11, 0.1);
    transform: translateY(-2px);
}

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

.footer-designer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-designer .designer-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-designer .designer-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
}

.footer-designer .designer-avatar img:hover {
    border-color: #FFD700;
    transform: scale(1.05);
}

.footer-designer .designer-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.footer-designer .designer-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    text-transform: capitalize;
}

.footer-designer .designer-name {
    font-size: 14px;
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-designer .designer-name:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    transform: translateX(-2px);
}

.footer-provider {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-provider .provider-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(184, 134, 11, 0.4);
    opacity: 0.9;
    transition: all 0.3s ease;
    animation: logoGlow 3s infinite;
}

.footer-license img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.main-footer .designer-credit {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.main-footer .designer-link {
    color: #FFD700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 3px;
    transition: all 0.3s ease;
}

.main-footer .designer-link:hover {
    color: #fff;
    transform: translateX(-3px);
}

/* Sidebar Responsive Design - Desktop: Always open, Mobile: Collapsible */
@media (max-width: 1024px) {
    .content-wrapper {
        padding: 15px;
    }
}

@media (max-width: 768px) {
    /* Mobile: Allow scroll to show footer */
    body {
        min-height: 100vh;
        overflow-x: hidden;
        overflow-y: auto;
    }
    
    .page-wrapper {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }
    
    /* Mobile: Main container has no margin, flexible height */
    .main-container {
        margin-left: 0;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    /* Mobile: Footer also has no margin, compact size */
    .main-footer {
        margin-left: 0;
        margin-top: 0;
        padding: 15px 0;
        flex-shrink: 0;
    }
    
    
    /* Mobile'da sidebar kapatma butonunu gÃ¶ster */
    .sidebar-close-btn {
        display: flex !important;
        z-index: 1003 !important;
    }
    
    /* Mobile: Header compact */
    .top-header {
        padding: 8px 15px;
        flex-shrink: 0;
    }
    
    .page-title {
        font-size: 24px;
        letter-spacing: 2px;
    }
    
    .page-subtitle {
        font-size: 11px;
    }
    
    .header-breadcrumb {
        display: none;
    }
    
    /* Mobile: Content wrapper takes remaining space with scroll */
    .content-wrapper {
        flex: 1;
        padding: 10px;
        overflow-y: auto;
        overflow-x: hidden;
    }
    
    /* Mobile: Compact casino cards */
    .casino-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 8px;
        padding: 10px 0;
    }
    
    .casino-card {
        min-height: 180px;
        padding: 12px 8px;
    }
    
    .casino-logo {
        width: 80px;
        height: 50px;
        margin: 0 auto 8px;
    }
    
    .casino-name {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .casino-promotion {
        font-size: 11px;
        margin-bottom: 10px;
    }
    
    .casino-button {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    /* Mobile: Section headers compact */
    .section-header {
        margin-bottom: 15px;
        padding: 10px 0;
    }
    
    .section-header .section-title {
        font-size: 20px;
    }
    
    /* Mobile: Footer compact */
    .main-footer .footer-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 0 10px;
    }
    
    .main-footer .footer-left {
        justify-content: center;
        gap: 15px;
    }
    
    .main-footer .footer-right {
        justify-content: center;
        gap: 15px;
    }
    
    .footer-designer .designer-text {
        align-items: center;
    }
    
    .footer-designer .designer-label {
        font-size: 10px;
    }
    
    .footer-links {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .footer-link {
        font-size: 10px;
        padding: 4px 10px;
    }
    
    .main-footer .footer-logo img,
    .footer-license img {
        width: 35px;
        height: 35px;
    }
    
    .main-footer .footer-brand .brand-name {
        font-size: 16px;
    }
    
    .main-footer .footer-brand .copyright {
        font-size: 10px;
    }
    
    /* Mobile: Sidebar full height */
    .sidebar {
        height: 100vh;
        overflow-y: auto;
    }
    
    .sidebar-header {
        padding: 15px;
    }
    
    .sidebar-logo img {
        width: 60px;
        height: 60px;
    }
    
    .sidebar-brand .brand-name {
        font-size: 16px;
    }
    
    .nav-link {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .section-title {
        font-size: 12px;
    }
    
    .sidebar .social-button {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .sidebar-ad-item {
        padding: 10px;
    }
    
    .sidebar-ad-item .ad-name {
        font-size: 12px;
    }
    
    .sidebar-ad-item .ad-description {
        font-size: 10px;
    }
    
    .sidebar-credit {
        font-size: 10px;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile - ultra compact NO SCROLL design */
    .top-header {
        padding: 6px 10px;
    }
    
    .login-btn {
        padding: 6px 12px;
        font-size: 10px;
    }
    
    .login-btn span {
        display: none;
    }
    
    .page-title {
        font-size: 20px;
        letter-spacing: 1px;
    }
    
    .page-subtitle {
        font-size: 14px;
    }
    
    .page-subtitle {
        display: none; /* Hide subtitle on very small screens */
    }
    
    .content-wrapper {
        padding: 8px;
    }
    
    .section-header {
        margin-bottom: 10px;
        padding: 8px 0;
    }
    
    .section-header .section-title {
        font-size: 18px;
    }
    
    /* Ultra compact casino cards - 2 columns */
    .casino-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
    
    .casino-card {
        min-height: 160px;
        padding: 8px 6px;
    }
    
    .casino-logo {
        width: 70px;
        height: 45px;
    }
    
    .casino-name {
        font-size: 12px;
        margin-bottom: 6px;
    }
    
    .casino-promotion {
        font-size: 10px;
        margin-bottom: 8px;
    }
    
    .casino-button {
        padding: 5px 10px;
        font-size: 10px;
    }
    
    /* Footer ultra compact */
    .main-footer {
        padding: 10px 0;
        margin-top: 0;
    }
    
    .footer-container {
        padding: 0 10px;
    }
    
    .main-footer .footer-content {
        gap: 10px;
    }
    
    .main-footer .footer-left {
        flex-direction: row;
        gap: 10px;
    }
    
    .footer-links {
        flex-direction: row;
        gap: 6px;
    }
    
    .footer-link {
        font-size: 9px;
        padding: 3px 8px;
    }
    
    .main-footer .footer-logo img,
    .footer-license img {
        width: 30px;
        height: 30px;
    }
    
    .main-footer .footer-brand .brand-name {
        font-size: 14px;
    }
    
    .main-footer .footer-brand .copyright {
        font-size: 9px;
    }
    
    .main-footer .designer-credit {
        font-size: 9px;
    }
    
    /* Sidebar ultra compact */
    .sidebar-header {
        padding: 12px;
    }
    
    .sidebar-logo img {
        width: 50px;
        height: 50px;
    }
    
    .sidebar-brand .brand-name {
        font-size: 14px;
    }
    
    .nav-link {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .section-title {
        font-size: 11px;
    }
    
    .sidebar .social-button {
        padding: 6px 10px;
        font-size: 11px;
    }
    
    .sidebar-ad-item {
        padding: 8px;
    }
    
    .sidebar-ad-item .ad-name {
        font-size: 11px;
    }
    
    .sidebar-ad-item .ad-description {
        font-size: 9px;
    }
    
    .sidebar-credit {
        font-size: 9px;
        padding: 8px;
    }
    
    /* Sidebar toggle button smaller */
    .sidebar-toggle-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

/* Right Ads Positioning for New Layout */
.right-ads {
    right: 20px;
    top: 20px;
    position: fixed;
    z-index: 998;
}

/* Bottom Ads Adjustments for New Layout */
.bottom-ads {
    left: 0;
    right: 0;
    position: fixed;
    bottom: 0;
    z-index: 998;
}

/* Hide ads on mobile for better experience */
@media (max-width: 768px) {
    .right-ads {
        display: none;
    }
    
    .bottom-ads {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin-top: 20px;
    }
}


/* User Profile Styles */
.user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.user-profile:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
    transform: translateY(-1px);
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
}

.user-name {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
}

.user-username {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
}

.user-coins {
    font-size: 12px;
    color: #FFD700;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
    background: rgba(255, 215, 0, 0.1);
    padding: 2px 6px;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
}

.user-coins i {
    font-size: 10px;
    animation: coinGlow 2s infinite alternate;
}

@keyframes coinGlow {
    0% {
        color: #FFD700;
        text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
    }
    100% {
        color: #FFA500;
        text-shadow: 0 0 10px rgba(255, 165, 0, 0.8);
    }
}

/* Statistics Section Styles */
.statistics-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    margin: 20px 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.statistics-container {
    max-width: 1200px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.1));
}

.stat-card.daily::before {
    background: linear-gradient(90deg, #4CAF50, #8BC34A);
}

.stat-card.weekly::before {
    background: linear-gradient(90deg, #2196F3, #03DAC6);
}

.stat-card.monthly::before {
    background: linear-gradient(90deg, #FF9800, #FFC107);
}

.stat-card.total::before {
    background: linear-gradient(90deg, #9C27B0, #E91E63);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3px;
}

.stat-info {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}
/* Statistics Header */
.statistics-header {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.2), rgba(255, 215, 0, 0.1));
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    border: 2px solid rgba(184, 134, 11, 0.3);
}

.header-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-icon {
    font-size: 3rem;
    color: var(--primary-color);
    background: rgba(184, 134, 11, 0.2);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(184, 134, 11, 0.5);
}

.header-text h1 {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 5px;
    font-weight: 600;
}

.header-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

/* User Profile Card */
.user-profile-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 20px;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(184, 134, 11, 0.3);
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info h2 {
    color: #FFD700;
    font-size: 1.8rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.profile-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

/* Stats Grid Enhancement */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

/* Coin System Info */
.coin-system-info {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 15px;
    padding: 25px;
    margin-top: 30px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.coin-system-info h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.system-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.info-value {
    color: #FFD700;
    font-weight: 600;
    font-size: 1rem;
}

/* Chart Error and Empty States */
.chart-error, .chart-empty {
    text-align: center;
    padding: 40px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
}

.chart-error i, .chart-empty i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.chart-bars {
    display: flex;
    align-items: end;
    justify-content: space-around;
    height: 200px;
    padding: 20px;
}


/* Coin Info Section */
.coin-info-section {
    margin: 30px 0;
}

.coin-info-section h3 {
    color: #FFD700;
    margin-bottom: 20px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.coin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.coin-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.1));
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.coin-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.5);
}

.coin-icon {
    font-size: 2rem;
    color: #FFD700;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
}

.coin-content {
    flex: 1;
}

.coin-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.coin-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Activity Chart Section */
.activity-chart-section {
    margin: 30px 0;
}

.activity-chart-section h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.activity-chart {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.chart-container {
    display: flex;
    align-items: end;
    justify-content: space-between;
    height: 200px;
    gap: 10px;
}

.chart-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    max-width: 60px;
}

.bar {
    width: 100%;
    background: linear-gradient(to top, var(--primary-color), var(--secondary-color));
    border-radius: 4px 4px 0 0;
    min-height: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.bar:hover {
    opacity: 0.8;
    transform: scaleY(1.05);
}

.bar-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.bar-count {
    font-size: 0.9rem;
    color: #fff;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.5);
    padding: 2px 6px;
    border-radius: 4px;
    min-width: 20px;
    text-align: center;
}

/* Responsive Design for Statistics */
@media (max-width: 768px) {
    .statistics-section {
        padding: 20px;
        margin: 10px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-card {
        padding: 20px;
        gap: 15px;
    }
    
    .stat-icon {
        font-size: 2rem;
        width: 50px;
        height: 50px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .coin-grid {
        grid-template-columns: 1fr;
    }
    
    .coin-card {
        padding: 20px;
    }
    
    .chart-container {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .stat-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .coin-card {
        flex-direction: column;
        text-align: center;
    }
    
    .chart-container {
        height: 120px;
        gap: 5px;
    }
    
    .bar-count {
        font-size: 0.7rem;
        padding: 1px 4px;
    }
}

/* Loading Animations for Statistics */
.loading-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 150px;
    color: rgba(255, 255, 255, 0.7);
}

.loading-chart i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.loading-chart span {
    font-size: 0.9rem;
}

#todayCoinsCount .fa-spinner {
    color: #FFD700;
}

/* Smooth loading transitions */
.coin-number, .chart-container {
    transition: opacity 0.3s ease;
}

.chart-container.loading {
    opacity: 0.6;
}

.user-dropdown-arrow {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    transition: transform 0.3s ease;
}

.user-profile:hover .user-dropdown-arrow {
    transform: rotate(180deg);
}

/* User Dropdown */
.user-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.95), rgba(26, 35, 126, 0.15));
    backdrop-filter: blur(20px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    min-width: 180px;
    z-index: 1000;
    overflow: hidden;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.dropdown-item i {
    width: 16px;
    text-align: center;
    font-size: 14px;
}

.dropdown-separator {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 5px 0;
}

.logout-item:hover {
    background: rgba(220, 53, 69, 0.2);
    color: #ff6b6b;
}

/* Mobil Coin GÃ¶stergesi */
.dropdown-coin-info {
    padding: 12px 16px;
    text-align: center;
    background: rgba(255, 215, 0, 0.1);
    margin: 4px 8px;
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.coin-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #ffd700;
}

.coin-display i {
    font-size: 16px;
    color: #ffd700;
}

.coin-amount {
    font-weight: 600;
    font-size: 16px;
}

.coin-name {
    font-size: 13px;
    opacity: 0.8;
}

/* Mobil coin sadece mobilde gÃ¶rÃ¼nsÃ¼n */
.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .mobile-only {
        display: block;
    }
    
    /* Desktop coin bilgisini mobilde gizle */
    .user-info .user-coins {
        display: none !important;
    }
}

/* Telegram Login Modal Updates */
.telegram-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #0088cc, #229ed9);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.telegram-btn:hover {
    background: linear-gradient(135deg, #229ed9, #0088cc);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 136, 204, 0.4);
}

/* ==============================================
   SIRALAMA SAYFALARI CSS'LERÄ°
   ============================================== */

/* Navigation Links */
.ranking-navigation {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.ranking-navigation .nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ranking-navigation .nav-item:hover,
.ranking-navigation .nav-item.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: var(--secondary-color);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.3);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px 20px 0 0;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 15px 40px rgba(184, 134, 11, 0.2);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.3);
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-family: 'Rajdhani', sans-serif;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Ranking Section */
.ranking-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(184, 134, 11, 0.3);
}

.section-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
    font-family: 'Rajdhani', sans-serif;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.user-count {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #000;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.3);
}

/* Ranking Table */
.ranking-table {
    width: 100%;
}

.ranking-header,
.ranking-row {
    display: grid;
    grid-template-columns: 80px 1fr 120px 120px;
    gap: 20px;
    padding: 15px 20px;
    align-items: center;
}

/* Coin sÄ±ralamasÄ± iÃ§in 3 kolonlu grid */
.coin-ranking .ranking-header,
.coin-ranking .ranking-row {
    grid-template-columns: 80px 1fr 150px;
}

/* Mesaj sÄ±ralamasÄ± iÃ§in 6 kolonlu grid */
.message-ranking .ranking-header,
.message-ranking .ranking-row {
    grid-template-columns: 80px 1fr 100px 100px 100px 120px;
}

/* Mesaj sÄ±ralamasÄ±ndaki son kolondaki sayÄ±lar iÃ§in Ã¶zel kontrol */
.message-ranking .ranking-row > div:last-child {
    text-align: right;
    overflow: hidden;
    max-width: 120px;
    padding-right: 10px;
}

.message-ranking .ranking-row > div:last-child * {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
}

.ranking-header {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.3), rgba(255, 215, 0, 0.2));
    border-radius: 15px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #fff;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ranking-row {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.ranking-row:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(184, 134, 11, 0.4);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(184, 134, 11, 0.1);
}

/* Rank Styles */
.rank-gold {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 223, 0, 0.1)) !important;
    border-color: rgba(255, 215, 0, 0.5) !important;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.rank-silver {
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.2), rgba(169, 169, 169, 0.1)) !important;
    border-color: rgba(192, 192, 192, 0.5) !important;
    box-shadow: 0 0 20px rgba(192, 192, 192, 0.2);
}

.rank-bronze {
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.2), rgba(184, 115, 51, 0.1)) !important;
    border-color: rgba(205, 127, 50, 0.5) !important;
    box-shadow: 0 0 20px rgba(205, 127, 50, 0.2);
}

.rank-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: 'Rajdhani', sans-serif;
}

/* User Info */
.user-col {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: flex-start;
    width: 100%;
    min-width: 0;
    overflow: hidden;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--secondary-color);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.2rem;
}

.user-details {
    flex: 1;
    min-width: 0;
}

.user-name {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-username {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Balance/Message Cells */
.balance-cell,
.message-cell,
.processed-cell,
.earned-cell,
.date-cell {
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.balance-amount,
.message-count,
.processed-count,
.earned-amount {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 3px;
    font-family: 'Rajdhani', sans-serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    display: inline-block;
}

.balance-currency,
.earned-currency {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.success-rate {
    font-size: 0.8rem;
    color: rgba(46, 204, 113, 0.8);
    font-weight: 500;
    margin-top: 2px;
}

.last-message {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.last-time {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2px;
}

.no-message {
    color: rgba(255, 255, 255, 0.3);
    font-style: italic;
}

/* Info Boxes */
.info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.info-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.info-box:hover {
    transform: translateY(-5px);
    border-color: rgba(184, 134, 11, 0.5);
    box-shadow: 0 15px 40px rgba(184, 134, 11, 0.2);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.3), rgba(255, 215, 0, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--secondary-color);
    flex-shrink: 0;
    border: 2px solid rgba(184, 134, 11, 0.3);
}

.info-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    font-family: 'Rajdhani', sans-serif;
}

.info-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 15px;
}

.market-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: #fff;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.market-btn:hover {
    background: linear-gradient(135deg, #20c997, #28a745);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
    color: #fff;
    text-decoration: none;
}

/* No Data Message */
.no-data-message {
    text-align: center;
    padding: 60px 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.no-data-icon {
    font-size: 4rem;
    color: rgba(184, 134, 11, 0.5);
    margin-bottom: 20px;
}

.no-data-message h3 {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    font-family: 'Rajdhani', sans-serif;
}

.no-data-message p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ranking-navigation {
        flex-direction: column;
        align-items: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .stat-card {
        padding: 20px;
        gap: 15px;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .ranking-section {
        padding: 20px;
    }
    
    .section-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .ranking-header,
    .ranking-row {
        grid-template-columns: 50px minmax(0, 1fr) 70px;
        gap: 8px;
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    /* Mobil iÃ§in user-col sÄ±nÄ±rlandÄ±r - KEsinlikle taÅŸmasÄ±n */
    .user-col {
        max-width: 100%;
        overflow: hidden !important;
        min-width: 0 !important;
    }
    
    .user-info {
        max-width: 100% !important;
        overflow: hidden !important;
        min-width: 0 !important;
    }
    
    .user-name {
        max-width: 100% !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
    }
    
    .user-username {
        max-width: 100% !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
    }
    
    /* Score kolonu sabit geniÅŸlik - taÅŸmasÄ±n */
    .score-col {
        max-width: 70px !important;
        min-width: 70px !important;
        overflow: hidden !important;
    }
    
    .score-number {
        max-width: 65px !important;
        font-size: 0.85rem !important;
    }
    
    /* Mobil iÃ§in tÃ¼m amount/count celleri */
    .balance-cell,
    .message-cell,
    .processed-cell,
    .earned-cell {
        max-width: 80px !important;
        overflow: hidden !important;
    }
    
    .balance-amount,
    .message-count,
    .processed-count,
    .earned-amount {
        font-size: 0.9rem !important;
        max-width: 75px !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
    }
    
    /* Coin sÄ±ralamasÄ± mobil iÃ§in 3 kolon */
    .coin-ranking .ranking-header,
    .coin-ranking .ranking-row {
        grid-template-columns: 60px 1fr 100px;
    }
    
    /* Mesaj sÄ±ralamasÄ± mobil iÃ§in 3 kolon - basit dÃ¼zen */
    .message-ranking .ranking-header,
    .message-ranking .ranking-row {
        grid-template-columns: 50px 1fr 70px;
    }
    
    /* DiÄŸer kolonlarÄ± gizle */
    .message-ranking .ranking-row > div:nth-child(3):not(:last-child),
    .message-ranking .ranking-row > div:nth-child(4):not(:last-child),
    .message-ranking .ranking-row > div:nth-child(5):not(:last-child) {
        display: none;
    }
    
    .message-ranking .ranking-header > div:nth-child(3):not(:last-child),
    .message-ranking .ranking-header > div:nth-child(4):not(:last-child),
    .message-ranking .ranking-header > div:nth-child(5):not(:last-child) {
        display: none;
    }
    
    /* Mobil mesaj sÄ±ralamasÄ± - tÃ¼m sayÄ± kolonlarÄ± iÃ§in sÄ±kÄ± kontrol */
    .message-ranking .ranking-row > div:nth-child(3),
    .message-ranking .ranking-row > div:nth-child(4),
    .message-ranking .ranking-row > div:nth-child(5),
    .message-ranking .ranking-row > div:last-child {
        max-width: 50px !important;
        overflow: hidden !important;
        text-align: center !important;
        padding: 0 1px !important;
        box-sizing: border-box !important;
    }
    
    .message-ranking .ranking-row > div:last-child {
        max-width: 55px !important;
    }
    
    .message-ranking .ranking-row > div:nth-child(3) *,
    .message-ranking .ranking-row > div:nth-child(4) *,
    .message-ranking .ranking-row > div:nth-child(5) *,
    .message-ranking .ranking-row > div:last-child * {
        max-width: 100% !important;
        font-size: 0.75rem !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
        display: block !important;
        line-height: 1.1 !important;
    }
    
    .user-avatar {
        width: 40px;
        height: 40px;
        border-width: 2px;
    }
    
    .user-info {
        gap: 10px;
    }
    
    .info-boxes {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .info-box {
        padding: 20px;
        gap: 15px;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .ranking-header,
    .ranking-row {
        grid-template-columns: 40px minmax(0, 1fr) 60px;
        gap: 5px;
        padding: 8px 10px;
        font-size: 0.8rem;
    }
    
    /* 480px iÃ§in ultra sÄ±kÄ± user-col kontrol */
    .user-col {
        max-width: 100% !important;
        overflow: hidden !important;
        min-width: 0 !important;
    }
    
    .user-info {
        max-width: 100% !important;
        overflow: hidden !important;
        min-width: 0 !important;
    }
    
    .user-name {
        max-width: 100% !important;
        font-size: 0.8rem !important;
    }
    
    .user-username {
        max-width: 100% !important;
        font-size: 0.7rem !important;
    }
    
    /* Score kolonu 480px'de sabit */
    .score-col {
        max-width: 60px !important;
        min-width: 60px !important;
        overflow: hidden !important;
    }
    
    .score-number {
        max-width: 55px !important;
        font-size: 0.75rem !important;
    }
    
    /* 480px iÃ§in daha sÄ±kÄ± kontrol */
    .balance-cell,
    .message-cell,
    .processed-cell,
    .earned-cell {
        max-width: 65px !important;
        overflow: hidden !important;
    }
    
    .balance-amount,
    .message-count,
    .processed-count,
    .earned-amount {
        font-size: 0.8rem !important;
        max-width: 60px !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
        display: block !important;
    }
    
    /* Coin sÄ±ralamasÄ± 480px iÃ§in 3 kolon - zaten varsayÄ±lan */
    .coin-ranking .ranking-header,
    .coin-ranking .ranking-row {
        grid-template-columns: 50px 1fr 80px;
    }
    
    /* Mesaj sÄ±ralamasÄ± 480px iÃ§in sadece 4 kolon - ultra dar */
    .message-ranking .ranking-header,
    .message-ranking .ranking-row {
        grid-template-columns: 40px 1fr 45px 45px;
    }
    
    /* Mesaj sÄ±ralamasÄ±nda bazÄ± kolonlarÄ± gizle */
    .message-ranking .earned-cell,
    .message-ranking .date-cell {
        display: none;
    }
    
    /* 480px'de kalan kolonlar iÃ§in ultra sÄ±kÄ± kontrol */
    .message-ranking .ranking-row > div:nth-child(3),
    .message-ranking .ranking-row > div:nth-child(4) {
        max-width: 43px !important;
        min-width: 43px !important;
        overflow: hidden !important;
        text-align: center !important;
        padding: 0 1px !important;
        box-sizing: border-box !important;
    }
    
    .message-ranking .ranking-row > div:nth-child(3) *,
    .message-ranking .ranking-row > div:nth-child(4) * {
        max-width: 100% !important;
        width: 100% !important;
        font-size: 0.7rem !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
        display: block !important;
        line-height: 1 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .user-avatar {
        width: 35px;
        height: 35px;
    }
    
    .user-name {
        font-size: 0.9rem;
    }
    
    .user-username {
        font-size: 0.75rem;
    }
    
    .balance-amount,
    .message-count,
    .processed-count,
    .earned-amount {
        font-size: 1rem;
        max-width: 80px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .stat-card {
        flex-direction: column;
        text-align: center;
    }
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    animation: pageHeaderShine 3s infinite;
}

@keyframes pageHeaderShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.page-header h2 {
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.page-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin: 0;
}

/* SÄ±ralama KartÄ± */
.card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: all 0.3s ease;
}

.card:hover {
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 12px 40px rgba(184, 134, 11, 0.2);
    transform: translateY(-2px);
}

.card-header {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.2), rgba(255, 215, 0, 0.1));
    border-bottom: 1px solid rgba(184, 134, 11, 0.3);
    padding: 20px;
    color: #fff;
}

.card-header h5 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.card-body {
    background: transparent;
    color: #fff;
}

/* Ä°statistik KartlarÄ± */
.border-primary {
    border-color: var(--primary-color) !important;
    background: rgba(184, 134, 11, 0.1);
}

.border-info {
    border-color: #17a2b8 !important;
    background: rgba(23, 162, 184, 0.1);
}

.border-success {
    border-color: #28a745 !important;
    background: rgba(40, 167, 69, 0.1);
}

.border-warning {
    border-color: var(--secondary-color) !important;
    background: rgba(255, 215, 0, 0.1);
}

/* Tablo Stilleri */
.table {
    color: #fff;
    margin: 0;
}

.table-light {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.table-light th {
    border-color: rgba(184, 134, 11, 0.3);
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.table tbody tr {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.table tbody tr:hover {
    background: rgba(184, 134, 11, 0.1);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
}

.table-warning {
    background: rgba(255, 215, 0, 0.1) !important;
}

.table-primary {
    background: rgba(184, 134, 11, 0.1) !important;
}

/* Badge Stilleri */
.badge {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.bg-warning {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color)) !important;
    color: #000 !important;
    text-shadow: none;
}

.bg-secondary {
    background: linear-gradient(45deg, #6c757d, #495057) !important;
}

.bg-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color)) !important;
}

/* Avatar Stilleri */
.avatar-circle {
    position: relative;
}

.avatar-circle img {
    border: 2px solid var(--secondary-color);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.avatar-circle img:hover {
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
    transform: scale(1.05);
}

.rounded-circle.bg-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color)) !important;
    border: 2px solid var(--secondary-color);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

/* Metin Renkleri */
.text-success {
    color: #20c997 !important;
    text-shadow: 0 0 10px rgba(32, 201, 151, 0.3);
}

.text-info {
    color: #17a2b8 !important;
    text-shadow: 0 0 10px rgba(23, 162, 184, 0.3);
}

.text-warning {
    color: var(--secondary-color) !important;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.text-primary {
    color: var(--secondary-color) !important;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.fw-bold {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
}

/* Buton Stilleri */
.btn {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    border-radius: 15px;
    padding: 10px 20px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-color: var(--secondary-color);
    color: #000;
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.3);
    transform: translateY(-2px);
}

.btn-outline-warning {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    background: transparent;
}

.btn-outline-warning:hover {
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    border-color: var(--primary-color);
    color: #000;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

.btn-secondary {
    background: linear-gradient(45deg, #6c757d, #495057);
    border-color: #6c757d;
    color: #fff;
}

.btn-secondary:hover {
    background: linear-gradient(45deg, #495057, #6c757d);
    border-color: #495057;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 117, 125, 0.3);
}

.btn-success {
    background: linear-gradient(45deg, #28a745, #20c997);
    border-color: #28a745;
    color: #fff;
}

.btn-success:hover {
    background: linear-gradient(45deg, #20c997, #28a745);
    border-color: #20c997;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 12px;
}

/* Bilgi KartlarÄ± */
.card.border-info,
.card.border-success,
.card.border-warning,
.card.border-primary {
    position: relative;
    overflow: hidden;
}

.card.border-info::before,
.card.border-success::before,
.card.border-warning::before,
.card.border-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: cardShine 4s infinite;
}

@keyframes cardShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Ä°konlar */
.fas, .far, .fab {
    text-shadow: 0 0 10px currentColor;
}

/* Responsive TasarÄ±m */
@media (max-width: 768px) {
    .page-header {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .page-header .d-flex {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .page-header .d-flex > div:last-child {
        order: -1;
    }
    
    .table-responsive {
        font-size: 14px;
    }
    
    .avatar-circle img,
    .rounded-circle {
        width: 35px !important;
        height: 35px !important;
    }
    
    .card-header {
        padding: 15px;
    }
    
    .btn {
        font-size: 12px;
        padding: 8px 15px;
    }
}

@media (max-width: 480px) {
    .table-responsive {
        font-size: 12px;
    }
    
    .avatar-circle img,
    .rounded-circle {
        width: 30px !important;
        height: 30px !important;
    }
    
    .badge {
        font-size: 10px;
    }
    
    .fw-bold {
        font-size: 14px;
    }
    
    .page-header h2 {
        font-size: 24px;
    }
    
    .page-header p {
        font-size: 14px;
    }
}

/* Animasyonlar */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.card {
    animation: fadeInUp 0.6s ease-out forwards;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }

/* Tablo satÄ±rlarÄ± iÃ§in animasyon */
.table tbody tr {
    animation: fadeInUp 0.3s ease-out forwards;
}

.table tbody tr:nth-child(1) { animation-delay: 0.1s; }
.table tbody tr:nth-child(2) { animation-delay: 0.15s; }
.table tbody tr:nth-child(3) { animation-delay: 0.2s; }
.table tbody tr:nth-child(4) { animation-delay: 0.25s; }
.table tbody tr:nth-child(5) { animation-delay: 0.3s; }

/* Glow efektleri */
.text-success:hover,
.text-warning:hover,
.text-primary:hover,
.text-info:hover {
    filter: brightness(1.2);
    transform: scale(1.02);
    transition: all 0.2s ease;
}

/* Custom scrollbar */
.table-responsive::-webkit-scrollbar {
    height: 6px;
}

.table-responsive::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.table-responsive::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.table-responsive::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
}

.code-input-container {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}

.auth-code-input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    text-align: center;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
}

.auth-code-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
}

.verify-btn {
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.verify-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.4);
}

.verify-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.code-info {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin-top: 10px;
}

.auth-error {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #ff6b6b;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
}

.auth-success {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: #51cf66;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
}

/* Mobile Responsive User Profile */
@media (max-width: 768px) {
    .user-profile {
        padding: 6px 12px;
        gap: 8px;
    }
    
    /* Header user-avatar'Ä± hariÃ§ tut, sadece ranking iÃ§in */
    .statistics-container .user-avatar {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        aspect-ratio: 1 / 1;
    }
    
    .user-dropdown {
        right: -10px;
        min-width: 160px;
    }
    
    .code-input-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .auth-code-input {
        font-size: 18px;
        padding: 15px;
    }
}

/* ========================================= */
/* MARKET PAGE STYLES */
/* ========================================= */

/* Coin Icon Large for Market Page */
.coin-icon-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #000;
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.3);
}

/* Market Content */
.market-content {
    margin-top: 30px;
}

/* Category Filter */
.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
    justify-content: center;
}

.category-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    color: #fff;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-btn:hover {
    background: rgba(184, 134, 11, 0.2);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.category-btn.active {
    background: var(--primary-color);
    border-color: var(--secondary-color);
    color: #000;
    font-weight: 600;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

/* Product Card */
.product-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.2);
}

/* Product Image */
.product-image {
    position: relative;
    width: 100%;
    height: 200px;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-no-image {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: rgba(255, 255, 255, 0.3);
}

.product-stock {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Product Content */
.product-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0;
}

.product-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
    white-space: pre-wrap;
    word-break: break-word;
    overflow-wrap: break-word;
    text-align: left;
}

/* Product Footer */
.product-footer {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Product Actions */
.product-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Quantity Selector */
.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.quantity-btn {
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    color: #000;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.quantity-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.quantity-input {
    width: 60px;
    text-align: center;
    padding: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 500;
}

.quantity-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Buy Button */
.buy-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #000;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.buy-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.4);
}

.buy-btn:disabled {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    cursor: not-allowed;
    transform: none;
}

/* No Data Message */
.no-data-message {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.6);
}

.no-data-icon {
    font-size: 64px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.3);
}

.no-data-message h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.no-data-message p {
    font-size: 16px;
    line-height: 1.5;
}

/* Purchase Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--gradient-bg);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    width: 90vw;
    max-width: 500px;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.modal-header {
    padding: 25px 30px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: var(--secondary-color);
    font-size: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-close {
    background: none;
    border: none;
    font-size: 28px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.modal-body {
    padding: 30px;
}

.purchase-summary {
    margin-bottom: 25px;
}

.product-info h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 20px;
}

.purchase-details {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 16px;
}

.detail-row:last-child {
    margin-bottom: 0;
}

.detail-row.total-row {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    margin-top: 15px;
    font-weight: 700;
    font-size: 18px;
    color: var(--primary-color);
}

.balance-info {
    background: rgba(184, 134, 11, 0.1);
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: 10px;
    padding: 20px;
}

.balance-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 16px;
}

.balance-row:last-child {
    margin-bottom: 0;
    font-weight: 700;
    color: var(--secondary-color);
}

.modal-footer {
    padding: 20px 30px 30px;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #000;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-filter {
        gap: 10px;
    }
    
    .category-btn {
        padding: 10px 18px;
        font-size: 14px;
    }
    
    .product-card {
        padding: 15px;
    }
    
    .product-image {
        height: 180px;
    }
    
    .modal-content {
        width: 95vw;
        max-width: 450px;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-footer {
        padding: 15px 20px 20px;
        flex-direction: column;
    }
    
    .btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .product-footer {
        gap: 12px;
    }
    
    .quantity-selector {
        gap: 8px;
    }
    
    .quantity-btn {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    
    .quantity-input {
        width: 50px;
        padding: 6px;
        font-size: 14px;
    }
    
    .buy-btn {
        padding: 10px 16px;
        font-size: 14px;
    }
}

/* ========================================= */
/* RANKING MOBILE STYLES */
/* ========================================= */
/* Coin Ranking Mobile Styles */
@media (max-width: 768px) {
    .ranking-table.coin-ranking {
        grid-template-columns: 60px 1fr 120px;
        gap: 10px;
    }
    
    .ranking-table.coin-ranking .ranking-header {
        font-size: 0.85rem;
    }
    
    .ranking-table.coin-ranking .user-cell {
        min-width: 0;
    }
    
    .ranking-table.coin-ranking .user-info {
        display: flex !important;
        align-items: center;
        gap: 8px;
        justify-content: flex-start;
        width: 100%;
        min-width: 0;
    }
    
    .ranking-table.coin-ranking .user-avatar {
        width: 32px;
        height: 32px;
        min-width: 32px;
        border-radius: 50%;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.1);
    }
    
    .ranking-table.coin-ranking .user-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }
    
    .ranking-table.coin-ranking .avatar-placeholder {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.2);
        color: var(--gold);
        font-size: 14px;
    }
    
    .ranking-table.coin-ranking .user-details {
        min-width: 0;
        flex: 1;
    }
    
    .ranking-table.coin-ranking .user-name {
        font-size: 0.9rem;
        font-weight: 600;
        color: #fff;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-bottom: 2px;
    }
    
    .ranking-table.coin-ranking .user-username {
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.7);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .ranking-table.coin-ranking .balance-cell {
        text-align: right;
    }
    
    .ranking-table.coin-ranking .balance-amount {
        font-size: 0.9rem;
        font-weight: 700;
        color: var(--gold);
    }
    
    .ranking-table.coin-ranking .balance-currency {
        font-size: 0.7rem;
        color: rgba(255, 255, 255, 0.7);
    }
    
    /* Message Ranking Mobile Styles */
    .ranking-table:not(.coin-ranking) {
        display: block;
        overflow-x: auto;
    }
    
    .ranking-header:not(.coin-ranking .ranking-header) {
        display: none;
    }
    
    .ranking-row:not(.coin-ranking .ranking-row) {
        display: flex;
        flex-direction: column;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        padding: 15px;
        margin-bottom: 15px;
        background: rgba(255, 255, 255, 0.05);
    }
    
    .ranking-row:not(.coin-ranking .ranking-row) .user-info {
        display: flex !important;
        align-items: center;
        gap: 10px;
        justify-content: flex-start;
        width: 100%;
    }
    
    .ranking-row:not(.coin-ranking .ranking-row) .user-avatar {
        width: 40px;
        height: 40px;
        min-width: 40px;
        border-radius: 50%;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.1);
    }
    
    .ranking-row:not(.coin-ranking .ranking-row) .user-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }
    
    .ranking-row:not(.coin-ranking .ranking-row) .avatar-placeholder {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.2);
        color: var(--gold);
        font-size: 16px;
    }
    
    .ranking-row:not(.coin-ranking .ranking-row) .user-details {
        min-width: 0;
        flex: 1;
    }
    
    .ranking-row:not(.coin-ranking .ranking-row) .user-name {
        font-size: 1rem;
        font-weight: 600;
        color: #fff;
        margin-bottom: 3px;
    }
    
    .ranking-row:not(.coin-ranking .ranking-row) .user-username {
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.7);
    }
    
    .ranking-row:not(.coin-ranking .ranking-row) > div {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .ranking-row:not(.coin-ranking .ranking-row) > div:last-child {
        border-bottom: none;
    }
    
    .ranking-row:not(.coin-ranking .ranking-row) > div::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--gold);
        font-size: 0.85rem;
    }
}

/* ========================================= */
/* YENÄ° HEADER PROFÄ°L TASARIMI */
/* ========================================= */

/* Yeni Header Profile TasarÄ±mÄ± */
.header-profile-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.header-profile-container:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Profil FotoÄŸrafÄ± Ã‡erÃ§evesi */
.profile-photo-frame {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    padding: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-photo {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Profil Bilgileri YÄ±ÄŸÄ±nÄ± */
.profile-info-stack {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex: 1;
}

.profile-name {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

.profile-username {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.1;
}

/* Desktop coin bilgisi kaldÄ±rÄ±ldÄ± */

/* Mobile Dropdown Coin Bilgisi */
.profile-dropdown-coin-info {
    padding: 12px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(184, 134, 11, 0.1);
}

.profile-coin-display {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
}

.profile-coin-display i {
    font-size: 16px;
    color: var(--gold);
}

.profile-coin-amount {
    color: #fff;
    font-weight: 700;
}

.profile-coin-name {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Dropdown Arrow */
.profile-dropdown-arrow {
    color: rgba(255, 255, 255, 0.6);
    transition: transform 0.3s ease;
    font-size: 12px;
    margin-left: 4px;
}

.header-profile-container:hover .profile-dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.profile-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    min-width: 200px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    backdrop-filter: blur(15px);
    overflow: hidden;
}

.profile-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
}

.profile-dropdown-item:last-child {
    border-bottom: none;
}

.profile-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--gold);
    text-decoration: none;
}

.profile-dropdown-item:visited {
    color: #fff;
}

.profile-dropdown-item:visited:hover {
    color: var(--gold);
}

.profile-dropdown-item i {
    width: 18px;
    color: var(--gold);
    font-size: 16px;
}

.profile-dropdown-separator {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0;
}

.profile-dropdown-item.logout-item {
    color: #ff6b6b !important;
}

.profile-dropdown-item.logout-item:hover {
    background: rgba(255, 107, 107, 0.1) !important;
    color: #ff8a8a !important;
}

.profile-dropdown-item.logout-item i {
    color: #ff6b6b !important;
}

/* Desktop/Mobile Visibility */
.desktop-only {
    display: block;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
    
    .header-profile-container {
        padding: 8px 12px;
        gap: 10px;
    }
    
    .profile-photo-frame {
        width: 40px;
        height: 40px;
        padding: 2px;
    }
    
    .profile-photo {
        width: 36px;
        height: 36px;
    }
    
    .profile-name {
        font-size: 13px;
    }
    
    .profile-username {
        font-size: 11px;
    }
    
    .profile-dropdown-menu {
        min-width: 180px;
        right: -10px;
    }
}


/* ===== AUTH MODAL STYLES ===== */
.auth-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.auth-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    cursor: pointer;
}

.auth-modal-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.auth-modal.show .auth-modal-container {
    transform: scale(1);
}

.auth-modal-content {
    background: linear-gradient(135deg,
        rgba(18, 18, 18, 0.95) 0%,
        rgba(40, 40, 40, 0.92) 50%,
        rgba(18, 18, 18, 0.95) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(184, 134, 11, 0.3);
    border-radius: 20px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 
                0 0 40px rgba(184, 134, 11, 0.1);
    position: relative;
    overflow: hidden;
}

.auth-modal-header {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
}

.auth-modal-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.auth-modal-logo {
    text-align: center;
    padding: 40px 30px 20px;
    border-bottom: 1px solid rgba(184, 134, 11, 0.2);
}

.auth-modal-logo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 2px solid var(--primary-color);
    padding: 5px;
    background: rgba(184, 134, 11, 0.1);
}

.auth-modal-logo h2 {
    color: var(--secondary-color);
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

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

.auth-welcome {
    text-align: center;
    margin-bottom: 30px;
}

.auth-welcome h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.auth-welcome p {
    color: #ccc;
    font-size: 16px;
    line-height: 1.5;
    opacity: 0.9;
}

.auth-form {
    margin-bottom: 25px;
}

.auth-input-group {
    position: relative;
    margin-bottom: 20px;
}

.auth-input-group label {
    display: block;
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.auth-input {
    width: 100%;
    height: 55px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(184, 134, 11, 0.3);
    border-radius: 12px;
    padding: 0 50px 0 20px;
    font-size: 18px;
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    letter-spacing: 2px;
    text-align: center;
    transition: all 0.3s ease;
    outline: none;
}

.auth-input:focus {
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.1);
}

.auth-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    letter-spacing: 1px;
}

.auth-input-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 18px;
    pointer-events: none;
}

.auth-error, .auth-success {
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.auth-error {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #ff6b6b;
}

.auth-success {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: #51cf66;
}

.auth-submit-btn {
    width: 100%;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    border-radius: 12px;
    color: #000;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.auth-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.4);
}

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

.auth-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.auth-submit-btn::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;
}

.auth-submit-btn:hover::before {
    left: 100%;
}

.auth-help {
    padding-top: 20px;
    border-top: 1px solid rgba(184, 134, 11, 0.2);
}

.auth-help-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #ccc;
    font-size: 14px;
}

.auth-help-item:last-child {
    margin-bottom: 0;
}

.auth-help-item i {
    color: var(--primary-color);
    font-size: 16px;
    width: 20px;
    text-align: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .auth-modal-container {
        padding: 15px;
    }
    
    .auth-modal-content {
        max-width: 100%;
        border-radius: 15px;
    }
    
    .auth-modal-logo {
        padding: 30px 20px 15px;
    }
    
    .auth-modal-logo img {
        width: 60px;
        height: 60px;
    }
    
    .auth-modal-logo h2 {
        font-size: 24px;
    }
    
    .auth-modal-body {
        padding: 20px;
    }
    
    .auth-welcome h3 {
        font-size: 20px;
    }
    
    .auth-welcome p {
        font-size: 14px;
    }
    
    .auth-input {
        height: 50px;
        font-size: 16px;
    }
    
    .auth-submit-btn {
        height: 50px;
        font-size: 16px;
    }
}

/* ===== AUTH MODAL STYLES ===== */
.auth-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.auth-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    cursor: pointer;
    z-index: 10000;
}

.auth-modal-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 450px;
    z-index: 10001;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.auth-modal.show .auth-modal-container {
    transform: translate(-50%, -50%) scale(1);
}

.auth-modal-content {
    background: linear-gradient(135deg,
        rgba(18, 18, 18, 0.95) 0%,
        rgba(40, 40, 40, 0.92) 50%,
        rgba(18, 18, 18, 0.95) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(184, 134, 11, 0.3);
    border-radius: 20px;
    width: 100%;
    max-height: 85vh;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 40px rgba(184, 134, 11, 0.1);
    position: relative;
    overflow: hidden;
}

.auth-modal-header {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
}

.auth-modal-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.auth-modal-body {
    padding: 30px;
    overflow-y: auto;
    max-height: 75vh;
}

.auth-welcome {
    text-align: center;
    margin-bottom: 30px;
}

.auth-welcome h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.auth-welcome p {
    color: #ccc;
    font-size: 16px;
    line-height: 1.5;
    opacity: 0.9;
}

.auth-form {
    margin-bottom: 25px;
}

.auth-input-group {
    position: relative;
    margin-bottom: 20px;
}

.auth-input-group label {
    display: block;
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.auth-input {
    width: 100%;
    height: 55px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(184, 134, 11, 0.3);
    border-radius: 12px;
    padding: 0 50px 0 20px;
    font-size: 18px;
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    letter-spacing: 2px;
    text-align: center;
    transition: all 0.3s ease;
    outline: none;
}

.auth-input:focus {
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.1);
}

.auth-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    letter-spacing: 1px;
}

.auth-input-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 18px;
    pointer-events: none;
}

.auth-error, .auth-success {
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.auth-error {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #ff6b6b;
}

.auth-success {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: #51cf66;
}

.auth-submit-btn {
    width: 100%;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    border-radius: 12px;
    color: #000;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.auth-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.4);
}

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

.auth-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.auth-submit-btn::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;
}

.auth-submit-btn:hover::before {
    left: 100%;
}

/* Telegram Link Section */
.auth-telegram-link {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(0, 123, 255, 0.1);
    border: 1px solid rgba(0, 123, 255, 0.3);
    border-radius: 12px;
}

.telegram-bot-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #0088cc, #229ED9);
    color: #fff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.telegram-bot-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.4);
    text-decoration: none;
    color: #fff;
}

.telegram-help {
    color: #ccc;
    font-size: 14px;
    margin: 0;
    font-style: italic;
}

/* Auth Steps */
.auth-steps {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(184, 134, 11, 0.2);
}

.auth-step {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #ccc;
    font-size: 14px;
}

.auth-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
}

.step-text {
    flex: 1;
    line-height: 1.4;
}

.step-text strong {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .auth-modal-container {
        width: 95%;
        max-width: none;
    }
    
    .auth-modal-content {
        border-radius: 15px;
    }
    
    .auth-modal-logo {
        padding: 30px 20px 15px;
    }
    
    .auth-modal-logo img {
        width: 60px;
        height: 60px;
    }
    
    .auth-modal-logo h2 {
        font-size: 24px;
    }
    
    .auth-modal-body {
        padding: 20px;
    }
    
    .auth-welcome h3 {
        font-size: 20px;
    }
    
    .auth-welcome p {
        font-size: 14px;
    }
    
    .auth-telegram-link {
        padding: 15px;
    }
    
    .telegram-bot-btn {
        font-size: 14px;
        padding: 10px 20px;
    }
    
    .auth-input {
        height: 50px;
        font-size: 16px;
    }
    
    .auth-submit-btn {
        height: 50px;
        font-size: 16px;
    }
    
    .step-number {
        width: 20px;
        height: 20px;
        font-size: 11px;
    }
    
    .step-text {
        font-size: 13px;
    }
}

/* ===== END AUTH MODAL STYLES ===== */
