/* ==================== CASINO SITE CSS ==================== */

/* CSS Variables for Casino Theme */
:root {
    /* Primary Colors */
    --casino-primary: #FFD700;
    --casino-secondary: #1a1a2e;
    --casino-accent: #16213e;
    --casino-dark: #0f0f23;
    
    /* Text Colors */
    --casino-text-light: #ffffff;
    --casino-text-gold: #FFD700;
    --casino-text-secondary: #cccccc;
    --casino-text-muted: #999999;
    
    /* Background Colors */
    --casino-bg-primary: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    --casino-bg-card: rgba(255, 255, 255, 0.05);
    --casino-bg-hover: rgba(255, 215, 0, 0.1);
    
    /* Border Colors */
    --casino-border: rgba(255, 215, 0, 0.3);
    --casino-border-light: rgba(255, 255, 255, 0.1);
    
    /* Shadows */
    --casino-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --casino-shadow-hover: 0 12px 48px rgba(255, 215, 0, 0.2);
    
    /* Gradients */
    --casino-gradient-gold: linear-gradient(45deg, #FFD700, #FFA500);
    --casino-gradient-blue: linear-gradient(45deg, #16213e, #1a1a2e);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--casino-bg-primary);
    color: var(--casino-text-light);
    padding-top: 100px; /* Header yüksekliği için yer bırak */
    min-height: 100vh;
    overflow-x: hidden;
}

main {
    min-height: calc(100vh - 200px); /* Header ve footer için yer bırak */
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--casino-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--casino-gradient-gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--casino-primary);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--casino-text-light);
    font-weight: 600;
}

.text-gold {
    color: var(--casino-text-gold) !important;
}

.text-casino-secondary {
    color: var(--casino-text-secondary) !important;
}

/* Header Styles */
.casino-header {
    background: rgba(15, 15, 35, 0.98);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--casino-border);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.casino-navbar {
    padding: 0.8rem 0;
}

/* Logo Styles */
.casino-logo {
    display: flex;
    align-items: center;
    color: var(--casino-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.casino-logo:hover {
    color: var(--casino-primary);
    transform: scale(1.02);
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.2;
    background: var(--casino-gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-subtitle {
    font-size: 0.7rem;
    color: var(--casino-text-secondary);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Navigation Links */
.casino-nav-link {
    color: var(--casino-text-secondary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.casino-nav-link:hover,
.casino-nav-link.active {
    color: var(--casino-text-light);
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.2));
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.casino-nav-link i {
    transition: all 0.3s ease;
}

.casino-nav-link:hover i {
    transform: scale(1.1);
}

/* Navigation Badge */
.nav-badge {
    background: linear-gradient(45deg, #ff6b6b, #ee5a52);
    color: white;
    font-size: 0.6rem;
    padding: 0.2rem 0.4rem;
    border-radius: 10px;
    margin-left: 0.5rem;
    font-weight: bold;
    text-transform: uppercase;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Dropdown Styles */
.casino-dropdown {
    background: rgba(15, 15, 35, 0.98);
    border: 1px solid var(--casino-border);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0;
}

.casino-dropdown .dropdown-item {
    color: var(--casino-text-secondary);
    padding: 0.7rem 1.5rem;
    transition: all 0.3s ease;
    border-radius: 0;
}

.casino-dropdown .dropdown-item:hover {
    background: rgba(255, 215, 0, 0.1);
    color: var(--casino-text-light);
    padding-left: 2rem;
}

.casino-dropdown .dropdown-item:focus {
    background: rgba(255, 215, 0, 0.1);
    color: var(--casino-text-light);
}

/* User Balance */
.user-balance {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 0.4rem 1rem;
    backdrop-filter: blur(5px);
}

.balance-label {
    color: var(--casino-text-secondary);
    font-size: 0.8rem;
    margin-right: 0.5rem;
}

.balance-amount {
    color: var(--casino-primary);
    font-weight: bold;
    font-size: 0.9rem;
}

/* Mobile Menu Toggle */
.navbar-toggler {
    border: none;
    padding: 0.4rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: scale(1.05);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 215, 0, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Announcement Bar */
.announcement-bar {
    animation: slideDown 0.5s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.casino-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--casino-gradient-gold);
    opacity: 0.1;
    transition: left 0.3s ease;
    z-index: -1;
}

.casino-nav-link:hover::before {
    left: 0;
}

/* Hero Section */
.casino-hero {
    background: #0f0f23; /* Düz koyu renk, gradient yok */
    /* Tüm gradient background'lar kaldırıldı */
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.casino-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    /* Hareketli grain efekti kaldırıldı */
    pointer-events: none;
    display: none; /* Tamamen devre dışı bırak */
}

/* Grain animasyonu kaldırıldı */

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    background: var(--casino-gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
    to { text-shadow: 0 0 30px rgba(255, 215, 0, 0.8); }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--casino-text-secondary);
    margin-bottom: 2rem;
}

.hero-badge {
    display: inline-block;
    background: var(--casino-gradient-gold);
    color: var(--casino-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Buttons */
.btn-casino-primary {
    background: var(--casino-gradient-gold);
    border: none;
    color: var(--casino-dark);
    font-weight: bold;
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--casino-shadow);
}

.btn-casino-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--casino-shadow-hover);
    color: var(--casino-dark);
}

.btn-casino-secondary {
    background: transparent;
    border: 2px solid var(--casino-primary);
    color: var(--casino-primary);
    font-weight: bold;
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-casino-secondary:hover {
    background: var(--casino-primary);
    color: var(--casino-dark);
    transform: translateY(-3px);
}

/* Cards */
.casino-card {
    background: var(--casino-bg-card);
    border: 1px solid var(--casino-border-light);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.casino-card:hover {
    transform: translateY(-5px);
    border-color: var(--casino-border);
    box-shadow: var(--casino-shadow-hover);
}

.casino-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s;
}

.casino-card:hover::before {
    left: 100%;
}

/* Game Room Cards */
.game-room-card {
    background: var(--casino-bg-card);
    border: 1px solid var(--casino-border-light);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.game-room-card:hover {
    border-color: var(--casino-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.room-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.room-status.aktif {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid #22c55e;
}

.room-status.dolu {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid #ef4444;
}

/* Profile Page Styles */
.profile-page {
    padding: 2rem 0;
    min-height: calc(100vh - 200px);
}

.profile-sidebar {
    position: sticky;
    top: 120px;
}

.profile-card {
    background: var(--casino-bg-secondary);
    border: 1px solid var(--casino-border);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.profile-avatar {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.avatar-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--casino-primary);
}

.avatar-edit-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--casino-primary);
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    color: #000;
    font-size: 0.7rem;
}

.profile-info h3 {
    color: var(--casino-text-light);
    margin-bottom: 0.5rem;
}

.profile-level {
    color: var(--casino-text-secondary);
    margin-bottom: 1rem;
}

.profile-stats {
    display: flex;
    justify-content: space-around;
    border-top: 1px solid var(--casino-border);
    padding-top: 1rem;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--casino-primary);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--casino-text-secondary);
}

.profile-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.profile-nav-link {
    display: flex;
    align-items: center;
    padding: 1rem;
    color: var(--casino-text-secondary);
    text-decoration: none;
    background: var(--casino-bg-secondary);
    border: 1px solid var(--casino-border);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.profile-nav-link:hover,
.profile-nav-link.active {
    color: var(--casino-text-light);
    background: var(--casino-bg-hover);
    border-color: var(--casino-primary);
    transform: translateX(5px);
}

.profile-nav-link i {
    margin-right: 0.8rem;
    width: 16px;
}

.profile-tab-content {
    display: none;
}

.profile-tab-content.active {
    display: block;
}

.profile-section {
    background: var(--casino-bg-secondary);
    border: 1px solid var(--casino-border);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.section-title {
    color: var(--casino-text-light);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--casino-border);
}

.profile-form .form-control {
    background: var(--casino-bg-primary);
    border: 1px solid var(--casino-border);
    color: var(--casino-text-light);
}

.profile-form .form-control:focus {
    background: var(--casino-bg-primary);
    border-color: var(--casino-primary);
    color: var(--casino-text-light);
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
}

.profile-form .form-label {
    color: var(--casino-text-secondary);
    font-weight: 500;
}

.balance-overview {
    margin-bottom: 2rem;
}

.balance-card {
    background: var(--casino-bg-primary);
    border: 1px solid var(--casino-border);
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.balance-info h5 {
    color: var(--casino-text-secondary);
    margin-bottom: 0.5rem;
}

.balance-amount {
    font-size: 2rem;
    font-weight: bold;
    color: var(--casino-primary);
}

.balance-actions {
    display: flex;
    gap: 1rem;
}

.transaction-history h5 {
    color: var(--casino-text-light);
    margin-bottom: 1rem;
}

.security-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--casino-border);
}

.security-item:last-child {
    border-bottom: none;
}

.security-item h6 {
    color: var(--casino-text-light);
    margin-bottom: 0.5rem;
}

.settings-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--casino-bg-primary);
    border: 1px solid var(--casino-border);
    border-radius: 10px;
}

.setting-info h6 {
    color: var(--casino-text-light);
    margin-bottom: 0.3rem;
}

.setting-info p {
    margin: 0;
}

.form-switch .form-check-input {
    background-color: var(--casino-bg-primary);
    border-color: var(--casino-border);
}

.form-switch .form-check-input:checked {
    background-color: var(--casino-primary);
    border-color: var(--casino-primary);
}

/* ==================== Auth Page Styles ==================== */
.auth-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 100px);
    padding: 50px 20px;
    background: var(--casino-bg-primary);
}

.auth-container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    min-height: 700px;
    background: rgba(26, 26, 46, 0.7);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--casino-shadow);
    border: 1px solid var(--casino-border);
}

