/* ============================================================
   PHONBET Theme - Main Stylesheet
   Phone-shaped frame UI with screen glow effects
   Colors: Blue(#1565C0) + Silver(#BDBDBD) + White(#FFFFFF)
   Fonts: Space Mono + Poppins
   ============================================================ */

/* === CSS Variables === */
:root {
    --phonbet-blue: #1565C0;
    --phonbet-blue-dark: #0D47A1;
    --phonbet-blue-light: #1E88E5;
    --phonbet-blue-glow: rgba(21, 101, 192, 0.4);
    --phonbet-silver: #BDBDBD;
    --phonbet-silver-dark: #9E9E9E;
    --phonbet-silver-light: #E0E0E0;
    --phonbet-white: #FFFFFF;
    --phonbet-bg-dark: #0a0e1a;
    --phonbet-bg-card: #111827;
    --phonbet-bg-section: #0d1321;
    --phonbet-text: #E0E0E0;
    --phonbet-text-muted: #9E9E9E;
    --font-heading: 'Space Mono', monospace;
    --font-body: 'Poppins', sans-serif;
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 20px;
    --shadow-blue: 0 4px 20px rgba(21, 101, 192, 0.3);
    --shadow-card: 0 4px 15px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease;
}

/* === Reset & Base === */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    background: var(--phonbet-bg-dark);
    color: var(--phonbet-text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: var(--phonbet-blue-light);
    transition: var(--transition);
}

a:hover {
    color: var(--phonbet-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--phonbet-white);
}

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

/* === Utility Classes === */
.blue-text {
    color: var(--phonbet-blue-light);
}

.silver-text {
    color: var(--phonbet-silver);
}

/* === Content Layout === */
.content-area {
    display: flex;
    gap: 30px;
    padding: 30px 0;
    flex-wrap: wrap;
}

.main-content {
    flex: 1;
    min-width: 0;
}

/* === Buttons === */
.btn-blue-primary {
    display: inline-block;
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--phonbet-blue), var(--phonbet-blue-dark));
    color: var(--phonbet-white);
    border: none;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-blue);
    text-align: center;
}

.btn-blue-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(21, 101, 192, 0.5);
    color: var(--phonbet-white);
    background: linear-gradient(135deg, var(--phonbet-blue-light), var(--phonbet-blue));
}

.btn-outline-blue {
    display: inline-block;
    padding: 14px 36px;
    background: transparent;
    color: var(--phonbet-blue-light);
    border: 2px solid var(--phonbet-blue);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-outline-blue:hover {
    background: var(--phonbet-blue);
    color: var(--phonbet-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-blue);
}

.btn-promo {
    display: inline-block;
    padding: 10px 28px;
    background: linear-gradient(135deg, var(--phonbet-blue), var(--phonbet-blue-dark));
    color: var(--phonbet-white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-promo:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-blue);
    color: var(--phonbet-white);
}

/* === Header === */
.site-header {
    background: linear-gradient(180deg, #0a0e1a 0%, #111827 100%);
    border-bottom: 1px solid rgba(21, 101, 192, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 20px;
}

.logo img {
    height: 45px;
    width: auto;
}

.header-signal {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    padding: 5px 12px;
    background: rgba(21, 101, 192, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(21, 101, 192, 0.2);
}

.signal-bar {
    display: block;
    width: 4px;
    background: var(--phonbet-blue);
    border-radius: 2px;
    animation: signalPulse 2s ease-in-out infinite;
}

.signal-bar:nth-child(1) { height: 6px; animation-delay: 0s; }
.signal-bar:nth-child(2) { height: 10px; animation-delay: 0.2s; }
.signal-bar:nth-child(3) { height: 14px; animation-delay: 0.4s; }
.signal-bar:nth-child(4) { height: 18px; animation-delay: 0.6s; }

.signal-label {
    font-family: var(--font-heading);
    font-size: 11px;
    color: var(--phonbet-blue-light);
    margin-left: 6px;
    font-weight: 700;
}

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

.btn-login {
    padding: 8px 20px;
    background: transparent;
    color: var(--phonbet-blue-light);
    border: 1px solid var(--phonbet-blue);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: var(--transition);
}

.btn-login:hover {
    background: var(--phonbet-blue);
    color: var(--phonbet-white);
}

.btn-register {
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--phonbet-blue), var(--phonbet-blue-dark));
    color: var(--phonbet-white);
    border: none;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: var(--transition);
    box-shadow: var(--shadow-blue);
}

.btn-register:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 25px rgba(21, 101, 192, 0.5);
    color: var(--phonbet-white);
}

.btn-demo {
    padding: 8px 20px;
    background: transparent;
    color: var(--phonbet-silver);
    border: 1px solid var(--phonbet-silver-dark);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: var(--transition);
}

.btn-demo:hover {
    border-color: var(--phonbet-blue);
    color: var(--phonbet-blue-light);
}

/* === Navigation === */
.main-navigation {
    background: rgba(21, 101, 192, 0.08);
    border-top: 1px solid rgba(21, 101, 192, 0.15);
    border-bottom: 1px solid rgba(21, 101, 192, 0.15);
}

.main-navigation .container {
    display: flex;
    align-items: center;
    position: relative;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 12px 16px;
    color: var(--phonbet-silver);
    font-size: 13px;
    font-weight: 500;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--phonbet-blue-light);
    background: rgba(21, 101, 192, 0.1);
}

