/* ============================================
   SAIGON88 THEME - main.css (moban-190)
   Saigon Street Motorcycle Style
   Colors: #E65100 (Orange), #2E7D32 (Green), #FFFFFF (White)
   Fonts: Be Vietnam Pro, Archivo
   ============================================ */

/* === KEYFRAMES === */
@keyframes scooterZoom {
    0% { transform: translateX(-100%) scale(0.8); opacity: 0; }
    30% { opacity: 1; }
    50% { transform: translateX(0%) scale(1.1); }
    70% { transform: translateX(20%) scale(1); }
    100% { transform: translateX(100%) scale(0.8); opacity: 0; }
}

@keyframes streetNeon {
    0%, 100% { text-shadow: 0 0 5px #E65100, 0 0 10px #E65100, 0 0 20px #E65100, 0 0 40px #E65100; opacity: 1; }
    25% { text-shadow: 0 0 2px #E65100, 0 0 5px #E65100, 0 0 10px #E65100; opacity: 0.85; }
    50% { text-shadow: 0 0 5px #2E7D32, 0 0 10px #2E7D32, 0 0 20px #2E7D32, 0 0 40px #2E7D32; opacity: 1; }
    75% { text-shadow: 0 0 2px #2E7D32, 0 0 5px #2E7D32, 0 0 10px #2E7D32; opacity: 0.9; }
}

@keyframes phoSteam {
    0% { transform: translateY(0) scale(1); opacity: 0.6; }
    25% { transform: translateY(-15px) scale(1.1) translateX(5px); opacity: 0.5; }
    50% { transform: translateY(-30px) scale(1.2) translateX(-5px); opacity: 0.35; }
    75% { transform: translateY(-45px) scale(1.3) translateX(3px); opacity: 0.2; }
    100% { transform: translateY(-60px) scale(1.4); opacity: 0; }
}

@keyframes saigonPulse {
    0%, 100% { box-shadow: 0 0 5px rgba(230,81,0,0.4), 0 0 10px rgba(230,81,0,0.2); }
    25% { box-shadow: 0 0 10px rgba(230,81,0,0.6), 0 0 20px rgba(230,81,0,0.3), 0 0 30px rgba(46,125,50,0.2); }
    50% { box-shadow: 0 0 15px rgba(46,125,50,0.6), 0 0 25px rgba(46,125,50,0.3), 0 0 35px rgba(230,81,0,0.2); }
    75% { box-shadow: 0 0 10px rgba(46,125,50,0.4), 0 0 15px rgba(230,81,0,0.3); }
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Be Vietnam Pro', sans-serif;
    background: #1A1A1A;
    color: #E8E8E8;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: #E65100;
    transition: all 0.3s ease;
}

a:hover {
    color: #FF8F00;
    text-shadow: 0 0 10px rgba(230, 81, 0, 0.5);
}

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

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

.saigon-neon-text {
    animation: streetNeon 4s ease-in-out infinite;
}

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

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

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

.announcement-content {
    position: relative;
    background: linear-gradient(145deg, #1A1A1A, #2D2D2D);
    border: 2px solid #E65100;
    border-radius: 15px;
    padding: 30px;
    max-width: 480px;
    width: 90%;
    animation: saigonPulse 3s infinite;
    z-index: 1;
}

.announcement-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #E65100;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 2;
}

.announcement-close:hover {
    color: #FF8F00;
    transform: rotate(90deg);
}

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

.announcement-header-icon i {
    font-size: 48px;
    color: #E65100;
    animation: scooterZoom 3s ease-in-out infinite;
}

.announcement-title {
    text-align: center;
    font-size: 20px;
    color: #E65100;
    margin-bottom: 20px;
    font-family: 'Archivo', sans-serif;
    letter-spacing: 1px;
}

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

.announcement-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: rgba(230, 81, 0, 0.08);
    border: 1px solid rgba(230, 81, 0, 0.2);
    border-radius: 10px;
    transition: all 0.3s;
    color: #E8E8E8;
}

.announcement-item:hover {
    background: rgba(230, 81, 0, 0.15);
    border-color: #E65100;
    transform: translateX(5px);
    text-shadow: none;
}

.announcement-badge {
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

.announcement-badge.hot { background: #E65100; color: #fff; }
.announcement-badge.new { background: #2E7D32; color: #fff; }
.announcement-badge.info { background: #1565C0; color: #fff; }

.announcement-text {
    flex: 1;
    font-size: 13px;
    line-height: 1.4;
}

.announcement-item i { color: #E65100; font-size: 12px; }

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

.announcement-cta {
    display: inline-block;
    padding: 12px 40px;
    background: linear-gradient(135deg, #E65100, #FF8F00);
    color: #fff !important;
    font-weight: 700;
    border-radius: 50px;
    font-size: 16px;
    letter-spacing: 1px;
    transition: all 0.3s;
    text-shadow: none !important;
}

.announcement-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(230, 81, 0, 0.5);
}

/* === HEADER === */
.site-header {
    background: linear-gradient(180deg, #111111 0%, #1A1A1A 100%);
    border-bottom: 2px solid #E65100;
    position: sticky;
    top: 0;
    z-index: 999;
}

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

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

.header-time {
    font-family: 'Archivo', sans-serif;
    color: #E65100;
    font-size: 14px;
    font-weight: 600;
}

.header-btn-group { display: flex; gap: 8px; }

.btn-login {
    padding: 8px 18px;
    border: 2px solid #2E7D32;
    color: #2E7D32;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s;
}

.btn-login:hover { background: #2E7D32; color: #fff; text-shadow: none; }

.btn-register {
    padding: 8px 18px;
    background: linear-gradient(135deg, #E65100, #FF8F00);
    color: #fff !important;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s;
    text-shadow: none !important;
}

.btn-register:hover { transform: translateY(-1px); box-shadow: 0 4px 15px rgba(230, 81, 0, 0.4); }

.btn-demo {
    padding: 8px 18px;
    border: 2px solid #E65100;
    color: #E65100;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s;
}

.btn-demo:hover { background: #E65100; color: #fff; text-shadow: none; }

/* === NAVIGATION === */
.main-navigation {
    background: linear-gradient(90deg, rgba(230,81,0,0.1), rgba(46,125,50,0.1));
    border-top: 1px solid rgba(230, 81, 0, 0.2);
    border-bottom: 1px solid rgba(46, 125, 50, 0.2);
}

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

.nav-item { position: relative; }

.nav-link {
    display: block;
    padding: 12px 16px;
    color: #E8E8E8;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Archivo', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.nav-link:hover {
    color: #E65100;
    background: rgba(230, 81, 0, 0.1);
    text-shadow: 0 0 10px rgba(230, 81, 0, 0.3);
}

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

.has-dropdown .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #1A1A1A;
    border: 1px solid rgba(230, 81, 0, 0.3);
    border-radius: 0 0 10px 10px;
    min-width: 200px;
    z-index: 100;
    list-style: none;
}

.has-dropdown:hover .sub-menu { display: block; }

.sub-menu .nav-link {
    padding: 10px 20px;
    font-size: 13px;
    border-bottom: 1px solid rgba(230, 81, 0, 0.1);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #E65100;
    font-size: 24px;
    cursor: pointer;
    padding: 10px 15px;
}

/* === NOTIFICATION BAR === */
.notification-bar {
    background: linear-gradient(90deg, #E65100, #FF8F00, #2E7D32);
    overflow: hidden;
    padding: 8px 0;
}

.notification-content {
    display: flex;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

.notification-content span {
    color: #fff;
    font-size: 13px;
    padding: 0 50px;
    font-weight: 500;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* === CONTENT AREA === */
.content-area {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 25px;
    padding: 25px 0;
}

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

/* === HERO SECTION === */
.saigon-hero {
    position: relative;
    min-height: 500px;
    background: linear-gradient(135deg, #1A1A1A 0%, #2D1B00 50%, #0D2810 100%);
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    border: 1px solid rgba(230, 81, 0, 0.3);
}

.scooter-lights {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.scooter-light {
    position: absolute;
    width: 4px;
    height: 100px;
    background: linear-gradient(to bottom, #E65100, transparent);
    border-radius: 50%;
    opacity: 0.3;
}

.scooter-light.light-1 { left: 10%; top: 20%; animation: phoSteam 4s ease-in-out infinite; }
.scooter-light.light-2 { left: 30%; top: 10%; animation: phoSteam 5s ease-in-out infinite 0.5s; }
.scooter-light.light-3 { left: 50%; top: 15%; animation: phoSteam 4.5s ease-in-out infinite 1s; }
.scooter-light.light-4 { left: 70%; top: 25%; animation: phoSteam 5.5s ease-in-out infinite 1.5s; }
.scooter-light.light-5 { left: 90%; top: 5%; animation: phoSteam 4s ease-in-out infinite 2s; }

.scooter-zoom-element {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    height: 60px;
    pointer-events: none;
    animation: scooterZoom 8s ease-in-out infinite;
}

.scooter-wheel {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 3px solid #E65100;
    border-radius: 50%;
    bottom: 5px;
}

.scooter-wheel.wheel-front { right: 10%; }
.scooter-wheel.wheel-rear { right: 25%; }

.scooter-body {
    position: absolute;
    width: 80px;
    height: 20px;
    background: linear-gradient(90deg, #E65100, #FF8F00);
    bottom: 20px;
    right: 12%;
    border-radius: 5px;
}

.scooter-headlight {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #FFEB3B;
    border-radius: 50%;
    bottom: 30px;
    right: 8%;
    box-shadow: 0 0 15px #FFEB3B, 0 0 30px rgba(255, 235, 59, 0.5);
}

.neon-sign-effect {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 80px;
    height: 40px;
    border: 2px solid #2E7D32;
    border-radius: 5px;
    animation: streetNeon 3s ease-in-out infinite;
    opacity: 0.5;
}

.hero-inner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
}

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

.hero-brand {
    display: block;
    font-size: 56px;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    color: #E65100;
    letter-spacing: 3px;
}

.hero-divider-line {
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #E65100, #2E7D32);
    margin: 10px auto;
    border-radius: 3px;
}

.hero-tagline {
    display: block;
    font-size: 22px;
    color: #2E7D32;
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    letter-spacing: 2px;
}

.hero-description {
    max-width: 650px;
    margin: 0 auto 25px;
    font-size: 15px;
    color: #B0B0B0;
    line-height: 1.8;
}

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

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

.hero-stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    font-family: 'Archivo', sans-serif;
    color: #E65100;
}

.hero-stat-label { font-size: 13px; color: #888; }

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

.btn-saigon-primary {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg, #E65100, #FF8F00);
    color: #fff !important;
    font-weight: 700;
    border-radius: 50px;
    font-size: 16px;
    letter-spacing: 1px;
    transition: all 0.3s;
    text-shadow: none !important;
    animation: saigonPulse 3s infinite;
}

.btn-saigon-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 81, 0, 0.5);
}

.btn-outline-saigon {
    display: inline-block;
    padding: 14px 40px;
    border: 2px solid #2E7D32;
    color: #2E7D32;
    font-weight: 700;
    border-radius: 50px;
    font-size: 16px;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-outline-saigon:hover {
    background: #2E7D32;
    color: #fff;
    text-shadow: none;
}

/* === SECTION TITLES === */
.section-title {
    text-align: center;
    font-size: 28px;
    color: #E65100;
    margin-bottom: 8px;
    font-family: 'Archivo', sans-serif;
}

.section-title i { margin-right: 8px; }

.section-subtitle {
    text-align: center;
    color: #888;
    font-size: 15px;
    margin-bottom: 30px;
}

/* === STREET STAR GAMES === */
.street-star-games { margin-bottom: 40px; }

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

.street-star-game-card {
    position: relative;
    background: linear-gradient(145deg, #222, #1A1A1A);
    border: 1px solid rgba(230, 81, 0, 0.2);
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.4s;
    overflow: hidden;
    display: block;
    color: #E8E8E8;
}

.street-star-game-card:hover {
    border-color: #E65100;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(230, 81, 0, 0.2);
    color: #E8E8E8;
    text-shadow: none;
}

.street-star-game-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(230, 81, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.street-star-game-icon { margin-bottom: 12px; }
.street-star-game-icon i { font-size: 42px; color: #E65100; }

.street-star-game-rating { margin-bottom: 10px; }
.street-star-game-rating i { color: #FF8F00; font-size: 12px; }

.street-star-game-card h3 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 8px;
    font-family: 'Archivo', sans-serif;
}

.street-star-game-card p {
    font-size: 13px;
    color: #999;
    margin-bottom: 12px;
    line-height: 1.6;
}

.street-star-game-players { font-size: 12px; color: #2E7D32; }
.street-star-game-players i { margin-right: 4px; }

/* === PHO GRID === */
.pho-grid-section { margin-bottom: 40px; }

.pho-grid-map {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.pho-grid-node {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    padding: 20px 15px;
    background: linear-gradient(145deg, #222, #1A1A1A);
    border: 1px solid rgba(46, 125, 50, 0.2);
    border-radius: 12px;
    transition: all 0.3s;
    color: #E8E8E8;
}

.pho-grid-node:hover {
    border-color: #2E7D32;
    background: rgba(46, 125, 50, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.2);
    color: #E8E8E8;
    text-shadow: none;
}

.pho-node-icon i { font-size: 24px; color: #2E7D32; }

.pho-node-label {
    font-size: 13px;
    font-weight: 600;
    font-family: 'Archivo', sans-serif;
}

/* === STREET FEATURES === */
.street-features { margin-bottom: 40px; }

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

.street-feature-card {
    background: linear-gradient(145deg, #222, #1A1A1A);
    border: 1px solid rgba(230, 81, 0, 0.15);
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.4s;
}

.street-feature-card:hover {
    border-color: #E65100;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 81, 0, 0.15);
}

.street-feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(230, 81, 0, 0.15), rgba(46, 125, 50, 0.15));
    border-radius: 50%;
}

.street-feature-icon i { font-size: 28px; color: #E65100; }

.street-feature-card h3 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
    font-family: 'Archivo', sans-serif;
}

.street-feature-card p { font-size: 14px; color: #999; line-height: 1.7; }

/* === SAIGON STATS === */
.saigon-stats {
    position: relative;
    padding: 50px 0;
    margin-bottom: 40px;
    border-radius: 15px;
    overflow: hidden;
}

.saigon-stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2D1B00 0%, #0D2810 100%);
    z-index: 0;
}

.neon-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(230, 81, 0, 0.1), rgba(46, 125, 50, 0.1));
}

.saigon-stats .section-title,
.saigon-stats .section-subtitle {
    position: relative;
    z-index: 1;
}

.saigon-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.saigon-stat-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(230, 81, 0, 0.3);
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    animation: saigonPulse 4s infinite;
}

.stat-street-decoration { margin-bottom: 10px; }
.stat-street-decoration i { color: #E65100; font-size: 20px; }
.stat-street-decoration.bottom { margin-bottom: 0; margin-top: 10px; }

.stat-number {
    font-size: 36px;
    font-weight: 700;
    font-family: 'Archivo', sans-serif;
    color: #E65100;
    margin-bottom: 5px;
}

.stat-label { font-size: 13px; color: #888; }

/* === STREET PROMOS === */
.street-promos { margin-bottom: 40px; }

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

.street-promo-card {
    position: relative;
    background: linear-gradient(145deg, #222, #1A1A1A);
    border: 1px solid rgba(230, 81, 0, 0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s;
}

.street-promo-card:hover {
    border-color: #E65100;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(230, 81, 0, 0.2);
}

.promo-street-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(230, 81, 0, 0.08), transparent 70%);
    pointer-events: none;
}

.street-promo-inner {
    position: relative;
    padding: 25px 20px;
    text-align: center;
}

.promo-icon { margin-bottom: 12px; }
.promo-icon i { font-size: 36px; color: #E65100; }

.street-promo-inner h3 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 10px;
    font-family: 'Archivo', sans-serif;
    letter-spacing: 0.5px;
}

.street-promo-inner p {
    font-size: 13px;
    color: #999;
    margin-bottom: 15px;
    line-height: 1.7;
}

.promo-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 12px;
    color: #888;
}

.promo-badge {
    padding: 3px 10px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 700;
}

.promo-badge.hot { background: #E65100; color: #fff; }
.promo-badge.new { background: #2E7D32; color: #fff; }
.promo-badge.vip { background: linear-gradient(135deg, #E65100, #FF8F00); color: #fff; }

.btn-promo {
    display: inline-block;
    padding: 10px 30px;
    background: linear-gradient(135deg, #E65100, #FF8F00);
    color: #fff !important;
    font-weight: 600;
    border-radius: 50px;
    font-size: 14px;
    transition: all 0.3s;
    text-shadow: none !important;
}

.btn-promo:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(230, 81, 0, 0.4); }

/* === FOOTER CTA === */
.footer-cta-section {
    position: relative;
    padding: 60px 0;
    margin-bottom: 40px;
    border-radius: 15px;
    overflow: hidden;
}

.footer-cta-streetfield {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2D1B00, #0D2810);
    z-index: 0;
}

.footer-cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
}

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

.cta-scooter-icon i {
    font-size: 50px;
    color: #E65100;
    animation: scooterZoom 4s ease-in-out infinite;
}

.footer-cta-inner h2 {
    font-size: 32px;
    color: #E65100;
    margin-bottom: 15px;
    font-family: 'Archivo', sans-serif;
}

.footer-cta-inner p {
    max-width: 600px;
    margin: 0 auto 20px;
    font-size: 15px;
    color: #B0B0B0;
    line-height: 1.8;
}

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

.cta-feature { font-size: 14px; color: #2E7D32; font-weight: 600; }
.cta-feature i { margin-right: 5px; }
.cta-main-btn { font-size: 18px; padding: 16px 50px; }

/* === HOME NEWS === */
.home-news-section { margin-bottom: 40px; }

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

.home-news-placeholder { display: contents; }

/* === ARTICLE CARDS === */
.article-card {
    display: block;
    background: linear-gradient(145deg, #222, #1A1A1A);
    border: 1px solid rgba(230, 81, 0, 0.15);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    color: #E8E8E8;
}

.article-card:hover {
    border-color: #E65100;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 81, 0, 0.15);
    color: #E8E8E8;
    text-shadow: none;
}

.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: 15px 15px 8px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    min-height: 50px;
    font-family: 'Archivo', sans-serif;
}

.article-card-title span,
.article-card-title a { color: #E8E8E8; transition: color 0.3s; }

.article-card:hover .article-card-title a,
.article-card:hover .article-card-title span { color: #E65100; }

.article-card-meta {
    padding: 0 15px;
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #888;
    margin-bottom: 8px;
}

.article-card-meta i { margin-right: 4px; color: #E65100; }

.article-card-excerpt {
    padding: 0 15px 15px;
    font-size: 13px;
    color: #999;
    line-height: 1.6;
}

.article-card-more {
    display: block;
    padding: 12px 15px;
    border-top: 1px solid rgba(230, 81, 0, 0.1);
    color: #E65100;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
}

.article-card-more:hover { background: rgba(230, 81, 0, 0.05); padding-left: 20px; }
.article-card-more i { margin-left: 5px; font-size: 11px; }

.view-more-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #E65100;
    color: #E65100;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    text-align: center;
}

.view-more-btn:hover { background: #E65100; color: #fff; text-shadow: none; }
.view-more-btn i { margin-left: 8px; }

/* === BREADCRUMB === */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 0;
    font-size: 13px;
    color: #888;
    flex-wrap: wrap;
}

.breadcrumb a { color: #E65100; }
.breadcrumb a:hover { color: #FF8F00; }
.breadcrumb span { color: #888; }

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

/* === CATEGORY HEADER === */
.category-header {
    background: linear-gradient(145deg, #222, #1A1A1A);
    border: 1px solid rgba(230, 81, 0, 0.2);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
}

.category-title {
    font-size: 24px;
    color: #E65100;
    font-family: 'Archivo', sans-serif;
}

.category-title i { margin-right: 8px; }

.category-desc {
    margin-top: 10px;
    color: #888;
    font-size: 14px;
    line-height: 1.7;
}

/* === PROVIDER TABS === */
.provider-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.provider-tab {
    padding: 8px 18px;
    background: rgba(230, 81, 0, 0.08);
    border: 1px solid rgba(230, 81, 0, 0.2);
    color: #B0B0B0;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Be Vietnam Pro', sans-serif;
}

.provider-tab:hover,
.provider-tab.active { background: #E65100; color: #fff; border-color: #E65100; }

/* === PAGINATION === */
.pagination { text-align: center; margin: 30px 0; }

.pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(230, 81, 0, 0.3);
    border-radius: 10px;
    color: #B0B0B0;
    font-size: 14px;
    transition: all 0.3s;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover { background: #E65100; color: #fff; border-color: #E65100; }

/* === SINGLE ARTICLE === */
.single-article {
    background: linear-gradient(145deg, #222, #1A1A1A);
    border: 1px solid rgba(230, 81, 0, 0.15);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

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

.article-title {
    font-size: 28px;
    color: #fff;
    margin-bottom: 15px;
    font-family: 'Archivo', sans-serif;
    line-height: 1.4;
}

.article-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 13px;
    color: #888;
}

.article-meta i { margin-right: 5px; color: #E65100; }
.article-meta a { color: #2E7D32; }

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

.article-featured-img img { width: 100%; border-radius: 12px; }

.article-content { font-size: 16px; line-height: 1.8; color: #D0D0D0; }
.article-content h2 { font-size: 22px; color: #E65100; margin: 25px 0 15px; font-family: 'Archivo', sans-serif; }
.article-content h3 { font-size: 18px; color: #FF8F00; margin: 20px 0 10px; }
.article-content p { margin-bottom: 15px; }
.article-content img { border-radius: 10px; margin: 15px 0; }
.article-content ul, .article-content ol { padding-left: 25px; margin-bottom: 15px; }
.article-content li { margin-bottom: 8px; }

.article-content blockquote {
    border-left: 4px solid #E65100;
    padding: 15px 20px;
    margin: 20px 0;
    background: rgba(230, 81, 0, 0.05);
    border-radius: 0 10px 10px 0;
    font-style: italic;
}

.article-content a { color: #E65100; text-decoration: underline; }

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

.article-tags i { color: #E65100; }

.article-tags span {
    padding: 4px 12px;
    background: rgba(230, 81, 0, 0.08);
    border: 1px solid rgba(230, 81, 0, 0.2);
    border-radius: 50px;
    font-size: 12px;
    color: #B0B0B0;
}

.article-tags span a { color: #B0B0B0; }

.article-nav {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(230, 81, 0, 0.15);
}

.article-nav-prev, .article-nav-next { flex: 1; }
.article-nav-next { text-align: right; }
.article-nav a { color: #E65100; font-size: 14px; font-weight: 600; }
.article-nav i { font-size: 12px; }

/* === RELATED POSTS === */
.related-posts { margin-bottom: 30px; }

.related-posts-title {
    font-size: 20px;
    color: #E65100;
    margin-bottom: 20px;
    font-family: 'Archivo', sans-serif;
}

.related-posts-title i { margin-right: 8px; }

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

.related-item {
    display: block;
    background: linear-gradient(145deg, #222, #1A1A1A);
    border: 1px solid rgba(230, 81, 0, 0.15);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
    color: #E8E8E8;
}

.related-item:hover {
    border-color: #E65100;
    transform: translateY(-2px);
    color: #E8E8E8;
    text-shadow: none;
}

.related-item-thumb { height: 100px; overflow: hidden; }

.related-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.related-item:hover .related-item-thumb img { transform: scale(1.05); }

.related-item-title {
    padding: 10px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    font-family: 'Archivo', sans-serif;
}

/* === PAGE ARTICLE === */
.page-article {
    background: linear-gradient(145deg, #222, #1A1A1A);
    border: 1px solid rgba(230, 81, 0, 0.15);
    border-radius: 15px;
    padding: 30px;
}

.page-title {
    font-size: 28px;
    color: #fff;
    margin-bottom: 20px;
    font-family: 'Archivo', sans-serif;
}

.page-featured-img { margin-bottom: 20px; border-radius: 12px; overflow: hidden; }
.page-content { font-size: 16px; line-height: 1.8; color: #D0D0D0; }
.page-content h2 { color: #E65100; margin: 25px 0 15px; }
.page-content h3 { color: #FF8F00; margin: 20px 0 10px; }
.page-content p { margin-bottom: 15px; }
.page-content ul, .page-content ol { padding-left: 25px; margin-bottom: 15px; }
.page-content a { color: #E65100; text-decoration: underline; }

/* === NO POSTS === */
.no-posts {
    text-align: center;
    padding: 60px 20px;
    color: #888;
    font-size: 16px;
    grid-column: 1 / -1;
}

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

.error-scooter { margin-bottom: 20px; }

.error-scooter-icon i {
    font-size: 80px;
    color: #E65100;
    animation: scooterZoom 4s ease-in-out infinite;
}

.error-code {
    font-size: 120px;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    color: #E65100;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(230, 81, 0, 0.3);
}

.error-title {
    font-size: 24px;
    color: #fff;
    margin-bottom: 15px;
    font-family: 'Archivo', sans-serif;
}

.error-desc {
    max-width: 500px;
    margin: 0 auto 25px;
    color: #888;
    font-size: 15px;
    line-height: 1.7;
}

/* === FOOTER === */
.site-footer {
    background: linear-gradient(180deg, #111 0%, #0A0A0A 100%);
    border-top: 2px solid #E65100;
    padding: 50px 0 30px;
    margin-top: 40px;
}

.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: 45px; }

.footer-brand-text {
    font-size: 13px;
    color: #888;
    line-height: 1.7;
    margin-bottom: 15px;
}

.footer-18plus {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #E65100;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-bottom: 15px;
    font-family: 'Archivo', sans-serif;
}

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

.footer-social-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(230, 81, 0, 0.1);
    border: 1px solid rgba(230, 81, 0, 0.3);
    border-radius: 50%;
    color: #E65100;
    font-size: 14px;
    transition: all 0.3s;
}

.footer-social-links a:hover { background: #E65100; color: #fff; text-shadow: none; }

.footer-col h4 {
    font-size: 15px;
    color: #E65100;
    margin-bottom: 15px;
    font-family: 'Archivo', sans-serif;
    letter-spacing: 0.5px;
}

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

.footer-col ul li a {
    color: #888;
    font-size: 13px;
    transition: all 0.3s;
}

.footer-col ul li a:hover { color: #E65100; padding-left: 5px; text-shadow: none; }

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

.footer-license-bar h4 {
    font-size: 14px;
    color: #E65100;
    margin-bottom: 15px;
    font-family: 'Archivo', sans-serif;
}

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

.license-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #888;
    font-size: 13px;
}

.license-item i { color: #2E7D32; font-size: 18px; }

.footer-bottom { text-align: center; }
.footer-copyright { font-size: 13px; color: #666; }

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

.sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #E65100, #FF8F00);
    color: #fff !important;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s;
    position: relative;
    text-shadow: none !important;
    box-shadow: 0 3px 10px rgba(230, 81, 0, 0.3);
}

.sidebar-btn:hover { transform: scale(1.1); box-shadow: 0 5px 20px rgba(230, 81, 0, 0.5); }

.sidebar-btn-facebook { background: linear-gradient(135deg, #1877F2, #42A5F5) !important; }
.sidebar-btn-telegram { background: linear-gradient(135deg, #0088CC, #29B6F6) !important; }

.sidebar-label { display: none; }

.sidebar-btn[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 55px;
    top: 50%;
    transform: translateY(-50%);
    background: #1A1A1A;
    color: #E65100;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    border: 1px solid rgba(230, 81, 0, 0.3);
}

/* === SCROLL ANIMATIONS === */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in-up.visible { opacity: 1; transform: translateY(0); }

/* === UTILITIES === */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.p-20 { padding: 20px; }

/* === PHO STEAM DECORATIVE ELEMENTS === */
.pho-steam-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: phoSteam 4s ease-in-out infinite;
    pointer-events: none;
}

.pho-steam-particle:nth-child(2) { animation-delay: 0.5s; left: 20%; }
.pho-steam-particle:nth-child(3) { animation-delay: 1s; left: 40%; }
.pho-steam-particle:nth-child(4) { animation-delay: 1.5s; left: 60%; }
.pho-steam-particle:nth-child(5) { animation-delay: 2s; left: 80%; }

/* === SCOOTER ZOOM TRAIL === */
.scooter-zoom-trail {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #E65100, #2E7D32, transparent);
    bottom: 30px;
    left: 0;
    opacity: 0.3;
    animation: saigonPulse 3s infinite;
}

/* === NEON BORDER GLOW === */
.neon-border {
    border: 1px solid rgba(230, 81, 0, 0.3);
    animation: saigonPulse 4s infinite;
}

.neon-border-green {
    border: 1px solid rgba(46, 125, 50, 0.3);
    animation: saigonPulse 4s infinite;
    animation-delay: 2s;
}

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

.article-content table th,
.article-content table td {
    padding: 12px 15px;
    border: 1px solid rgba(230, 81, 0, 0.2);
    text-align: left;
}

.article-content table th {
    background: rgba(230, 81, 0, 0.1);
    color: #E65100;
    font-weight: 600;
    font-family: 'Archivo', sans-serif;
}

.article-content table tr:nth-child(even) {
    background: rgba(230, 81, 0, 0.03);
}

/* === FORM STYLES === */
.article-content input,
.article-content textarea,
.article-content select {
    width: 100%;
    padding: 10px 15px;
    background: #222;
    border: 1px solid rgba(230, 81, 0, 0.2);
    border-radius: 8px;
    color: #E8E8E8;
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 14px;
    margin-bottom: 10px;
    transition: border-color 0.3s;
}

.article-content input:focus,
.article-content textarea:focus,
.article-content select:focus {
    outline: none;
    border-color: #E65100;
}

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #1A1A1A; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #E65100, #2E7D32); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #FF8F00; }

/* === SELECTION === */
::selection { background: #E65100; color: #fff; }
::-moz-selection { background: #E65100; color: #fff; }

/* === ADDITIONAL HOVER EFFECTS === */
.footer-col ul li {
    transition: transform 0.3s;
}

.footer-col ul li:hover {
    transform: translateX(3px);
}

.saigon-stat-card:hover {
    transform: translateY(-5px);
    border-color: #FF8F00;
}

.pho-grid-node:active {
    transform: scale(0.97);
}

.street-star-game-card:active {
    transform: scale(0.98);
}

/* === LOADING SHIMMER === */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.loading-shimmer {
    background: linear-gradient(90deg, #222 25%, #333 50%, #222 75%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
    border-radius: 8px;
}

/* === GRADIENT TEXT === */
.gradient-text-orange {
    background: linear-gradient(135deg, #E65100, #FF8F00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-green {
    background: linear-gradient(135deg, #2E7D32, #4CAF50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-saigon {
    background: linear-gradient(135deg, #E65100, #2E7D32);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === GLASSMORPHISM CARD === */
.glass-card {
    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(230, 81, 0, 0.15);
    border-radius: 15px;
}

/* === TOOLTIP === */
.saigon-tooltip {
    position: relative;
}

.saigon-tooltip::before {
    content: attr(data-tip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #1A1A1A;
    color: #E65100;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    border: 1px solid rgba(230, 81, 0, 0.3);
}

.saigon-tooltip:hover::before {
    opacity: 1;
}

/* === DIVIDER === */
.saigon-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #E65100, #2E7D32, transparent);
    margin: 30px 0;
}

.saigon-divider-thick {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #E65100, #2E7D32, transparent);
    margin: 40px 0;
    border-radius: 3px;
}

/* === BADGE === */
.saigon-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.saigon-badge-orange { background: #E65100; color: #fff; }
.saigon-badge-green { background: #2E7D32; color: #fff; }
.saigon-badge-outline {
    background: transparent;
    border: 1px solid #E65100;
    color: #E65100;
}

/* === ADDITIONAL GRID VARIATIONS === */
.grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

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

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

/* === ICON CIRCLE === */
.icon-circle {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
}

.icon-circle-orange {
    background: rgba(230, 81, 0, 0.15);
    color: #E65100;
    border: 1px solid rgba(230, 81, 0, 0.3);
}

.icon-circle-green {
    background: rgba(46, 125, 50, 0.15);
    color: #2E7D32;
    border: 1px solid rgba(46, 125, 50, 0.3);
}

/* === COUNTER ANIMATION PLACEHOLDER === */
.counter-animated {
    font-variant-numeric: tabular-nums;
}

/* === HORIZONTAL SCROLL SECTION === */
.hscroll-section {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 10px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.hscroll-section > * {
    scroll-snap-align: start;
    flex-shrink: 0;
}

.hscroll-section::-webkit-scrollbar {
    height: 4px;
}

.hscroll-section::-webkit-scrollbar-thumb {
    background: #E65100;
    border-radius: 4px;
}

/* === ACCESSIBILITY === */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

:focus-visible {
    outline: 2px solid #E65100;
    outline-offset: 2px;
}

/* === PRINT STYLES === */
@media print {
    .site-header,
    .floating-sidebar,
    .site-footer,
    .notification-bar,
    .announcement-modal {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }

    .article-content {
        color: #000;
    }
}