.auth-content {
    display: flex;
    width: 100%;
}

.auth-form-section {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-form-container {
    max-width: 450px;
    margin: 0 auto;
    width: 100%;
}

.auth-header {
    margin-bottom: 30px;
    text-align: center;
}

.auth-header h1 {
    font-size: 32px;
    color: var(--casino-text-gold);
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.auth-header p {
    color: var(--casino-text-secondary);
    font-size: 16px;
}

.auth-form {
    width: 100%;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--casino-text-light);
}

.form-label i {
    color: var(--casino-text-gold);
    margin-right: 8px;
    font-size: 14px;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--casino-border-light);
    border-radius: 8px;
    color: var(--casino-text-light);
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--casino-primary);
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

.form-input::placeholder {
    color: var(--casino-text-muted);
}

.password-input-container {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--casino-text-muted);
    cursor: pointer;
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: var(--casino-primary);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.checkbox-label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
}

.checkbox-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--casino-border-light);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.checkbox-label:hover input ~ .checkmark {
    background-color: rgba(255, 215, 0, 0.1);
}

.checkbox-label input:checked ~ .checkmark {
    background-color: var(--casino-primary);
    border-color: var(--casino-primary);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-label input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-label .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    font-size: 14px;
    color: var(--casino-text-secondary);
    line-height: 1.4;
}

.checkbox-text a {
    color: var(--casino-text-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.checkbox-text a:hover {
    text-decoration: underline;
}

.btn-casino-primary {
    background: var(--casino-gradient-gold);
    color: var(--casino-dark) !important;
    font-weight: 600;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-casino-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.btn-casino-primary:active {
    transform: translateY(1px);
}

.btn-casino-primary i {
    margin-right: 8px;
}

.btn-full {
    width: 100%;
}

.auth-divider {
    display: flex;
    align-items: center;
    margin: 25px 0;
    color: var(--casino-text-muted);
}

.auth-divider::before,
.auth-divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid var(--casino-border-light);
}

.auth-divider span {
    padding: 0 15px;
    font-size: 14px;
}

.social-login {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.btn-social {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: none;
    color: white;
}

.btn-social i {
    margin-right: 8px;
    font-size: 16px;
}

.btn-google {
    background: #DB4437;
}

.btn-facebook {
    background: #4267B2;
}

.btn-social:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.auth-switch {
    text-align: center;
    margin-top: 20px;
    color: var(--casino-text-secondary);
}

.auth-switch a {
    color: var(--casino-text-gold);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.auth-switch a:hover {
    text-decoration: underline;
}

.auth-promo-section {
    flex: 1;
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.8) 0%, rgba(15, 15, 35, 0.9) 100%);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.auth-promo-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/casino-static/images/okey-bg.jpg') center/cover no-repeat;
    opacity: 0.2;
    z-index: -1;
}

.auth-promo-content {
    max-width: 450px;
    margin: 0 auto;
}

.promo-header {
    margin-bottom: 40px;
    text-align: center;
}

.promo-header h2 {
    font-size: 28px;
    color: var(--casino-text-gold);
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.promo-header p {
    color: var(--casino-text-secondary);
    font-size: 16px;
}

.promo-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.promo-feature {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--casino-border-light);
    transition: all 0.3s ease;
}

.promo-feature:hover {
    background: rgba(255, 215, 0, 0.05);
    transform: translateY(-3px);
    border-color: rgba(255, 215, 0, 0.3);
}

.promo-feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: var(--casino-gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--casino-dark);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.promo-feature-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--casino-text-light);
}

