/* ========================================
   MOBILEBET Theme - Main Stylesheet
   Sky Blue (#03A9F4) + White (#fff) + Dark Gray (#212121)
   ======================================== */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #212121;
    background: #f5f7fa;
    overflow-x: hidden;
    padding-bottom: 70px;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Nunito', sans-serif; font-weight: 700; line-height: 1.3; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* === CONTAINER === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }

/* === BRAND TEXT === */
.brand-text { color: #03A9F4 !important; }

/* === BUTTONS === */
.btn-login, .btn-register, .btn-demo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    min-height: 44px;
}
.btn-login {
    background: transparent;
    border: 2px solid #03A9F4;
    color: #03A9F4;
}
.btn-login:hover { background: #03A9F4; color: #fff; }
.btn-register {
    background: linear-gradient(135deg, #03A9F4, #0288D1);
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(3, 169, 244, 0.4);
}
.btn-register:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(3, 169, 244, 0.6); }
.btn-demo {
    background: #fff;
    color: #03A9F4;
    border: 2px solid #e0e0e0;
}
.btn-demo:hover { border-color: #03A9F4; }

/* === ANNOUNCEMENT MODAL === */
.announcement-modal {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}
.announcement-modal.active { display: flex; }
.announcement-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
}
.announcement-content {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 450px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    animation: slideUp 0.5s ease;
    border-top: 5px solid #03A9F4;
}
.announcement-close {
    position: absolute;
    top: 15px; right: 20px;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    z-index: 1;
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}
.announcement-close:hover { background: #f0f0f0; color: #333; }
.announcement-header-icon {
    text-align: center;
    margin-bottom: 15px;
}
.announcement-header-icon i {
    font-size: 48px;
    color: #03A9F4;
    background: rgba(3, 169, 244, 0.1);
    width: 80px; height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.announcement-title {
    text-align: center;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #03A9F4;
}
.announcement-list { margin-bottom: 20px; }
.announcement-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 12px;
    border-radius: 12px;
    margin-bottom: 8px;
    background: #f8f9fa;
    transition: all 0.3s;
}
.announcement-item:hover { background: #e3f2fd; transform: translateX(5px); }
.announcement-badge {
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 800;
    white-space: nowrap;
}
.announcement-badge.hot { background: #ff4444; color: #fff; }
.announcement-badge.new { background: #03A9F4; color: #fff; }
.announcement-badge.info { background: #FF9800; color: #fff; }
.announcement-text { flex: 1; font-size: 13px; color: #333; line-height: 1.4; }
.announcement-item i.fa-chevron-right { color: #ccc; font-size: 12px; }
.announcement-footer { text-align: center; }
.announcement-cta {
    display: inline-block;
    background: linear-gradient(135deg, #03A9F4, #0288D1);
    color: #fff;
    padding: 14px 40px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(3, 169, 244, 0.4);
    transition: all 0.3s;
}
.announcement-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(3, 169, 244, 0.6); }

/* === PULL TO REFRESH === */
.pull-to-refresh {
    position: fixed;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: top 0.3s ease;
}
.pull-to-refresh.active { top: 10px; }
.ptr-spinner {
    width: 40px; height: 40px;
    background: #03A9F4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    animation: pullRefresh 1.5s infinite;
    box-shadow: 0 4px 15px rgba(3, 169, 244, 0.4);
}
.ptr-text { font-size: 11px; color: #03A9F4; margin-top: 5px; font-weight: 500; }

/* === HEADER === */
.site-header {
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 15px;
}
.logo img { height: 45px; width: auto; }
.header-time { font-size: 13px; color: #666; font-weight: 500; }
.header-btn-group { display: flex; gap: 8px; align-items: center; }

/* === NAVIGATION === */
.main-navigation {
    background: linear-gradient(135deg, #03A9F4, #0288D1);
    border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu-toggle {
    display: none;
    color: #fff;
    font-size: 24px;
    padding: 10px;
}
.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 0;
    padding: 0;
}
.nav-item { position: relative; }
.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.3s;
    position: relative;
}
.nav-link:hover, .nav-item:hover .nav-link {
    background: rgba(255,255,255,0.15);
}
.nav-link i { font-size: 14px; }

/* === NOTIFICATION BAR === */
.notification-bar {
    background: #E3F2FD;
    padding: 8px 0;
    overflow: hidden;
}
.notification-content {
    display: flex;
    animation: scrollLeft 30s linear infinite;
    white-space: nowrap;
    gap: 50px;
}
.notification-content span {
    font-size: 13px;
    color: #0277BD;
    font-weight: 500;
    white-space: nowrap;
}

/* === BREADCRUMB === */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 0;
    font-size: 13px;
    color: #666;
}
.breadcrumb a { color: #03A9F4; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: #999; }

/* === CONTENT AREA === */
.content-area {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 30px;
}
.main-content { min-width: 0; }

/* === HERO SECTION === */
.mobilebet-hero {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin: 20px 0;
    min-height: 500px;
    display: flex;
    align-items: center;
}
.hero-gradient-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, #03A9F4 0%, #0288D1 40%, #01579B 100%);
}
.hero-floating-shapes { position: absolute; top: 0; left: 0; right: 0; bottom: 0; overflow: hidden; }
.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    background: #fff;
}
.shape-1 { width: 200px; height: 200px; top: -50px; left: -50px; animation: float 6s ease-in-out infinite; }
.shape-2 { width: 150px; height: 150px; top: 30%; right: -30px; animation: float 8s ease-in-out infinite 1s; }
.shape-3 { width: 100px; height: 100px; bottom: -20px; left: 30%; animation: float 7s ease-in-out infinite 2s; }
.shape-4 { width: 80px; height: 80px; top: 60%; left: 10%; animation: float 9s ease-in-out infinite 0.5s; }
.shape-5 { width: 120px; height: 120px; top: 10%; left: 60%; animation: float 10s ease-in-out infinite 1.5s; }
.hero-inner-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 50px 40px;
    width: 100%;
}
.hero-text-side { flex: 1; max-width: 550px; }
.hero-brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 25px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}
.hero-brand-badge i { color: #fff; font-size: 18px; }
.hero-brand-badge span { color: #fff; font-weight: 700; font-size: 14px; letter-spacing: 1px; }
.hero-main-title { margin-bottom: 15px; }
.hero-brand {
    display: block;
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 2px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.hero-divider {
    display: block;
    width: 60px;
    height: 4px;
    background: rgba(255,255,255,0.5);
    border-radius: 2px;
    margin: 10px 0;
}
.hero-tagline {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    letter-spacing: 1px;
}
.hero-description {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}
.hero-stats-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}
.hero-stat {
    text-align: center;
    background: rgba(255,255,255,0.15);
    padding: 12px 16px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}
.hero-stat-number {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    font-family: 'Nunito', sans-serif;
}
.hero-stat-label {
    display: block;
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}
.hero-download-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 12px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    color: #fff;
    transition: all 0.3s;
    min-height: 56px;
}
.store-btn:hover { background: rgba(255,255,255,0.3); transform: translateY(-2px); }
.store-btn i { font-size: 28px; }
.store-btn-text { display: flex; flex-direction: column; }
.store-btn-small { font-size: 10px; opacity: 0.8; }
.store-btn-big { font-size: 16px; font-weight: 700; }

/* === PHONE MOCKUP === */
.hero-phone-side { flex-shrink: 0; }
.phone-mockup { animation: phoneFloat 4s ease-in-out infinite; }
.phone-frame {
    width: 280px;
    height: 560px;
    background: #1a1a2e;
    border-radius: 40px;
    border: 4px solid #333;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4), inset 0 0 20px rgba(255,255,255,0.05);
}
.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #333;
    border-radius: 0 0 15px 15px;
    z-index: 10;
}
.phone-notch::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 6px;
    background: #555;
    border-radius: 3px;
}
.phone-screen {
    position: absolute;
    top: 25px;
    left: 0; right: 0; bottom: 20px;
    background: linear-gradient(180deg, #03A9F4, #0288D1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.phone-home-indicator {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #666;
    border-radius: 2px;
}

/* App Mock Content */
.app-header-mock {
    padding: 15px 12px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.app-logo-mock {
    background: rgba(255,255,255,0.25);
    width: 36px; height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 13px;
}
.app-balance { display: flex; flex-direction: column; text-align: right; }
.balance-label { color: rgba(255,255,255,0.7); font-size: 9px; }
.balance-amount { color: #fff; font-weight: 700; font-size: 13px; }
.app-nav-mock {
    display: flex;
    justify-content: space-around;
    padding: 8px 10px;
    background: rgba(0,0,0,0.15);
    margin: 0 8px;
    border-radius: 10px;
}
.app-nav-item {
    color: rgba(255,255,255,0.6);
    font-size: 16px;
    padding: 6px;
    border-radius: 8px;
}
.app-nav-item.active { color: #fff; background: rgba(255,255,255,0.2); }
.app-games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    padding: 10px 8px;
}
.app-game-tile {
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    padding: 10px 5px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.app-game-tile i { color: #fff; font-size: 18px; }
.app-game-tile span { color: rgba(255,255,255,0.9); font-size: 9px; font-weight: 600; }
.app-live-matches {
    padding: 8px;
    margin: 0 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}
.live-match-title {
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.live-match-title i { color: #ff4444; font-size: 8px; }
.live-match-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.live-match-item:last-child { border-bottom: none; }
.match-teams { color: rgba(255,255,255,0.9); font-size: 10px; }
.match-odds {
    background: rgba(255,255,255,0.2);
    color: #fff;
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 10px;
    font-weight: 700;
}
.app-action-buttons {
    display: flex;
    gap: 6px;
    padding: 10px 8px;
    margin-top: auto;
}
.app-action-btn {
    flex: 1;
    padding: 8px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 10px;
    cursor: pointer;
    color: #fff;
}
.app-action-btn.deposit { background: #4CAF50; }
.app-action-btn.withdraw { background: #FF9800; }

/* === APP FEATURES === */
.app-features {
    padding: 50px 0;
    text-align: center;
}
.section-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.section-title i { margin-right: 8px; }
.section-subtitle {
    color: #666;
    font-size: 15px;
    margin-bottom: 35px;
}
.features-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(3, 169, 244, 0.15);
    border-color: #03A9F4;
}
.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, #E3F2FD, #BBDEFB);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-icon i { font-size: 32px; color: #03A9F4; }
.feature-card h3 {
    font-size: 15px;
    font-weight: 800;
    color: #212121;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}
.feature-card p { font-size: 13px; color: #666; line-height: 1.6; }

/* === GAME GRID === */
.mobile-games {
    padding: 50px 0;
    text-align: center;
}
.games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.game-card {
    display: flex;
    gap: 16px;
    background: #fff;
    border-radius: 16px;
    padding: 24px 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    align-items: flex-start;
    text-align: left;
}
.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(3, 169, 244, 0.15);
    border-color: #03A9F4;
}
.game-card-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #03A9F4, #0288D1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.game-card-icon i { font-size: 26px; color: #fff; }
.game-card-info h3 {
    font-size: 15px;
    font-weight: 800;
    color: #212121;
    margin-bottom: 6px;
}
.game-card-info p { font-size: 12px; color: #666; line-height: 1.5; margin-bottom: 10px; }
.game-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #03A9F4;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}
.game-card:hover .game-card-btn { color: #0288D1; }

/* === BONUSES === */
.mobile-bonuses {
    padding: 50px 0;
    text-align: center;
}
.bonuses-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}
.bonus-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    text-align: left;
}
.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(3, 169, 244, 0.15);
}
.bonus-card-header {
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 1px;
}
.bonus-welcome { background: linear-gradient(135deg, #03A9F4, #0288D1); }
.bonus-daily { background: linear-gradient(135deg, #4CAF50, #388E3C); }
.bonus-referral { background: linear-gradient(135deg, #FF9800, #F57C00); }
.bonus-card-header i { font-size: 20px; }
.bonus-card-body { padding: 24px; }
.bonus-amount {
    font-size: 48px;
    font-weight: 900;
    color: #03A9F4;
    font-family: 'Nunito', sans-serif;
    line-height: 1;
    margin-bottom: 8px;
}
.bonus-card-body h3 {
    font-size: 18px;
    font-weight: 800;
    color: #212121;
    margin-bottom: 10px;
}
.bonus-card-body p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}
.bonus-terms {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}
.bonus-terms span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #4CAF50;
    font-weight: 500;
}
.bonus-terms i { font-size: 12px; }
.btn-bonus {
    display: inline-block;
    background: linear-gradient(135deg, #03A9F4, #0288D1);
    color: #fff;
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
}
.btn-bonus:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(3, 169, 244, 0.4); }

/* === DOWNLOAD SECTION === */
.download-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #E3F2FD, #BBDEFB);
    border-radius: 20px;
    margin: 30px 0;
}
.download-inner {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 0 40px;
}
.download-text-side { flex: 1; }
.download-text-side h2 {
    font-size: 28px;
    font-weight: 800;
    color: #212121;
    margin-bottom: 15px;
}
.download-text-side > p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}
.download-features-list {
    margin-bottom: 25px;
}
.download-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: #333;
}
.download-features-list i { color: #4CAF50; font-size: 16px; }
.download-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.download-section .store-btn {
    background: #212121;
    color: #fff;
}
.download-section .store-btn:hover { background: #333; }
.qr-code-section { margin-top: 15px; }
.qr-code-box {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.qr-pattern {
    width: 100px;
    height: 100px;
    background:
        repeating-conic-gradient(#212121 0% 25%, #fff 0% 50%) 0 0 / 10px 10px,
        repeating-conic-gradient(#212121 0% 25%, #fff 0% 50%) 5px 5px / 10px 10px;
    background-size: 10px 10px;
    border: 3px solid #212121;
    border-radius: 8px;
}
.qr-code-box p { font-size: 12px; color: #666; }
.download-phone-side { flex-shrink: 0; }
.download-phone .phone-frame { width: 220px; height: 440px; border-radius: 32px; }
.download-phone .phone-notch { width: 90px; height: 20px; }
.download-app-preview { padding: 20px 8px 8px; }
.preview-top-bar {
    text-align: center;
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    padding: 8px;
    background: rgba(0,0,0,0.1);
    border-radius: 8px;
    margin-bottom: 8px;
}
.preview-match {
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 8px;
    margin-bottom: 6px;
}
.pm-league { color: rgba(255,255,255,0.6); font-size: 8px; display: block; }
.pm-teams { color: #fff; font-size: 10px; font-weight: 600; display: block; margin: 3px 0; }
.pm-odds { display: flex; gap: 4px; }
.pm-odds .odd {
    flex: 1;
    text-align: center;
    background: rgba(255,255,255,0.2);
    padding: 4px 2px;
    border-radius: 4px;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
}
.preview-casino { margin-top: 8px; padding: 8px; background: rgba(255,255,255,0.1); border-radius: 8px; }
.preview-casino-title { color: #fff; font-size: 10px; font-weight: 700; margin-bottom: 6px; }
.preview-casino-games { display: flex; justify-content: space-around; }
.preview-casino-games span {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
}

/* === USER REVIEWS === */
.user-reviews {
    padding: 50px 0;
    text-align: center;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.review-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
    transition: all 0.3s;
}
.review-card:hover { box-shadow: 0 8px 25px rgba(3, 169, 244, 0.12); }
.review-stars { margin-bottom: 12px; }
.review-stars i { color: #FFC107; font-size: 14px; }
.review-text {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 16px;
}
.review-user {
    display: flex;
    align-items: center;
    gap: 12px;
}
.review-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #03A9F4, #0288D1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}
.review-user-info { display: flex; flex-direction: column; }
.review-name { font-weight: 700; font-size: 14px; color: #212121; }
.review-date { font-size: 12px; color: #999; }

/* === FOOTER CTA === */
.footer-cta-section {
    background: linear-gradient(135deg, #03A9F4, #0288D1);
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
}
.footer-cta-inner { position: relative; z-index: 2; }
.cta-floating-icons {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    overflow: hidden;
}
.cta-floating-icons i {
    position: absolute;
    color: rgba(255,255,255,0.1);
    font-size: 40px;
}
.cta-float-1 { top: 10%; left: 5%; animation: float 6s ease-in-out infinite; }
.cta-float-2 { top: 60%; left: 10%; animation: float 8s ease-in-out infinite 1s; }
.cta-float-3 { top: 20%; right: 15%; animation: float 7s ease-in-out infinite 0.5s; }
.cta-float-4 { bottom: 20%; right: 5%; animation: float 9s ease-in-out infinite 2s; }
.cta-float-5 { bottom: 10%; left: 30%; animation: float 10s ease-in-out infinite 1.5s; }
.footer-cta-section h2 {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}
.footer-cta-section p {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.cta-features {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}
.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}
.cta-feature i { color: rgba(255,255,255,0.8); }
.btn-primary-cta {
    display: inline-block;
    background: #fff;
    color: #03A9F4;
    padding: 16px 40px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 1px;
    transition: all 0.3s;
    min-height: 54px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.btn-primary-cta:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }

/* === BOTTOM TAB NAV === */
.bottom-tab-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #fff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 0;
    padding-bottom: calc(8px + env(safe-area-inset-bottom));
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    border-top: 1px solid #e0e0e0;
}
.bottom-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 6px 12px;
    color: #999;
    font-size: 11px;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
}
.bottom-tab i { font-size: 20px; }
.bottom-tab.active { color: #03A9F4; }
.bottom-tab.active::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: #03A9F4;
    border-radius: 2px;
}
.bottom-tab:hover { color: #03A9F4; }

/* === NEWS SECTION === */
.home-news-section {
    padding: 50px 0;
    text-align: center;
}
.home-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}
.article-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.4s;
    border: 1px solid #f0f0f0;
    display: block;
}
.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(3, 169, 244, 0.15);
}
.article-card-thumb {
    height: 180px;
    overflow: hidden;
}
.article-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.article-card:hover .article-card-thumb img { transform: scale(1.05); }
.article-card-title {
    padding: 14px 16px 6px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    color: #212121;
    text-align: left;
}
.article-card-title a { color: #212121; }
.article-card-title a:hover { color: #03A9F4; }
.article-card-meta {
    padding: 0 16px;
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: #999;
}
.article-card-meta i { margin-right: 4px; }
.article-card-excerpt {
    padding: 8px 16px 16px;
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    text-align: left;
}
.article-card-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 16px 16px;
    color: #03A9F4;
    font-size: 13px;
    font-weight: 600;
}
.view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    border: 2px solid #03A9F4;
    color: #03A9F4;
    transition: all 0.3s;
    min-height: 48px;
}
.view-more-btn:hover { background: #03A9F4; color: #fff; }

/* === SIDEBAR === */
.floating-sidebar {
    position: fixed;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.sidebar-btn {
    width: 48px;
    height: 48px;
    background: #03A9F4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(3, 169, 244, 0.4);
    transition: all 0.3s;
    position: relative;
}
.sidebar-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(3, 169, 244, 0.6);
}
.sidebar-btn-facebook { background: #1877F2; }
.sidebar-btn-telegram { background: #0088cc; }
.sidebar-label {
    display: none;
    position: absolute;
    right: 58px;
    background: #333;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
}
.sidebar-btn:hover .sidebar-label { display: block; }

/* === FOOTER === */
.site-footer {
    background: linear-gradient(180deg, #212121, #1a1a1a);
    color: #fff;
    padding: 50px 0 20px;
    margin-bottom: 60px;
}
.footer-columns-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}
.footer-brand-logo { margin-bottom: 15px; }
.footer-brand-logo img { height: 40px; filter: brightness(2); }
.footer-brand-text {
    font-size: 13px;
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 15px;
}
.footer-18plus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid #ff4444;
    border-radius: 50%;
    color: #ff4444;
    font-weight: 800;
    font-size: 14px;
    margin-bottom: 15px;
}
.footer-social-links { display: flex; gap: 10px; }
.footer-social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 14px;
    transition: all 0.3s;
}
.footer-social-links a:hover { background: #03A9F4; color: #fff; }
.footer-col h4 {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 10px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: #03A9F4;
    border-radius: 2px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a {
    color: #aaa;
    font-size: 13px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-col ul a:hover { color: #03A9F4; padding-left: 5px; }
.footer-license-bar {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    text-align: center;
    margin-bottom: 20px;
}
.footer-license-bar h4 {
    font-size: 14px;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.license-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}
.license-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.license-item i { font-size: 24px; color: #03A9F4; }
.license-item span { font-size: 11px; color: #aaa; font-weight: 600; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
}
.footer-copyright {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 8px;
}
.footer-disclaimer {
    font-size: 12px;
    color: #666;
}

/* === CATEGORY PAGE === */
.category-header {
    text-align: center;
    padding: 30px 0;
}
.category-title {
    font-size: 28px;
    margin-bottom: 10px;
}
.category-desc { color: #666; font-size: 14px; }
.provider-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 30px;
}
.provider-tab {
    padding: 10px 20px;
    border-radius: 25px;
    background: #fff;
    color: #666;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.3s;
    min-height: 44px;
}
.provider-tab.active, .provider-tab:hover {
    background: #03A9F4;
    color: #fff;
    border-color: #03A9F4;
}

/* === SINGLE ARTICLE === */
.single-article {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.article-header { margin-bottom: 20px; }
.article-title {
    font-size: 28px;
    color: #212121;
    margin-bottom: 12px;
    line-height: 1.4;
}
.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
    color: #999;
}
.article-meta i { margin-right: 5px; }
.article-meta a { color: #03A9F4; }
.article-featured-img {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}
.article-featured-img img { width: 100%; }
.article-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}
.article-content h2, .article-content h3 { margin: 20px 0 10px; color: #212121; }
.article-content p { margin-bottom: 15px; }
.article-content img { border-radius: 8px; margin: 15px 0; }
.article-content a { color: #03A9F4; text-decoration: underline; }
.article-content blockquote {
    border-left: 4px solid #03A9F4;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 0 8px 8px 0;
    margin: 15px 0;
    font-style: italic;
}
.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    margin-top: 20px;
}
.article-tags i { color: #03A9F4; }
.article-tags span {
    background: #E3F2FD;
    color: #03A9F4;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}
.article-nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    margin-top: 15px;
    border-top: 1px solid #f0f0f0;
}
.article-nav a { color: #03A9F4; font-weight: 600; font-size: 14px; }

/* === RELATED POSTS === */
.related-posts {
    padding: 30px 0;
    margin-bottom: 30px;
}
.related-posts-title {
    font-size: 20px;
    margin-bottom: 20px;
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.related-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: all 0.3s;
    display: block;
}
.related-item:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.1); }
.related-item-thumb { height: 120px; overflow: hidden; }
.related-item-thumb img { width: 100%; height: 100%; object-fit: cover; }
.related-item-title {
    padding: 10px;
    font-size: 13px;
    color: #212121;
    font-weight: 600;
    line-height: 1.4;
}

/* === PAGE === */
.page-article {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.page-title {
    font-size: 28px;
    color: #212121;
    margin-bottom: 20px;
}
.page-featured-img {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}
.page-content { font-size: 16px; line-height: 1.8; color: #333; }
.page-content p { margin-bottom: 15px; }
.page-content h2, .page-content h3 { margin: 20px 0 10px; }
.page-content img { border-radius: 8px; margin: 15px 0; }

/* === PAGINATION === */
.pagination { text-align: center; padding: 25px 0; }
.pagination .nav-links { display: flex; justify-content: center; gap: 6px; }
.pagination .page-numbers {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    background: #fff;
    border: 1px solid #e0e0e0;
    transition: all 0.3s;
}
.pagination .page-numbers.current, .pagination .page-numbers:hover {
    background: #03A9F4;
    color: #fff;
    border-color: #03A9F4;
}

/* === NO POSTS === */
.no-posts {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}
.no-posts i { display: block; }
.no-posts p { margin-top: 10px; font-size: 16px; }

/* === HOME NEWS PLACEHOLDER === */
.home-news-placeholder {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* === KEYFRAMES === */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}
@keyframes phoneFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
@keyframes pullRefresh {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideIn {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes tabBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* === SCROLL ANIMATIONS === */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === SWIPER CUSTOM === */
.swiper-pagination-bullet {
    background: #03A9F4 !important;
    opacity: 0.5;
}
.swiper-pagination-bullet-active { opacity: 1; }
.swiper-button-next, .swiper-button-prev { color: #03A9F4 !important; }