.nav-link i {
    margin-right: 5px;
    font-size: 12px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--phonbet-blue-light);
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

/* === Notification Bar === */
.notification-bar {
    background: linear-gradient(90deg, var(--phonbet-blue-dark), var(--phonbet-blue), var(--phonbet-blue-dark));
    padding: 8px 0;
    overflow: hidden;
}

.notification-content {
    display: flex;
    gap: 60px;
    animation: notifSlide 25s linear infinite;
    white-space: nowrap;
}

.notification-content span {
    font-size: 13px;
    color: var(--phonbet-white);
    font-weight: 400;
}

/* === Announcement Modal === */
.announcement-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.announcement-modal.active {
    display: flex;
}

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

.announcement-content {
    position: relative;
    background: var(--phonbet-bg-card);
    border: 2px solid var(--phonbet-blue);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    max-width: 480px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 0 40px rgba(21, 101, 192, 0.3);
    animation: screenGlow 3s ease-in-out infinite;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: var(--phonbet-bg-dark);
    border-radius: 0 0 15px 15px;
}

.announcement-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: var(--phonbet-silver);
    font-size: 28px;
    cursor: pointer;
    z-index: 2;
    transition: var(--transition);
}

.announcement-close:hover {
    color: var(--phonbet-blue-light);
    transform: rotate(90deg);
}

.announcement-header-icon {
    text-align: center;
    margin-bottom: 15px;
}

.announcement-header-icon i {
    font-size: 48px;
    color: var(--phonbet-blue);
}

.announcement-title {
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.announcement-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.announcement-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(21, 101, 192, 0.08);
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(21, 101, 192, 0.15);
    transition: var(--transition);
}

.announcement-item:hover {
    background: rgba(21, 101, 192, 0.15);
    border-color: var(--phonbet-blue);
    transform: translateX(5px);
}

.announcement-badge {
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    flex-shrink: 0;
}