.promo-feature-content p {
    color: var(--casino-text-secondary);
    font-size: 14px;
}

/* VIP Page Styles */
.vip-page {
    width: 100%;
}

.vip-hero {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.9) 0%, rgba(26, 26, 46, 0.9) 100%);
    overflow: hidden;
}

.vip-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/casino-static/images/vip-bg.jpg') center/cover no-repeat;
    opacity: 0.3;
    z-index: -1;
}

.vip-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.vip-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--casino-gradient-gold);
    color: var(--casino-dark);
    font-weight: 700;
    font-size: 16px;
    border-radius: 30px;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
    letter-spacing: 1px;
}

.vip-badge i {
    margin-right: 8px;
}

.vip-hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    background: var(--casino-gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0px 2px 4px rgba(255, 215, 0, 0.3);
}

.vip-hero-content p {
    font-size: 18px;
    color: var(--casino-text-secondary);
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.vip-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.vip-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--casino-text-gold);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--casino-text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.btn-primary {
    background: var(--casino-gradient-gold);
    color: var(--casino-dark);
    border: none;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--casino-text-gold);
    border: 1px solid var(--casino-primary);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

.btn-lg {
    font-size: 16px;
    padding: 14px 28px;
}

.btn i {
    margin-right: 8px;
}

.vip-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.floating-cards {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    width: 150px;
    height: 220px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: float 20s infinite ease-in-out;
    z-index: -1;
}

.floating-card:nth-child(1) {
    top: 15%;
    right: 15%;
    transform: rotate(15deg);
    animation-delay: 0s;
}

.floating-card:nth-child(2) {
    top: 60%;
    right: 25%;
    transform: rotate(-10deg);
    animation-delay: -5s;
}

.floating-card:nth-child(3) {
    top: 30%;
    left: 15%;
    transform: rotate(5deg);
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(5deg);
    }
    50% {
        transform: translateY(5px) rotate(-5deg);
    }
    75% {
        transform: translateY(-10px) rotate(3deg);
    }
}

.vip-benefits {
    padding: 80px 0;
    background: var(--casino-bg-primary);
}

.vip-benefits h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--casino-text-gold);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.vip-benefits h2::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--casino-gradient-gold);
    border-radius: 3px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--casino-border-light);
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 215, 0, 0.05);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--casino-gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: var(--casino-dark);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--casino-text-light);
}

.benefit-card p {
    color: var(--casino-text-secondary);
    font-size: 15px;
    line-height: 1.5;
}

/* About Page Styles */
.about-page {
    width: 100%;
}

.about-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.9) 0%, rgba(26, 26, 46, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/casino-static/images/about-bg.jpg') center/cover no-repeat;
    opacity: 0.2;
    z-index: -1;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    background: var(--casino-gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0px 2px 4px rgba(255, 215, 0, 0.3);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--casino-text-secondary);
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-stat .stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--casino-text-gold);
    margin-bottom: 5px;
}

.hero-stat .stat-label {
    font-size: 14px;
    color: var(--casino-text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-story {
    padding: 100px 0;
    background: var(--casino-bg-primary);
}

.story-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 36px;
    color: var(--casino-text-gold);
    margin-bottom: 30px;
    position: relative;
}

.story-text h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--casino-gradient-gold);
    border-radius: 3px;
}

.story-text p {
    font-size: 16px;
    color: var(--casino-text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.story-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 16 / 9;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--casino-border-light);
    box-shadow: var(--casino-shadow);
    transition: all 0.3s ease;
}

.image-placeholder:hover {
    background: rgba(255, 215, 0, 0.05);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-5px);
}

.image-placeholder i {
    font-size: 60px;
    color: var(--casino-text-gold);
    margin-bottom: 15px;
}

.image-placeholder p {
    color: var(--casino-text-secondary);
    font-size: 14px;
}

.vision-mission {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.95) 0%, rgba(26, 26, 46, 0.95) 100%);
    position: relative;
}

.vision-mission::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/casino-static/images/pattern.png') center/300px repeat;
    opacity: 0.05;
    z-index: -1;
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.vm-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--casino-border-light);
    height: 100%;
}

.vm-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 215, 0, 0.05);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.vm-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--casino-gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: var(--casino-dark);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.vm-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--casino-text-gold);
}

.vm-card p {
    color: var(--casino-text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

/* Support Page Styles */
.support-page {
    width: 100%;
}

.support-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.9) 0%, rgba(26, 26, 46, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.support-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/casino-static/images/support-bg.jpg') center/cover no-repeat;
    opacity: 0.2;
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    background: var(--casino-gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0px 2px 4px rgba(255, 215, 0, 0.3);
}

.hero-content p {
    font-size: 18px;
    color: var(--casino-text-secondary);
    margin-bottom: 40px;
}

.support-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.support-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.support-stat .stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--casino-text-gold);
    margin-bottom: 5px;
}

.support-stat .stat-label {
    font-size: 14px;
    color: var(--casino-text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.support-options {
    padding: 80px 0;
    background: var(--casino-bg-primary);
}

.support-options h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--casino-text-gold);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.support-options h2::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--casino-gradient-gold);
    border-radius: 3px;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.option-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--casino-border-light);
    cursor: pointer;
}

.option-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 215, 0, 0.05);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.option-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--casino-gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 28px;
    color: var(--casino-dark);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.option-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--casino-text-light);
}

.option-card p {
    color: var(--casino-text-secondary);
    font-size: 14px;
    margin-bottom: 15px;
}

.option-status {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    font-size: 14px;
    gap: 5px;
}

.option-status.online {
    color: #4CAF50;
}

.option-status.offline {
    color: #F44336;
}

.option-response {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    font-size: 14px;
    color: var(--casino-text-secondary);
    gap: 5px;
}

.option-count {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    font-size: 14px;
    color: var(--casino-text-secondary);
    gap: 5px;
}

.quick-help {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.95) 0%, rgba(26, 26, 46, 0.95) 100%);
    position: relative;
}

.quick-help::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/casino-static/images/pattern.png') center/300px repeat;
    opacity: 0.05;
    z-index: -1;
}

.quick-help h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--casino-text-gold);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.quick-help h2::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--casino-gradient-gold);
    border-radius: 3px;
}

.help-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.help-category {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 30px;
    min-width: 280px;
    flex: 1;
    max-width: 350px;
    transition: all 0.3s ease;
    border: 1px solid var(--casino-border-light);
}

.help-category:hover {
    background: rgba(255, 215, 0, 0.05);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.category-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--casino-gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: var(--casino-dark);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.help-category h3 {
    font-size: 18px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--casino-text-gold);
}

.help-links {
    list-style: none;
    padding: 0;
}

