:root {
    --bg-primary: #0A0C0E;
    --bg-secondary: #14181C;
    --bg-card: #1E2328;
    --bg-surface: #1A1E24;
    --accent: #FFD700;
    --accent-dark: #E6C300;
    --accent-glow: rgba(255, 215, 0, 0.3);
    --text-primary: #FFFFFF;
    --text-secondary: #B0B8C0;
    --text-muted: #8A9499;
    --border: #2A3035;
    --border-light: #353E44;
    --success: #10B981;
    --warning: #FFB347;
    --danger: #FF6B6B;
    --info: #3B9AE1;
    --gradient-1: linear-gradient(135deg, #FFD700, #FFC800);
    --gradient-2: linear-gradient(45deg, #0A0C0E, #14181C);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.2);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.3);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.4);
    --shadow-accent: 0 0 20px rgba(255,215,0,0.2);
    --glow-accent: 0 0 30px rgba(255,215,0,0.3);
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: 0.25s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.5;
    overflow-x: hidden;
    position: relative;
    padding-bottom: 80px; /* Bottom navigation için alan */
}

/* 📱 MOBİL HEADER */
.mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 64px;
    background: rgba(10, 12, 14, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
}

.mobile-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 16px;
}

.mobile-menu-btn {
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mobile-logo {
    display: flex;
    align-items: baseline;
    gap: 4px;
    text-decoration: none;
    font-size: 24px;
    font-weight: 800;
}

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

.logo-accent {
    color: var(--accent);
    position: relative;
}

.logo-accent::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-1);
    border-radius: 1px;
}

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

.mobile-header-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
    transition: var(--transition);
}

.mobile-header-btn:hover {
    background: var(--accent);
    color: var(--bg-primary);
    border-color: var(--accent);
}

/* 📱 MOBİL MENÜ */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 340px;
    height: 100vh;
    background: var(--bg-secondary);
    z-index: 1000;
    overflow-y: auto;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}

.mobile-menu-logo {
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-size: 22px;
    font-weight: 800;
}

.mobile-menu-close {
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mobile-menu-profile {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    border-bottom: 1px solid var(--border);
}

.profile-avatar {
    width: 56px;
    height: 56px;
    background: var(--bg-card);
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent);
}

.profile-info {
    display: flex;
    flex-direction: column;
}

.profile-guest {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.profile-login {
    font-size: 13px;
    color: var(--accent);
    text-decoration: underline;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 16px;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: var(--transition);
    margin-bottom: 4px;
}

.mobile-nav-item i:first-child {
    width: 24px;
    font-size: 18px;
    color: var(--accent);
}

.mobile-nav-item span {
    flex: 1;
}

.mobile-nav-item:hover {
    background: rgba(255, 215, 0, 0.1);
}

.nav-badge {
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.nav-badge.live {
    background: var(--danger);
    color: white;
}

.nav-badge.hot {
    background: var(--warning);
    color: var(--bg-primary);
}

.nav-badge.jackpot {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: var(--bg-primary);
}

.mobile-menu-footer {
    padding: 24px;
    border-top: 1px solid var(--border);
}

.mobile-menu-bonus {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: linear-gradient(145deg, #1E2328, #181C20);
    border: 1px solid var(--accent);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
}

.bonus-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 20px;
}

.bonus-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bonus-text span {
    color: var(--text-secondary);
    font-size: 12px;
}

.bonus-text strong {
    color: var(--accent);
    font-size: 16px;
}

.bonus-btn {
    padding: 8px 16px;
    background: var(--accent);
    color: var(--bg-primary);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 14px;
}

.mobile-menu-social {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.mobile-menu-social .social-link {
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.mobile-menu-social .social-link:hover {
    background: var(--accent);
    color: var(--bg-primary);
}

.mobile-menu-copyright {
    color: var(--text-muted);
    font-size: 12px;
    text-align: center;
}

/* 📱 MOBİL MAIN */
.mobile-main {
    margin-top: 64px;
    padding: 16px;
}

/* 🎯 HERO SLIDER */
.mobile-hero {
    margin-bottom: 24px;
}

.heroSwiper {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.hero-slide {
    position: relative;
    display: block;
    text-decoration: none;
}

.hero-image {
    width: 100%;
    height: 0;
    padding-bottom: 50%;
    position: relative;
}

.hero-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10,12,14,0.9) 0%, transparent 100%);
    display: flex;
    align-items: center;
    padding: 20px;
}

.hero-content {
    max-width: 70%;
}

.hero-badge {
    display: inline-block;
    padding: 4px 10px;
    background: var(--accent);
    color: var(--bg-primary);
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    margin-bottom: 8px;
}

.hero-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
    line-height: 1;
}

.hero-text {
    color: var(--text-secondary);
    font-size: 13px;
    margin-bottom: 12px;
}

.hero-cta {
    display: inline-block;
    padding: 8px 16px;
    background: var(--accent);
    color: var(--bg-primary);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
}

.swiper-pagination-bullet {
    background: var(--text-secondary);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--accent);
    opacity: 1;
}