.announcement-badge.hot { background: #e53935; color: white; }
.announcement-badge.new { background: var(--phonbet-blue); color: white; }
.announcement-badge.info { background: var(--phonbet-silver-dark); color: white; }

.announcement-text {
    flex: 1;
    font-size: 13px;
    color: var(--phonbet-text);
}

.announcement-item i.fa-chevron-right {
    color: var(--phonbet-blue);
    font-size: 12px;
}

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

.announcement-cta {
    padding: 12px 40px;
}

/* === Hero Section - Phone Frame === */
.phonbet-hero {
    position: relative;
    padding: 60px 0 40px;
    text-align: center;
    overflow: hidden;
}

.phone-frame-hero {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.phone-frame-bezel {
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border: 3px solid var(--phonbet-silver-dark);
    border-radius: 40px;
    padding: 15px;
    position: relative;
    box-shadow: 0 0 30px rgba(21, 101, 192, 0.2),
                inset 0 0 20px rgba(0, 0, 0, 0.5);
    animation: phoneShake 6s ease-in-out infinite;
}

.phone-notch-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    margin-bottom: 10px;
}

.notch-camera {
    width: 12px;
    height: 12px;
    background: #2d2d44;
    border-radius: 50%;
    border: 2px solid #3d3d55;
}

.notch-speaker {
    width: 50px;
    height: 5px;
    background: #2d2d44;
    border-radius: 3px;
}

.phone-screen-content {
    background: linear-gradient(180deg, #0d1117 0%, #0a0e1a 100%);
    border-radius: 25px;
    padding: 20px 25px 30px;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.screen-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0 15px;
    border-bottom: 1px solid rgba(21, 101, 192, 0.1);
    margin-bottom: 20px;
}

.status-time {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--phonbet-white);
    font-weight: 700;
}

.status-icons {
    display: flex;
    gap: 10px;
    color: var(--phonbet-silver);
    font-size: 13px;
}

.hero-app-content {
    text-align: center;
}

.hero-main-title {
    margin-bottom: 20px;
}

.hero-brand {
    display: block;
    font-size: 42px;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--phonbet-blue-light);
    text-shadow: 0 0 20px rgba(21, 101, 192, 0.5);
    letter-spacing: 3px;
}

.hero-divider-line {
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--phonbet-blue), transparent);
    margin: 12px auto;
}

.hero-tagline {
    display: block;
    font-size: 16px;
    color: var(--phonbet-silver);
    font-family: var(--font-heading);
    letter-spacing: 2px;
}

.hero-description {
    font-size: 15px;
    color: var(--phonbet-text-muted);
    max-width: 500px;
    margin: 0 auto 25px;
    line-height: 1.8;
}

.hero-stats-row {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--phonbet-blue-light);
}

.hero-stat-label {
    display: block;
    font-size: 12px;
    color: var(--phonbet-silver);
    margin-top: 4px;
}

.hero-cta-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.phone-home-indicator {
    width: 120px;
    height: 4px;
    background: var(--phonbet-silver-dark);
    border-radius: 2px;
    margin: 15px auto 5px;
}

.screen-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(21, 101, 192, 0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: screenGlow 4s ease-in-out infinite;
    z-index: -1;
}

/* === Section Titles === */
.section-title {
    font-family: var(--font-heading);
    font-size: 28px;
    text-align: center;
    margin-bottom: 10px;
    padding-top: 40px;
}

.section-title i {
    margin-right: 10px;
    color: var(--phonbet-blue);
}

.section-subtitle {
    text-align: center;
    color: var(--phonbet-silver);
    font-size: 15px;
    margin-bottom: 35px;
}

/* === App Games Section === */
.phone-app-games {
    padding: 20px 0 40px;
}

.app-games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.app-game-card {
    background: var(--phonbet-bg-card);
    border: 1px solid rgba(21, 101, 192, 0.15);
    border-radius: var(--border-radius);
    padding: 25px 20px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.app-game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--phonbet-blue), var(--phonbet-blue-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.app-game-card:hover::before {
    transform: scaleX(1);
}

.app-game-card:hover {
    transform: translateY(-5px);
    border-color: var(--phonbet-blue);
    box-shadow: 0 10px 30px rgba(21, 101, 192, 0.2);
}

.app-game-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(21, 101, 192, 0.2), rgba(21, 101, 192, 0.05));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 28px;
    color: var(--phonbet-blue-light);
    border: 1px solid rgba(21, 101, 192, 0.2);
}