.help-links li {
    margin-bottom: 12px;
}

.help-links li a {
    color: var(--casino-text-secondary);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: block;
    padding: 8px 15px;
    border-radius: 6px;
}

.help-links li a:hover {
    color: var(--casino-text-gold);
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.help-links li a:active {
    transform: translateX(0);
}

/* ================= VIP LEVELS ================= */
.levels-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.level-card {
    background: rgba(255,255,255,0.04);
    border-radius: 18px;
    border: 2px solid var(--casino-border-light);
    box-shadow: 0 6px 32px rgba(0,0,0,0.18);
    padding: 38px 28px 32px 28px;
    text-align: center;
    position: relative;
    transition: all 0.3s cubic-bezier(.4,2,.6,1);
    overflow: hidden;
}
.level-card:hover {
    border-color: var(--casino-primary);
    box-shadow: 0 12px 40px rgba(255,215,0,0.13);
    transform: translateY(-6px) scale(1.03);
    background: rgba(255,215,0,0.07);
}
.level-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px auto;
    font-size: 32px;
    background: var(--casino-gradient-gold);
    color: var(--casino-dark);
    box-shadow: 0 4px 18px rgba(255,215,0,0.18);
}
.level-card h3 {
    font-size: 22px;
    color: var(--casino-text-gold);
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}
.level-requirement {
    font-size: 15px;
    color: var(--casino-text-secondary);
    margin-bottom: 18px;
}
.level-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
}
.level-benefits li {
    color: var(--casino-text-light);
    font-size: 15px;
    margin-bottom: 7px;
    display: flex;
    align-items: center;
    gap: 7px;
}
.level-benefits i {
    color: var(--casino-text-gold);
    font-size: 15px;
}
/* Seviye renkleri */
.level-bronze {
    border-color: #cd7f32;
}
.level-bronze .level-icon {
    background: linear-gradient(45deg, #cd7f32, #b87333);
    color: #fff;
}
.level-silver {
    border-color: #bfc1c2;
}
.level-silver .level-icon {
    background: linear-gradient(45deg, #bfc1c2, #e6e8ea);
    color: #222;
}
.level-gold {
    border-color: #FFD700;
}
.level-gold .level-icon {
    background: var(--casino-gradient-gold);
    color: var(--casino-dark);
}
.level-platinum {
    border-color: #e5e4e2;
}
.level-platinum .level-icon {
    background: linear-gradient(45deg, #e5e4e2, #b3b6b7);
    color: #222;
}
/* EN POPÜLER rozeti */
.featured {
    box-shadow: 0 0 0 3px var(--casino-primary), 0 12px 40px rgba(255,215,0,0.18);
    position: relative;
    z-index: 1;
}
.featured-badge {
    position: absolute;
    top: 18px;
    right: -38px;
    background: var(--casino-gradient-gold);
    color: var(--casino-dark);
    font-size: 13px;
    font-weight: 700;
    padding: 7px 32px;
    border-radius: 30px;
    box-shadow: 0 2px 10px rgba(255,215,0,0.18);
    transform: rotate(18deg);
    letter-spacing: 1px;
    z-index: 2;
}
.level-card .btn {
    margin-top: 18px;
    min-width: 140px;
}
@media (max-width: 768px) {
    .levels-container {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .level-card {
        padding: 28px 10px 24px 10px;
    }
    .featured-badge {
        top: 10px;
        right: -18px;
        font-size: 12px;
        padding: 5px 18px;
    }
}
/* ================= /VIP LEVELS ================= */

/* ================= VIP FAQ ================= */
.vip-faq {
    padding: 70px 0 60px 0;
    background: var(--casino-bg-primary);
}
.vip-faq h2 {
    text-align: center;
    font-size: 32px;
    color: var(--casino-text-gold);
    margin-bottom: 38px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}
.vip-faq h2::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--casino-gradient-gold);
    border-radius: 3px;
}
.faq-container {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.faq-item {
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    border: 1px solid var(--casino-border-light);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: box-shadow 0.3s;
}
.faq-item:hover {
    box-shadow: 0 6px 24px rgba(255,215,0,0.10);
    border-color: var(--casino-primary);
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--casino-text-light);
    font-size: 17px;
    font-weight: 600;
    padding: 18px 22px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background 0.2s;
}
.faq-question i {
    margin-left: 12px;
    color: var(--casino-text-gold);
    font-size: 18px;
    transition: transform 0.3s;
}
.faq-item.open .faq-question i {
    transform: rotate(180deg);
}
.faq-answer {
    background: rgba(255,215,0,0.03);
    color: var(--casino-text-secondary);
    font-size: 15px;
    padding: 0 22px 18px 22px;
    display: none;
    animation: fadeIn 0.4s;
}
.faq-item.open .faq-answer {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@media (max-width: 576px) {
    .faq-question { font-size: 15px; padding: 14px 10px; }
    .faq-answer { font-size: 14px; padding: 0 10px 14px 10px; }
}
/* ================= /VIP FAQ ================= */

/* ================= VIP CONTACT ================= */
.vip-contact {
    padding: 70px 0 60px 0;
    background: var(--casino-bg-primary);
}
.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.contact-content h2 {
    font-size: 32px;
    color: var(--casino-text-gold);
    margin-bottom: 18px;
    font-weight: 700;
}
.contact-content p {
    color: var(--casino-text-secondary);
    font-size: 16px;
    margin-bottom: 32px;
}
.contact-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
}
.contact-method {
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    border: 1px solid var(--casino-border-light);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 32px 24px 28px 24px;
    min-width: 220px;
    max-width: 260px;
    flex: 1 1 220px;
    text-align: center;
    transition: box-shadow 0.3s, border-color 0.3s;
}
.contact-method:hover {
    box-shadow: 0 8px 32px rgba(255,215,0,0.10);
    border-color: var(--casino-primary);
    background: rgba(255,215,0,0.04);
}
.contact-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--casino-gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
    font-size: 26px;
    color: var(--casino-dark);
    box-shadow: 0 4px 18px rgba(255,215,0,0.18);
}
.contact-method h3 {
    font-size: 18px;
    color: var(--casino-text-gold);
    margin-bottom: 7px;
    font-weight: 600;
}
.contact-method p {
    color: var(--casino-text-secondary);
    font-size: 15px;
    margin-bottom: 14px;
}
@media (max-width: 768px) {
    .contact-methods { flex-direction: column; gap: 18px; }
    .contact-method { max-width: 100%; }
}
/* ================= /VIP CONTACT ================= */

/* ================= ACHIEVEMENTS ================= */
.achievements {
    padding: 70px 0 60px 0;
    background: var(--casino-bg-primary);
}
.achievements .section-title {
    text-align: center;
    font-size: 32px;
    color: var(--casino-text-gold);
    margin-bottom: 38px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}
.achievements .section-title::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--casino-gradient-gold);
    border-radius: 3px;
}
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}
@media (max-width: 1200px) {
    .achievements-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
    .achievements-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .achievements-grid { grid-template-columns: 1fr; gap: 18px; }
}
.achievement-card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    border: 1.5px solid var(--casino-border-light);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.10);
    padding: 36px 22px 28px 22px;
    text-align: center;
    transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s;
    position: relative;
}
.achievement-card:hover {
    box-shadow: 0 10px 32px rgba(255, 215, 0, 0.10);
    border-color: var(--casino-primary);
    transform: translateY(-6px) scale(1.03);
    background: rgba(255, 215, 0, 0.07);
}
.achievement-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--casino-gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
    font-size: 26px;
    color: var(--casino-dark);
    box-shadow: 0 4px 18px rgba(255, 215, 0, 0.18);
}
.achievement-card h3 {
    font-size: 18px;
    color: var(--casino-text-gold);
    margin-bottom: 7px;
    font-weight: 600;
}
.achievement-card p {
    color: var(--casino-text-secondary);
    font-size: 15px;
    margin-bottom: 0;
}
@media (max-width: 768px) {
    .achievements-grid { grid-template-columns: 1fr; gap: 18px; }
    .achievement-card { padding: 24px 10px 18px 10px; }
}
/* ================= /ACHIEVEMENTS ================= */