/* 💰 BALANCE & BONUS STRIP */
.mobile-balance-section {
    margin-bottom: 24px;
}

.balance-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
}

.balance-info {
    display: flex;
    flex-direction: column;
}

.balance-label {
    color: var(--text-secondary);
    font-size: 12px;
    margin-bottom: 2px;
}

.balance-amount {
    font-size: 24px;
    font-weight: 800;
    color: var(--accent);
}

.balance-actions {
    display: flex;
    gap: 8px;
}

.balance-btn {
    padding: 10px 16px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.balance-btn.deposit {
    background: var(--accent);
    color: var(--bg-primary);
    border-color: var(--accent);
}

.balance-btn i {
    font-size: 12px;
}

.bonus-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.bonus-strip-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.bonus-strip-item i {
    color: var(--accent);
    font-size: 16px;
}

.bonus-strip-item span {
    color: var(--text-secondary);
    font-size: 11px;
}

.bonus-strip-item strong {
    color: var(--accent);
    font-size: 15px;
}

.bonus-strip-divider {
    width: 1px;
    height: 30px;
    background: var(--border);
}

/* 📁 SEKTÖN HEADER */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    position: relative;
    padding-left: 10px;
}

.section-title:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--accent);
    border-radius: 1.5px;
}

.section-subtitle {
    display: block;
    color: var(--accent);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.section-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.section-link i {
    font-size: 11px;
}

/* 🏆 KATEGORİLER SCROLL */
.categories-scroll {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding: 8px 0 16px;
    scrollbar-width: none;
}

.categories-scroll::-webkit-scrollbar {
    display: none;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    min-width: 70px;
}

.category-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-card);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    margin-bottom: 8px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.category-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0.9);
}

.category-item:hover .category-icon {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--accent);
}

.category-name {
    color: var(--text-secondary);
    font-size: 11px;
    font-weight: 500;
}

/* 🎰 GAME CARD */
.mobile-section {
    margin-bottom: 32px;
}

.slider-nav {
    display: flex;
    gap: 8px;
}

.slider-nav-btn {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.slider-nav-btn:hover {
    background: var(--accent);
    color: var(--bg-primary);
    border-color: var(--accent);
}

.jackpotSwiper {
    margin: 0 -4px;
}

.game-card {
    display: block;
    text-decoration: none;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    margin: 4px;
}

.game-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
}

.game-media {
    position: relative;
    padding-bottom: 100%;
    background: linear-gradient(145deg, #1E2328, #181C20);
}

.game-media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
}

.game-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 700;
    color: white;
}