.app-game-rating {
    margin-bottom: 12px;
    color: #FFC107;
    font-size: 13px;
}

.app-game-rating i {
    margin: 0 1px;
}

.app-game-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
    font-family: var(--font-heading);
    color: var(--phonbet-white);
}

.app-game-card p {
    font-size: 13px;
    color: var(--phonbet-text-muted);
    line-height: 1.6;
    margin-bottom: 12px;
}

.app-game-players {
    font-size: 12px;
    color: var(--phonbet-blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* === Phone Grid Section === */
.phone-grid-section {
    padding: 20px 0 40px;
}

.phone-grid-map {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.phone-grid-node {
    background: var(--phonbet-bg-card);
    border: 1px solid rgba(189, 189, 189, 0.15);
    border-radius: var(--border-radius);
    padding: 20px 15px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.phone-grid-node:hover {
    border-color: var(--phonbet-blue);
    background: rgba(21, 101, 192, 0.08);
    transform: translateY(-3px);
    box-shadow: var(--shadow-blue);
}

.phone-node-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--phonbet-blue), var(--phonbet-blue-dark));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--phonbet-white);
    font-size: 20px;
}

.phone-node-label {
    font-size: 13px;
    color: var(--phonbet-text);
    font-weight: 500;
}

/* === Screen Features Section === */
.screen-features {
    padding: 20px 0 40px;
}

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

.screen-feature-card {
    background: var(--phonbet-bg-card);
    border: 1px solid rgba(21, 101, 192, 0.15);
    border-radius: var(--border-radius);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
}

.screen-feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--phonbet-blue);
    box-shadow: 0 10px 30px rgba(21, 101, 192, 0.15);
}

.screen-feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--phonbet-blue), var(--phonbet-blue-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 24px;
    color: var(--phonbet-white);
}

.screen-feature-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.screen-feature-card p {
    font-size: 13px;
    color: var(--phonbet-text-muted);
    line-height: 1.7;
}

/* === Phone Stats Section === */
.phone-stats {
    position: relative;
    padding: 60px 0;
    text-align: center;
    overflow: hidden;
}

.phone-stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0a1628 0%, #0d1a33 50%, #0a1628 100%);
    z-index: -1;
}

.screen-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(21, 101, 192, 0.1) 0%, transparent 70%);
}

.phone-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.phone-stat-card {
    background: rgba(17, 24, 39, 0.8);
    border: 1px solid rgba(21, 101, 192, 0.2);
    border-radius: var(--border-radius);
    padding: 30px 15px;
    position: relative;
    overflow: hidden;
}

.stat-phone-decoration {
    color: rgba(21, 101, 192, 0.15);
    font-size: 20px;
    margin-bottom: 10px;
}

.stat-phone-decoration.bottom {
    margin-bottom: 0;
    margin-top: 10px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--phonbet-blue-light);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: var(--phonbet-silver);
    line-height: 1.5;
}

/* === Phone Promos Section === */
.phone-promos {
    padding: 20px 0 40px;
}

.phone-promos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.phone-promo-card {
    background: var(--phonbet-bg-card);
    border: 1px solid rgba(21, 101, 192, 0.15);
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    transition: var(--transition);
}

.phone-promo-card:hover {
    transform: translateY(-5px);
    border-color: var(--phonbet-blue);
    box-shadow: 0 10px 30px rgba(21, 101, 192, 0.2);
}

.promo-screen-bg {
    height: 6px;
    background: linear-gradient(90deg, var(--phonbet-blue-dark), var(--phonbet-blue), var(--phonbet-blue-light), var(--phonbet-blue), var(--phonbet-blue-dark));
}

.phone-promo-inner {
    padding: 25px 20px;
    text-align: center;
}

.promo-icon {
    font-size: 36px;
    color: var(--phonbet-blue);
    margin-bottom: 15px;
}

.phone-promo-inner h3 {
    font-size: 16px;
    font-family: var(--font-heading);
    margin-bottom: 10px;
    color: var(--phonbet-white);
}