/* ================= ABOUT FEATURES ================= */
.about-features {
    padding: 70px 0 60px 0;
    background: var(--casino-bg-primary);
}
.about-features .section-title {
    text-align: center;
    font-size: 32px;
    color: var(--casino-text-gold);
    margin-bottom: 38px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}
.about-features .section-title::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--casino-gradient-gold);
    border-radius: 3px;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
    max-width: 900px;
    margin: 0 auto;
}
.feature-card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    border: 1.5px solid var(--casino-border-light);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.10);
    padding: 36px 22px 28px 22px;
    text-align: center;
    transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s;
    position: relative;
}
.feature-card:hover {
    box-shadow: 0 10px 32px rgba(255, 215, 0, 0.10);
    border-color: var(--casino-primary);
    transform: translateY(-6px) scale(1.03);
    background: rgba(255, 215, 0, 0.07);
}
.feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--casino-gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
    font-size: 26px;
    color: var(--casino-dark);
    box-shadow: 0 4px 18px rgba(255, 215, 0, 0.18);
}
.feature-card h3 {
    font-size: 18px;
    color: var(--casino-text-gold);
    margin-bottom: 7px;
    font-weight: 600;
}
.feature-card p {
    color: var(--casino-text-secondary);
    font-size: 15px;
    margin-bottom: 0;
}
@media (max-width: 768px) {
    .features-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
    .feature-card { padding: 24px 10px 18px 10px; }
}
@media (max-width: 576px) {
    .features-grid { grid-template-columns: 1fr; }
}
/* ================= /ABOUT FEATURES ================= */

/* ================= SUPPORT FAQ SECTION ================= */
.faq-section {
    padding: 70px 0 60px 0;
    background: var(--casino-bg-primary);
}
.faq-section h2 {
    text-align: center;
    font-size: 32px;
    color: var(--casino-text-gold);
    margin-bottom: 38px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}
.faq-section h2::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--casino-gradient-gold);
    border-radius: 3px;
}
.faq-search {
    max-width: 400px;
    margin: 0 auto 28px auto;
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    border: 1px solid var(--casino-border-light);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 8px 16px;
}
.faq-search input[type="text"] {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--casino-text-light);
    font-size: 15px;
    outline: none;
    padding: 8px 0;
}
.faq-search input[type="text"]::placeholder {
    color: var(--casino-text-muted);
}
.faq-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 28px;
}
.faq-category-btn {
    background: transparent;
    color: var(--casino-text-gold);
    border: 1.5px solid var(--casino-primary);
    font-weight: 600;
    padding: 8px 22px;
    border-radius: 20px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.5px;
}
.faq-category-btn.active,
.faq-category-btn:hover {
    background: var(--casino-gradient-gold);
    color: var(--casino-dark);
    border-color: var(--casino-primary);
    box-shadow: 0 2px 10px rgba(255,215,0,0.10);
}
@media (max-width: 576px) {
    .faq-section h2 { font-size: 24px; }
    .faq-search { padding: 6px 8px; }
    .faq-category-btn { padding: 7px 10px; font-size: 13px; }

}

/* ================= /SUPPORT FAQ SECTION ================= */

/* ================= SUPPORT CONTACT INFO ================= */
.contact-info {
    padding: 70px 0 60px 0;
    background: var(--casino-bg-primary);
}
.contact-info .section-title {
    text-align: center;
    font-size: 32px;
    color: var(--casino-text-gold);
    margin-bottom: 38px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}
.contact-info .section-title::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--casino-gradient-gold);
    border-radius: 3px;
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
    max-width: 900px;
    margin: 0 auto;
}
.contact-card {
    background: rgba(255,255,255,0.04);
    border-radius: 14px;
    border: 1.5px solid var(--casino-border-light);
    box-shadow: 0 4px 18px rgba(0,0,0,0.10);
    padding: 36px 22px 28px 22px;
    text-align: center;
    transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s;
    position: relative;
}
.contact-card:hover {
    box-shadow: 0 10px 32px rgba(255,215,0,0.10);
    border-color: var(--casino-primary);
    transform: translateY(-6px) scale(1.03);
    background: rgba(255,215,0,0.07);
}
.contact-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--casino-gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
    font-size: 26px;
    color: var(--casino-dark);
    box-shadow: 0 4px 18px rgba(255,215,0,0.18);
}
.contact-card h3 {
    font-size: 18px;
    color: var(--casino-text-gold);
    margin-bottom: 7px;
    font-weight: 600;
}
.contact-card p {
    color: var(--casino-text-secondary);
    font-size: 15px;
    margin-bottom: 0;
}
.contact-hours {
    margin: 12px 0 0 0;
    color: var(--casino-text-muted);
    font-size: 14px;
}
@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; gap: 18px; }
    .contact-card { padding: 24px 10px 18px 10px; }
}
/* ================= /SUPPORT CONTACT INFO ================= */