.game-badge.mega { background: linear-gradient(135deg, #FF6B6B, #FF4949); }
.game-badge.major { background: linear-gradient(135deg, #9D4EDD, #7B2CBF); }
.game-badge.minor { background: linear-gradient(135deg, #3B9AE1, #1E5F9E); }
.game-badge.mini { background: linear-gradient(135deg, #FFB347, #FF8C00); }
.game-badge.progressive { background: linear-gradient(135deg, #FF6B6B, #FF1493); }
.game-badge.daily { background: linear-gradient(135deg, #4ECDC4, #2E8B57); }

.game-jackpot {
    position: absolute;
    bottom: 8px;
    left: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(2px);
    padding: 8px;
    border-radius: var(--radius-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.jp-label {
    color: var(--text-secondary);
    font-size: 9px;
}

.jp-value {
    color: var(--accent);
    font-weight: 700;
    font-size: 13px;
}

.game-info {
    padding: 12px;
}

.game-title {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-meta {
    display: flex;
    justify-content: space-between;
    color: var(--text-secondary);
    font-size: 11px;
}

.game-rtp {
    color: var(--accent);
}

/* 🎲 CANLI CASINO GRID */
.live-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid var(--danger);
    border-radius: 30px;
    color: var(--danger);
    font-size: 11px;
    font-weight: 600;
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--danger);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.live-filters-scroll {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    padding: 8px 0 16px;
    scrollbar-width: none;
}

.live-filters-scroll::-webkit-scrollbar {
    display: none;
}

.filter-btn {
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 30px;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent);
    color: var(--bg-primary);
    border-color: var(--accent);
}

.mobile-live-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.live-card {
    text-decoration: none;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.live-media {
    position: relative;
    padding-bottom: 100%;
}

.live-media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.live-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    padding: 2px 8px;
    background: var(--accent);
    color: var(--bg-primary);
    border-radius: 4px;
    font-size: 8px;
    font-weight: 700;
}

.live-info {
    padding: 10px;
}

.live-title {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 12px;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.live-meta {
    display: flex;
    justify-content: space-between;
    color: var(--text-secondary);
    font-size: 10px;
}

.live-rating {
    color: #FFD700;
}

/* 💥 CRASH GRID */
.crash-multiplier-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--success);
    border-radius: 30px;
    color: var(--success);
    font-size: 13px;
    font-weight: 700;
}

.crash-filters-scroll {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    padding: 8px 0 16px;
    scrollbar-width: none;
}

.crash-filters-scroll::-webkit-scrollbar {
    display: none;
}

.mobile-crash-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.crash-card {
    text-decoration: none;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.crash-media {
    position: relative;
    padding-bottom: 100%;
}

.crash-media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.crash-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 8px;
    font-weight: 700;
    color: white;
}

.crash-badge.new { background: var(--danger); }
.crash-badge.hot { background: var(--warning); }
.crash-badge.high { background: #FF8C00; }
.crash-badge.low { background: var(--success); }

.crash-multiplier {
    position: absolute;
    bottom: 8px;
    left: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(2px);
    padding: 6px;
    border-radius: var(--radius-sm);
    text-align: center;
}

.crash-multiplier span {
    color: var(--success);
    font-weight: 700;
    font-size: 15px;
}

.crash-info {
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.crash-players {
    color: var(--text-secondary);
    font-size: 11px;
}

.crash-players i {
    color: var(--accent);
    margin-right: 2px;
}

/* 📊 CANLI FEED */
.live-badge-small {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid var(--danger);
    border-radius: 30px;
    color: var(--danger);
    font-size: 11px;
    font-weight: 600;
}

.pulse-small {
    width: 6px;
    height: 6px;
    background: var(--danger);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.mobile-feed {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feed-item {
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.feed-league {
    color: var(--accent);
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feed-match {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.feed-teams {
    display: flex;
    align-items: center;
    gap: 8px;
}

.team {
    font-weight: 600;
    font-size: 14px;
}

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

.feed-score {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.score {
    font-weight: 700;
    color: var(--accent);
    font-size: 16px;
}

.minute {
    color: var(--text-secondary);
    font-size: 10px;
}

.feed-odds {
    display: flex;
    gap: 8px;
}

.odds-btn {
    flex: 1;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--accent);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.odds-btn:hover {
    background: var(--accent);
    color: var(--bg-primary);
    border-color: var(--accent);
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 20px;
    background: transparent;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

/* 🎁 HOŞGELDİN BANNER */
.welcome-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: linear-gradient(145deg, #1E2328, #181C20);
    border: 1px solid var(--accent);
    border-radius: var(--radius-lg);
    text-decoration: none;
    margin-bottom: 24px;
}

.welcome-content {
    flex: 1;
}

.welcome-tag {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid var(--accent);
    border-radius: 20px;
    color: var(--accent);
    font-size: 10px;
    font-weight: 700;
    margin-bottom: 8px;
}

.welcome-title {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.welcome-features {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 12px;
}

.welcome-features span {
    color: var(--text-secondary);
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.welcome-features i {
    color: var(--success);
    font-size: 10px;
}

.welcome-btn {
    display: inline-block;
    padding: 8px 16px;
    background: var(--accent);
    color: var(--bg-primary);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 700;
}

.welcome-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 32px;
}

/* 📱 MOBİL APP TEASER */
.mobile-app-teaser {
    padding: 24px;
    background: linear-gradient(145deg, #0F1215, #0A0C0E);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
}

.teaser-badge {
    display: inline-block;
    padding: 4px 10px;
    background: var(--accent);
    color: var(--bg-primary);
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    margin-bottom: 12px;
}

.teaser-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.teaser-text {
    color: var(--text-secondary);
    font-size: 13px;
    margin-bottom: 16px;
}

.teaser-buttons {
    display: flex;
    gap: 12px;
}

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

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

/* ℹ️ ABOUT */
.mobile-about {
    margin-bottom: 24px;
}

.about-card {
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.about-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.about-title .accent {
    color: var(--accent);
}

.about-text {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.about-features-mini {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.mini-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.mini-feature i {
    width: 36px;
    height: 36px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 16px;
}

.mini-feature span {
    color: var(--text-secondary);
    font-size: 10px;
    text-align: center;
}

/* 📞 CONTACT */
.mobile-contact {
    margin-bottom: 24px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 16px 8px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: var(--transition);
}

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

.contact-item span {
    color: var(--text-secondary);
    font-size: 10px;
}

.contact-item.telegram i { color: #26A5E4; }
.contact-item.whatsapp i { color: #25D366; }
.contact-item.support i { color: var(--accent); }
.contact-item.email i { color: var(--info); }

.contact-item:hover {
    background: var(--bg-surface);
    border-color: var(--accent);
}

/* 📱 MOBİL BOTTOM NAVIGATION */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(10, 12, 14, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 8px 16px;
    z-index: 99;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 11px;
    transition: var(--transition);
    position: relative;
}

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

.bottom-nav-item.active {
    color: var(--accent);
}

.nav-badge-dot {
    position: absolute;
    top: 0;
    right: -2px;
    width: 8px;
    height: 8px;
    background: var(--danger);
    border: 2px solid var(--bg-primary);
    border-radius: 50%;
}

/* 🦶 MOBİL FOOTER */
.mobile-footer {
    padding: 24px 16px 32px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.footer-col h4 {
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 8px;
}

.footer-col a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 11px;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--accent);
    padding-left: 2px;
}

.footer-divider {
    height: 1px;
    background: var(--border);
    margin: 20px 0;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.footer-social .social-link {
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 18px;
    transition: var(--transition);
}

.footer-social .social-link:hover {
    background: var(--accent);
    color: var(--bg-primary);
}

.footer-copyright {
    text-align: center;
    margin-bottom: 16px;
}

.footer-copyright p {
    color: var(--text-muted);
    font-size: 11px;
    margin-bottom: 4px;
}

.license {
    color: var(--text-secondary) !important;
    font-weight: 500;
}

.footer-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.footer-badges .badge {
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 20px;
    color: var(--text-secondary);
    font-size: 9px;
    font-weight: 600;
}

/* 📱 MOBİL RESPONSIVE */
@media (max-width: 380px) {
    .mobile-live-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-features-mini {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .mobile-main {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .mobile-menu {
        max-width: 360px;
    }
}