.phone-promo-inner p {
    font-size: 13px;
    color: var(--phonbet-text-muted);
    line-height: 1.7;
    margin-bottom: 15px;
}

.promo-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 12px;
    color: var(--phonbet-silver);
}

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

.promo-badge.hot { background: #e53935; color: white; }
.promo-badge.new { background: var(--phonbet-blue); color: white; }
.promo-badge.vip { background: linear-gradient(135deg, #FFD700, #FFA000); color: #000; }

/* === Footer CTA Section === */
.footer-cta-section {
    position: relative;
    padding: 60px 0;
    text-align: center;
    overflow: hidden;
}

.footer-cta-phonefield {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0a1628, #0d1a33);
    z-index: -1;
}

.footer-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 15px;
}

.cta-phone-decoration {
    margin-bottom: 20px;
}

.cta-phone-frame {
    width: 60px;
    height: 100px;
    border: 3px solid var(--phonbet-blue);
    border-radius: 12px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 0 20px rgba(21, 101, 192, 0.3);
}

.cta-phone-frame::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--phonbet-blue);
    border-radius: 2px;
}

.footer-cta-section h2 {
    font-size: 28px;
    font-family: var(--font-heading);
    color: var(--phonbet-blue-light);
    margin-bottom: 15px;
}

.footer-cta-section p {
    font-size: 15px;
    color: var(--phonbet-text-muted);
    margin-bottom: 25px;
    line-height: 1.8;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--phonbet-silver);
}

.cta-feature i {
    color: var(--phonbet-blue-light);
}

.cta-main-btn {
    font-size: 16px;
    padding: 16px 50px;
}

/* === News Section === */
.home-news-section {
    padding: 20px 0 50px;
}

.home-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.article-card {
    background: var(--phonbet-bg-card);
    border: 1px solid rgba(189, 189, 189, 0.1);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    display: block;
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: var(--phonbet-blue);
    box-shadow: 0 8px 25px rgba(21, 101, 192, 0.15);
}

.article-card-thumb {
    height: 180px;
    overflow: hidden;
}

.article-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .article-card-thumb img {
    transform: scale(1.05);
}

.article-card-title {
    padding: 15px 15px 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--phonbet-white);
    line-height: 1.4;
    min-height: 55px;
}

.article-card-title a {
    color: var(--phonbet-white);
}

.article-card-title a:hover {
    color: var(--phonbet-blue-light);
}

.article-card-meta {
    padding: 0 15px;
    font-size: 12px;
    color: var(--phonbet-text-muted);
    display: flex;
    gap: 15px;
}

.article-card-meta i {
    margin-right: 5px;
    color: var(--phonbet-blue);
}

.article-card-excerpt {
    padding: 8px 15px 15px;
    font-size: 13px;
    color: var(--phonbet-text-muted);
    line-height: 1.6;
}

.article-card-more {
    display: block;
    padding: 12px 15px;
    border-top: 1px solid rgba(189, 189, 189, 0.1);
    font-size: 13px;
    font-weight: 600;
    color: var(--phonbet-blue-light);
    transition: var(--transition);
}

.article-card-more:hover {
    color: var(--phonbet-white);
    background: rgba(21, 101, 192, 0.08);
}

.article-card-more i {
    margin-left: 5px;
    font-size: 11px;
}

.view-more-btn {
    display: inline-block;
    padding: 12px 35px;
    border: 2px solid var(--phonbet-blue);
    border-radius: 50px;
    color: var(--phonbet-blue-light);
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    transition: var(--transition);
    margin: 0 auto;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blue-view-more {
    display: table;
    margin: 0 auto;
}

.view-more-btn:hover {
    background: var(--phonbet-blue);
    color: var(--phonbet-white);
    box-shadow: var(--shadow-blue);
}

.view-more-btn i {
    margin-left: 8px;
}

/* === Home News Placeholder === */
.home-news-placeholder {
    display: contents;
}

/* === Breadcrumb === */
.breadcrumb {
    padding: 15px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--phonbet-text-muted);
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--phonbet-blue-light);
}