/* ================= LIVE SUPPORT BOX ================= */
.live-support-box {
    background: rgba(255,255,255,0.04);
    border-radius: 14px;
    border: 1.5px solid var(--casino-border-light);
    box-shadow: 0 4px 18px rgba(0,0,0,0.10);
    padding: 32px 22px 24px 22px;
    text-align: center;
    margin: 0 auto 32px auto;
    max-width: 420px;
    transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s;
}
.live-support-box:hover {
    box-shadow: 0 10px 32px rgba(255,215,0,0.10);
    border-color: var(--casino-primary);
    transform: translateY(-4px) scale(1.02);
    background: rgba(255,215,0,0.07);
}
.live-support-box .contact-icon {
    margin-bottom: 12px;
}
.live-support-box h3 {
    font-size: 20px;
    color: var(--casino-text-gold);
    margin-bottom: 10px;
    font-weight: 700;
}
.live-support-box p {
    color: var(--casino-text-secondary);
    font-size: 15px;
    margin-bottom: 0;
}
@media (max-width: 576px) {
    .live-support-box { padding: 18px 6px 12px 6px; }
}
/* ================= /LIVE SUPPORT BOX ================= */

/* ================= SYSTEM STATUS ================= */
.system-status {
    padding: 60px 0 50px 0;
    background: var(--casino-bg-primary);
    border-radius: 18px;
    margin-bottom: 48px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}
.system-status h2 {
    color: var(--casino-text-gold);
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 32px;
    text-align: center;
    letter-spacing: 1px;
}
.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
    max-width: 900px;
    margin: 0 auto;
}
.status-item {
    background: var(--casino-bg-card);
    border: 1.5px solid var(--casino-border);
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(255,215,0,0.08);
    display: flex;
    align-items: center;
    padding: 22px 18px;
    transition: box-shadow 0.3s, border-color 0.3s, background 0.3s;
}
.status-item:hover {
    box-shadow: 0 8px 32px rgba(255,215,0,0.13);
    border-color: var(--casino-primary);
    background: rgba(255,215,0,0.04);
}
.status-indicator {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    margin-right: 18px;
    border: 2.5px solid var(--casino-border);
    box-shadow: 0 0 8px 2px rgba(255,215,0,0.18);
    background: #aaa;
    position: relative;
}
.status-indicator.online {
    background: linear-gradient(135deg, #FFD700 60%, #FFA500 100%);
    box-shadow: 0 0 16px 2px #FFD70099;
}
.status-indicator.offline {
    background: #b22222;
    box-shadow: 0 0 10px 2px #b22222aa;
}
.status-info h3 {
    color: var(--casino-text-gold);
    font-size: 18px;
    margin-bottom: 4px;
    font-weight: 600;
}
.status-text {
    color: var(--casino-text-secondary);
    font-size: 15px;
    font-weight: 500;
}
@media (max-width: 700px) {
    .status-grid { grid-template-columns: 1fr; gap: 18px; }
    .system-status { padding: 36px 0 28px 0; }
}

/* Canlı Destek Kartı Vurgusu */
.contact-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--casino-text-gold);
}
.contact-card:has(.fa-headset),
.contact-card:has(.fa-comments) {
    border: 2px solid var(--casino-primary);
    box-shadow: 0 0 18px 2px #FFD70033;
    background: rgba(255,215,0,0.03);
    transition: box-shadow 0.3s, border-color 0.3s, background 0.3s;
}
.contact-card:has(.fa-headset):hover,
.contact-card:has(.fa-comments):hover {
    box-shadow: 0 0 32px 4px #FFD70066;
    background: rgba(255,215,0,0.07);
    border-color: #FFD700;
}

/* ================= /SYSTEM STATUS ================= */

/* ================= AUTH SIDE PANEL (LOGIN) ================= */
.auth-side-panel {
    background: var(--casino-bg-card);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    padding: 56px 48px 56px 48px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-height: 540px;
    position: relative;
}
.side-content {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.side-content h3 {
    font-size: 2.1rem;
    color: var(--casino-text-gold);
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 18px;
    text-shadow: 0 2px 12px #0008;
    display: flex;
    align-items: center;
    gap: 10px;
}
.side-content p.lead {
    color: var(--casino-text-secondary);
    font-size: 1.15rem;
    margin-bottom: 32px;
    font-weight: 500;
}
.feature-list {
    width: 100%;
    margin-bottom: 18px;
}
.feature-card {
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    border: 1px solid var(--casino-border-light);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 18px 18px 14px 18px;
    margin-bottom: 12px;
    transition: box-shadow 0.3s, border-color 0.3s;
}
.feature-card:hover {
    box-shadow: 0 8px 32px rgba(255,215,0,0.10);
    border-color: var(--casino-primary);
    background: rgba(255,215,0,0.04);
}
.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--casino-gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--casino-dark);
    box-shadow: 0 2px 8px rgba(255,215,0,0.18);
}
.ms-3 { margin-left: 1rem !important; }
@media (max-width: 1200px) {
    .auth-side-panel { padding: 36px 18px; }
    .side-content { max-width: 100%; }
}
@media (max-width: 992px) {
    .auth-side-panel { display: none !important; }
}
/* ================= /AUTH SIDE PANEL (LOGIN) ================= */

/* ================= Genel Casino Butonu ================= */
.casino-btn {
    display: inline-block;
    background: var(--casino-gradient-gold);
    color: var(--casino-dark);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.casino-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.casino-btn:active {
    transform: translateY(1px);
}

.casino-btn i {
    margin-right: 8px;
}

/* ================= Canlı Destek Floating Butonu ================= */
.live-chat-fab {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--casino-gradient-gold);
    color: var(--casino-dark);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.live-chat-fab:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.live-chat-fab:active {
    transform: translateY(1px);
}

/* ================= Chatbox ================= */
.live-chat-box {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: rgba(26, 26, 46, 0.9);
    color: var(--casino-text-light);
    border-radius: 12px;
    padding: 20px;
    width: 300px;
    max-width: calc(100% - 40px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    display: none;
}

.live-chat-box.active {
    display: block;
}

.live-chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.live-chat-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--casino-text-gold);
}

.live-chat-close {
    background: transparent;
    border: none;
    color: var(--casino-text-gold);
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.live-chat-close:hover {
    color: rgba(255, 215, 0, 0.8);
}

.live-chat-messages {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 10px;
}

.live-chat-input {
    display: flex;
    align-items: center;
    border-top: 1px solid var(--casino-border-light);
    padding-top: 10px;
}

.live-chat-input input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--casino-text-light);
    font-size: 14px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.live-chat-input input:focus {
    outline: none;
    border-color: var(--casino-primary);
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
}

.live-chat-input button {
    background: var(--casino-gradient-gold);
    border: none;
    border-radius: 8px;
    color: var(--casino-dark);
    font-size: 1.2rem;
    padding: 8px 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(255,215,0,0.08);
}

.live-chat-input button:hover {
    background: linear-gradient(45deg, #FFD700 60%, #FFA500 100%);
    box-shadow: 0 4px 16px rgba(255,215,0,0.18);
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    .live-chat-box {
        width: 100%;
        max-width: 100%;
        bottom: 70px;
    }
}

/* Canlı Destek Option Card Özel Stili */
.option-card.live-support {
    border: 2px solid var(--casino-primary);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(26, 26, 46, 0.12) 100%);
    box-shadow: 0 4px 24px rgba(255, 215, 0, 0.10);
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s, border 0.3s, background 0.3s;
}
.option-card.live-support:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.18) 0%, rgba(26, 26, 46, 0.22) 100%);
    border-color: #FFD700;
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.18);
}
.option-card.live-support .option-icon {
    background: var(--casino-primary);
    color: var(--casino-dark);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}
.option-card.live-support .option-status {
    color: #FFD700;
    font-weight: bold;
}

/* --- Live Chat Widget Stil Güncellemesi --- */
.live-chat-widget {
    font-family: 'Segoe UI', 'Inter', Arial, sans-serif;
}

.live-chat-widget .chat-toggle {
    background: linear-gradient(135deg, #1a237e 0%, #0d133d 100%);
    border: 2px solid #FFD700;
    box-shadow: 0 6px 24px rgba(0,0,0,0.45), 0 0 0 4px rgba(255,215,0,0.08);
    transition: box-shadow 0.2s, transform 0.2s;
}
.live-chat-widget .chat-toggle:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.55), 0 0 0 6px #FFD70044;
    transform: scale(1.12);
}
.live-chat-widget .chat-toggle i {
    color: #FFD700;
    text-shadow: 0 2px 8px #0d133d99;
}
.live-chat-widget .chat-notification {
    background: #FFD700;
    color: #1a237e;
    border: 2px solid #fff;
    font-weight: bold;
    box-shadow: 0 2px 8px #FFD70055;
}

.live-chat-widget .chat-window {
    background: linear-gradient(135deg, #232b4d 0%, #10152b 100%);
    border: 2px solid #FFD700;
    box-shadow: 0 12px 48px #000a, 0 0 0 4px #FFD70022;
    color: #fff;
}
.live-chat-widget .chat-header {
    background: #FFD700;
    color: #1a237e;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 2px 8px #FFD70033;
}
.live-chat-widget .chat-header h4 {
    color: #1a237e;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.live-chat-widget .chat-status.online {
    color: #388e3c;
    font-weight: 600;
}
.live-chat-widget .chat-close {
    color: #1a237e;
    background: none;
    border: none;
    font-size: 1.2rem;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.live-chat-widget .chat-close:hover {
    opacity: 1;
}
.live-chat-widget .chat-messages {
    background: transparent;
    color: #fff;
    scrollbar-width: thin;
    scrollbar-color: #FFD700 #232b4d;
}
.live-chat-widget .chat-messages::-webkit-scrollbar {
    width: 8px;
}
.live-chat-widget .chat-messages::-webkit-scrollbar-thumb {
    background: #FFD700;
    border-radius: 8px;
}
.live-chat-widget .message.agent .message-avatar {
    background: #FFD700;
    color: #1a237e;
}
.live-chat-widget .message.user .message-avatar {
    background: #1a237e;
    color: #FFD700;
}
.live-chat-widget .message-content {
    font-size: 1rem;
}
.live-chat-widget .message-text {
    background: #232b4d;
    color: #FFD700;
    border: 1px solid #FFD70044;
    box-shadow: 0 2px 8px #FFD70011;
}
.live-chat-widget .message.user .message-text {
    background: #FFD700;
    color: #1a237e;
    border: 1px solid #FFD700;
}
.live-chat-widget .message-time {
    color: #FFD70099;
}
.live-chat-widget .chat-input {
    background: #10152b;
    border-top: 1px solid #FFD70033;
}
.live-chat-widget .chat-input input {
    background: #232b4d;
    color: #FFD700;
    border: 1px solid #FFD70044;
}
.live-chat-widget .chat-input input::placeholder {
    color: #FFD70099;
}
.live-chat-widget .chat-input button {
    background: #FFD700;
    color: #1a237e;
    font-weight: 700;
    box-shadow: 0 2px 8px #FFD70033;
    transition: background 0.2s, color 0.2s;
}
.live-chat-widget .chat-input button:hover {
    background: #1a237e;
    color: #FFD700;
}

@media (max-width: 768px) {
    .live-chat-widget .chat-window {
        width: 95vw;
        max-width: 340px;
        min-width: 220px;
        right: 0;
        left: auto;
    }
}
/* --- /Live Chat Widget Stil Güncellemesi --- */

/* ==================== CANLI DESTEK WIDGET ==================== */
.live-support-widget {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 1200;
    font-family: 'Segoe UI', 'Inter', sans-serif;
    background: var(--casino-bg-primary);
    border: 2px solid var(--casino-primary);
    border-radius: 22px 22px 12px 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.45), 0 0 0 3px rgba(255,215,0,0.08);
    overflow: hidden;
    min-width: 380px;
    max-width: 420px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.live-support-widget-header {
    background: var(--casino-gradient-gold);
    color: var(--casino-dark);
    padding: 18px 24px;
    border-radius: 22px 22px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 12px rgba(255,215,0,0.08);
}

.header-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.agent-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--casino-dark);
}

.status {
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.status.online::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse-status 2s infinite;
}