.breadcrumb a:hover {
    color: var(--phonbet-white);
}

.breadcrumb span {
    color: var(--phonbet-silver);
}

/* === Article Grid === */
.article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.no-posts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--phonbet-text-muted);
}

/* === Category === */
.category-header {
    text-align: center;
    padding: 20px 0 30px;
}

.category-title {
    font-size: 28px;
    font-family: var(--font-heading);
}

.category-title i {
    color: var(--phonbet-blue);
    margin-right: 10px;
}

.category-desc {
    color: var(--phonbet-text-muted);
    font-size: 15px;
    margin-top: 10px;
}

.provider-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
}

.provider-tab {
    padding: 8px 18px;
    background: rgba(21, 101, 192, 0.08);
    border: 1px solid rgba(21, 101, 192, 0.2);
    border-radius: 50px;
    color: var(--phonbet-silver);
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.provider-tab:hover,
.provider-tab.active {
    background: var(--phonbet-blue);
    color: var(--phonbet-white);
    border-color: var(--phonbet-blue);
}

/* === Pagination === */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 20px 0 40px;
}

.pagination .nav-links {
    display: flex;
    gap: 6px;
    align-items: center;
    list-style: none;
}

.pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--phonbet-bg-card);
    border: 1px solid rgba(189, 189, 189, 0.15);
    border-radius: var(--border-radius-sm);
    color: var(--phonbet-silver);
    font-size: 14px;
    transition: var(--transition);
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: var(--phonbet-blue);
    border-color: var(--phonbet-blue);
    color: var(--phonbet-white);
}

/* === Single Article === */
.single-article {
    background: var(--phonbet-bg-card);
    border: 1px solid rgba(189, 189, 189, 0.1);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 30px;
}

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

.article-title {
    font-size: 28px;
    font-family: var(--font-heading);
    color: var(--phonbet-white);
    margin-bottom: 15px;
    line-height: 1.4;
}

.article-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: var(--phonbet-text-muted);
    flex-wrap: wrap;
}

.article-meta i {
    margin-right: 5px;
    color: var(--phonbet-blue);
}

.article-meta a {
    color: var(--phonbet-blue-light);
}

.article-featured-img {
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 25px;
}

.article-featured-img img {
    width: 100%;
    height: auto;
}

.article-content {
    font-size: 15px;
    line-height: 1.9;
    color: var(--phonbet-text);
}

.article-content h2,
.article-content h3,
.article-content h4 {
    margin: 25px 0 12px;
    color: var(--phonbet-white);
}

.article-content p {
    margin-bottom: 15px;
}

.article-content a {
    color: var(--phonbet-blue-light);
    text-decoration: underline;
}

.article-content img {
    border-radius: var(--border-radius-sm);
    margin: 15px 0;
}

.article-content ul,
.article-content ol {
    margin: 15px 0;
    padding-left: 25px;
}

.article-content li {
    margin-bottom: 8px;
}

.article-content blockquote {
    border-left: 4px solid var(--phonbet-blue);
    padding: 15px 20px;
    margin: 20px 0;
    background: rgba(21, 101, 192, 0.05);
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    font-style: italic;
    color: var(--phonbet-silver);
}

.article-tags {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px 0;
    border-top: 1px solid rgba(189, 189, 189, 0.1);
    margin-top: 25px;
}

.article-tags i {
    color: var(--phonbet-blue);
}

.article-tags span {
    padding: 4px 12px;
    background: rgba(21, 101, 192, 0.1);
    border-radius: 50px;
    font-size: 12px;
    color: var(--phonbet-blue-light);
}

.article-nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid rgba(189, 189, 189, 0.1);
}

.article-nav-prev a,
.article-nav-next a {
    color: var(--phonbet-blue-light);
    font-size: 14px;
}

.article-nav-prev a:hover,
.article-nav-next a:hover {
    color: var(--phonbet-white);
}

/* === Related Posts === */
.related-posts {
    padding: 30px 0;
}

.related-posts-title {
    font-size: 22px;
    font-family: var(--font-heading);
    margin-bottom: 20px;
}

.related-posts-title i {
    color: var(--phonbet-blue);
    margin-right: 8px;
}

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

.related-item {
    background: var(--phonbet-bg-card);
    border: 1px solid rgba(189, 189, 189, 0.1);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    transition: var(--transition);
}

.related-item:hover {
    transform: translateY(-3px);
    border-color: var(--phonbet-blue);
}

.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;
    font-weight: 500;
    color: var(--phonbet-white);
    line-height: 1.4;
}

/* === Page === */
.page-article {
    background: var(--phonbet-bg-card);
    border: 1px solid rgba(189, 189, 189, 0.1);
    border-radius: var(--border-radius);
    padding: 30px;
}

.page-title {
    font-size: 28px;
    font-family: var(--font-heading);
    margin-bottom: 20px;
}

.page-featured-img {
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 20px;
}

.page-content {
    font-size: 15px;
    line-height: 1.9;
    color: var(--phonbet-text);
}

.page-content p { margin-bottom: 15px; }
.page-content h2, .page-content h3 { margin: 20px 0 10px; color: var(--phonbet-white); }

/* === Sidebar === */
.floating-sidebar {
    position: fixed;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 999;
}

.sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--phonbet-bg-card);
    border: 1px solid rgba(21, 101, 192, 0.2);
    border-radius: 50%;
    color: var(--phonbet-blue-light);
    font-size: 18px;
    transition: var(--transition);
    position: relative;
}

.sidebar-btn:hover {
    background: var(--phonbet-blue);
    color: var(--phonbet-white);
    transform: scale(1.1);
    box-shadow: var(--shadow-blue);
}

.sidebar-btn-facebook:hover { background: #1877F2; }
.sidebar-btn-telegram:hover { background: #0088cc; }

.sidebar-label {
    display: none;
}

/* === Footer === */
.site-footer {
    background: linear-gradient(180deg, #0d1321 0%, #080b14 100%);
    border-top: 1px solid rgba(21, 101, 192, 0.15);
    padding: 50px 0 30px;
}

.footer-columns-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 35px;
}

.footer-brand-logo {
    margin-bottom: 15px;
}

.footer-brand-logo img {
    height: 40px;
    width: auto;
}

.footer-brand-text {
    font-size: 13px;
    color: var(--phonbet-text-muted);
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-18plus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #e53935;
    color: white;
    font-weight: 700;
    font-size: 16px;
    border-radius: 50%;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.footer-social-links {
    display: flex;
    gap: 10px;
}

.footer-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(21, 101, 192, 0.1);
    border: 1px solid rgba(21, 101, 192, 0.2);
    border-radius: 50%;
    color: var(--phonbet-blue-light);
    font-size: 16px;
    transition: var(--transition);
}

.footer-social-links a:hover {
    background: var(--phonbet-blue);
    color: var(--phonbet-white);
}

.footer-col h4 {
    font-size: 15px;
    font-family: var(--font-heading);
    color: var(--phonbet-blue-light);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(21, 101, 192, 0.15);
}

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

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

.footer-col ul li a {
    font-size: 13px;
    color: var(--phonbet-text-muted);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--phonbet-blue-light);
    padding-left: 5px;
}

.footer-license-bar {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(189, 189, 189, 0.1);
    border-bottom: 1px solid rgba(189, 189, 189, 0.1);
    margin-bottom: 20px;
}

.footer-license-bar h4 {
    font-size: 15px;
    font-family: var(--font-heading);
    color: var(--phonbet-blue-light);
    margin-bottom: 15px;
}

.license-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.license-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.license-item i {
    font-size: 24px;
    color: var(--phonbet-blue);
}

.license-item span {
    font-size: 11px;
    color: var(--phonbet-silver);
}

.footer-bottom {
    text-align: center;
    padding: 15px 0;
}

.footer-copyright {
    font-size: 13px;
    color: var(--phonbet-text-muted);
}

/* === Error Page === */
.error-page {
    text-align: center;
    padding: 80px 20px;
}

.error-phone {
    margin-bottom: 30px;
}

.error-phone-screen {
    width: 80px;
    height: 140px;
    border: 3px solid var(--phonbet-blue);
    border-radius: 15px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--phonbet-blue);
    animation: phoneShake 3s ease-in-out infinite;
}