@keyframes pulse-status {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.live-support-widget-close {
    background: none;
    border: none;
    color: var(--casino-dark);
    font-size: 1.3rem;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.2s;
    padding: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.live-support-widget-close:hover {
    background: rgba(26,26,46,0.1);
}

.live-support-widget-body {
    background: var(--casino-bg-primary);
    padding: 20px 16px 16px 16px;
    min-height: 280px;
    max-height: 400px;
    overflow-y: auto;
    color: var(--casino-text-light);
}

/* Chat Messages */
.chat-message {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    animation: messageSlideIn 0.3s ease;
}

@keyframes messageSlideIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.message-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--casino-gradient-gold);
    color: var(--casino-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(255,215,0,0.2);
}

.user-message .message-avatar {
    background: var(--casino-accent);
    color: var(--casino-text-light);
    order: 2;
}

.user-message {
    flex-direction: row-reverse;
}

.message-content {
    flex: 1;
    max-width: 75%;
}

.user-message .message-content {
    text-align: right;
}

.message-text {
    background: rgba(255,255,255,0.08);
    border-radius: 16px 16px 16px 4px;
    padding: 12px 16px;
    color: var(--casino-text-light);
    font-size: 0.95rem;
    line-height: 1.4;
    word-wrap: break-word;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.user-message .message-text {
    background: var(--casino-primary);
    color: var(--casino-dark);
    border-radius: 16px 16px 4px 16px;
    font-weight: 500;
}

.message-time {
    font-size: 0.75rem;
    color: var(--casino-text-muted);
    margin-top: 6px;
    padding: 0 4px;
}

/* Quick Options */
.quick-options {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.quick-option {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,215,0,0.2);
    border-radius: 12px;
    padding: 12px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.85rem;
    color: var(--casino-text-secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.quick-option:hover {
    background: rgba(255,215,0,0.1);
    border-color: var(--casino-primary);
    color: var(--casino-text-light);
    transform: translateY(-2px);
}

.quick-option i {
    font-size: 1.1rem;
    color: var(--casino-primary);
}

.live-support-widget-footer {
    background: var(--casino-accent);
    padding: 16px;
    border-radius: 0 0 12px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 -2px 12px rgba(255,215,0,0.04);
}

.live-support-widget-input {
    flex: 1;
    border: 1.5px solid var(--casino-primary);
    border-radius: 25px;
    padding: 12px 18px;
    font-size: 0.95rem;
    background: var(--casino-bg-card);
    color: var(--casino-text-light);
    outline: none;
    transition: all 0.2s ease;
}

.live-support-widget-input:focus {
    border-color: #FFA500;
    background: rgba(255,215,0,0.05);
    box-shadow: 0 0 0 3px rgba(255,215,0,0.1);
}

.live-support-widget-input::placeholder {
    color: var(--casino-text-muted);
}

.live-support-widget-send {
    background: var(--casino-gradient-gold);
    border: none;
    border-radius: 50%;
    color: var(--casino-dark);
    font-size: 1.1rem;
    padding: 12px;
    width: 44px;
    height: 44px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(255,215,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.live-support-widget-send:hover {
    background: linear-gradient(45deg, #FFD700 60%, #FFA500 100%);
    box-shadow: 0 4px 16px rgba(255,215,0,0.3);
    transform: scale(1.05);
}

@media (max-width: 600px) {
    .live-support-widget {
        right: 8px;
        left: 8px;
        bottom: 8px;
        min-width: unset;
        max-width: 100vw;
        border-radius: 18px 18px 10px 10px;
    }
    
    .live-support-widget-header {
        padding: 16px 18px;
    }
    
    .agent-name {
        font-size: 1.1rem;
    }
    
    .live-support-widget-body {
        padding: 16px 12px 12px 12px;
        min-height: 240px;
        max-height: 300px;
    }
    
    .quick-options {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    
    .quick-option {
        padding: 10px 8px;
        font-size: 0.8rem;
    }
    
    .live-support-widget-footer {
        padding: 12px;
        gap: 8px;
    }
    
    .live-support-widget-input {
        padding: 10px 14px;
        font-size: 0.9rem;
    }
    
    .live-support-widget-send {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ==================== OKEY OYUN SAYFASI MOBİL UYUMLULUK ==================== */
/* Oyun sayfasında mobil için özel ayarlar */
body.game-page {
    padding-top: 70px;
}

@media (max-width: 768px) {
    body.game-page {
        padding-top: 60px;
    }
    
    .game-page .container {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .game-page .casino-header {
        position: fixed;
        background: rgba(15, 15, 35, 0.95);
        backdrop-filter: blur(10px);
        height: 60px;
        padding: 0 10px;
    }
    
    .game-page .casino-header .navbar-brand {
        font-size: 1.2rem;
    }
    
    .game-page .casino-header .navbar-nav .nav-link {
        font-size: 0.9rem;
        padding: 8px 12px;
    }
    
    /* Oyun sayfasında footer'ı gizle */
    .game-page footer {
        display: none;
    }
}

@media (max-width: 576px) {
    body.game-page {
        padding-top: 50px;
    }
    
    .game-page .casino-header {
        height: 50px;
        padding: 0 5px;
    }
    
    .game-page .casino-header .navbar-brand {
        font-size: 1rem;
    }
    
    .game-page .casino-header .navbar-nav .nav-link {
        font-size: 0.8rem;
        padding: 6px 8px;
    }
    
    /* Mobilde gereksiz UI elementlerini gizle */
    .game-page .badge {
        font-size: 0.8rem;
        padding: 4px 8px;
    }
    
    .game-page h2 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
}

/* Oyun iframe'i için özel viewport ayarları */
@media (max-width: 768px) and (orientation: landscape) {
    .game-container {
        height: 100vh !important;
        margin-top: 0 !important;
    }
    
    body.game-page {
        padding-top: 0 !important;
    }
    
    .game-page .casino-header {
        display: none !important;
    }
    
    .game-page .btn.btn-outline-warning {
        position: fixed;
        top: 10px;
        left: 10px;
        z-index: 1001;
        font-size: 0.8rem;
        padding: 5px 10px;
    }
}

/* Touch cihazlar için optimizasyonlar */
@media (hover: none) and (pointer: coarse) {
    .game-control-btn {
        padding: 12px 16px !important;
        font-size: 18px !important;
        min-width: 48px;
        min-height: 48px;
    }
    
    .game-control-btn:active {
        transform: scale(0.95);
    }
}

/* Çok küçük ekranlar için */
@media (max-width: 320px) {
    .game-container {
        margin: 0 -10px;
        width: calc(100% + 20px);
        border-radius: 0;
    }
    
    #okeyGameIframe {
        transform: scale(0.6) !important;
        transform-origin: center top !important;
        height: 167% !important;
        width: 167% !important;
        margin-left: -33.5% !important;
        margin-top: -30px !important;
    }
}
/* ==================== /OKEY OYUN SAYFASI MOBİL UYUMLULUK ==================== */

/* ==================== HEADER BAKİYE MOBİL UYUMLULUK ==================== */
/* Mobilde header bakiyesini küçült */
@media (max-width: 768px) {
    .mobile-nav-content .user-balance .balance-label {
        font-size: 0.7rem !important;
    }
    
    .mobile-nav-content .user-balance .balance-amount {
        font-size: 0.8rem !important;
        font-weight: 600 !important;
    }
    
    .mobile-nav-content .user-balance {
        padding: 0.3rem 0.8rem !important;
        margin-bottom: 1rem !important;
        font-size: 0.8rem !important;
    }
}

/* Desktop'ta dropdown içindeki bakiye */
@media (min-width: 992px) {
    #headerUserBalance {
        font-size: 0.75rem;
        color: #FFD700 !important;
        opacity: 0.9;
        margin-top: -2px;
        line-height: 1;
    }
    
    .dropdown-toggle .d-flex.flex-column {
        line-height: 1.2;
    }
}
/* ==================== /HEADER BAKİYE MOBİL UYUMLULUK ==================== */