.error-code {
    font-size: 80px;
    font-family: var(--font-heading);
    color: var(--phonbet-blue);
    text-shadow: 0 0 30px rgba(21, 101, 192, 0.3);
}

.error-title {
    font-size: 24px;
    font-family: var(--font-heading);
    color: var(--phonbet-white);
    margin-bottom: 15px;
}

.error-desc {
    font-size: 15px;
    color: var(--phonbet-text-muted);
    max-width: 500px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

/* === Swiper Overrides === */
.swiper-pagination-bullet {
    background: var(--phonbet-silver);
    opacity: 0.5;
}

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

.swiper-button-next,
.swiper-button-prev {
    color: var(--phonbet-blue-light);
}

/* === Keyframes === */
@keyframes screenGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(21, 101, 192, 0.2),
                    0 0 40px rgba(21, 101, 192, 0.1);
    }
    50% {
        box-shadow: 0 0 40px rgba(21, 101, 192, 0.4),
                    0 0 80px rgba(21, 101, 192, 0.2),
                    0 0 120px rgba(21, 101, 192, 0.1);
    }
}

@keyframes phoneShake {
    0%, 100% {
        transform: translateX(0) rotate(0deg);
    }
    10% {
        transform: translateX(-1px) rotate(-0.5deg);
    }
    20% {
        transform: translateX(1px) rotate(0.5deg);
    }
    30% {
        transform: translateX(-1px) rotate(-0.3deg);
    }
    40% {
        transform: translateX(1px) rotate(0.3deg);
    }
    50% {
        transform: translateX(0) rotate(0deg);
    }
}

@keyframes notifSlide {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-200%);
    }
}

@keyframes signalPulse {
    0%, 100% {
        opacity: 0.4;
        transform: scaleY(0.8);
    }
    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* === Additional Utility Styles === */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }

/* === Selection === */
::selection {
    background: var(--phonbet-blue);
    color: var(--phonbet-white);
}

::-moz-selection {
    background: var(--phonbet-blue);
    color: var(--phonbet-white);
}

/* === Scrollbar === */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--phonbet-blue);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--phonbet-blue-light);
}

/* === Loading Spinner === */
.phonbet-loader {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 3px solid rgba(21, 101, 192, 0.2);
    border-top-color: var(--phonbet-blue);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* === Focus Styles === */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--phonbet-blue);
    outline-offset: 2px;
}

/* === Image Lazy Load === */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded,
img[loading="lazy"]:not([src=""]) {
    opacity: 1;
}

/* === Table Styles === */
.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.article-content th,
.article-content td {
    padding: 10px 15px;
    border: 1px solid rgba(189, 189, 189, 0.15);
    text-align: left;
}

.article-content th {
    background: rgba(21, 101, 192, 0.1);
    color: var(--phonbet-blue-light);
    font-weight: 600;
}

.article-content td {
    color: var(--phonbet-text);
}

/* === Code Blocks === */
.article-content code {
    background: rgba(21, 101, 192, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Space Mono', monospace;
    font-size: 13px;
    color: var(--phonbet-blue-light);
}

.article-content pre {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: var(--border-radius-sm);
    overflow-x: auto;
    margin: 15px 0;
}

.article-content pre code {
    background: none;
    padding: 0;
}
