/*
Theme Name: RAD Casino
Theme URI: https://rad.cn.com
Author: RAD Casino Team
Description: RAD Casino - Nhà cái uy tín 2026
Version: 3.0.0
Text Domain: rad-casino
*/

/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { 
    font-family: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0a0a0a; 
    color: #ffffff; 
    line-height: 1.6; 
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: all 0.3s ease; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { 
    font-family: 'Playfair Display', Georgia, serif; 
    font-weight: 700; 
    line-height: 1.2; 
}

/* ========== VARIABLES (as classes) ========== */
.text-gold { color: #d4af37; }
.text-red { color: #c41e3a; }
.text-jade { color: #00a86b; }

/* ========== CONTAINER ========== */
.container { 
    max-width: 1280px; 
    margin: 0 auto; 
    padding: 0 20px; 
    position: relative; 
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}
.btn-gold {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    color: #0a0a0a;
    font-weight: 700;
}
.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
}
.btn-red {
    background: linear-gradient(135deg, #c41e3a, #8b0000);
    color: #fff;
}
.btn-outline {
    background: transparent;
    border: 2px solid #d4af37;
    color: #d4af37;
}
.btn-outline:hover {
    background: #d4af37;
    color: #0a0a0a;
}
.btn-lg { padding: 18px 36px; font-size: 1.1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }
.btn-glow { animation: btnGlow 2s ease-in-out infinite; }
@keyframes btnGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.4); }
    50% { box-shadow: 0 0 40px rgba(212, 175, 55, 0.8); }
}

/* ========== HEADER ========== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}
.site-header.scrolled {
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}
.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.site-logo img { height: 45px; width: auto; }
.site-logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}
.site-logo-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 700;
}
.site-logo-text span:first-child { color: #d4af37; }
.site-logo-text span:last-child { color: #fff; }

.main-nav { display: flex; gap: 5px; }
.main-nav a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 12px;
    position: relative;
}
.main-nav a:hover {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
}
.main-nav a.active { color: #d4af37; }

.header-actions { display: flex; align-items: center; gap: 12px; }
.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 1.5rem;
    align-items: center;
    justify-content: center;
}

/* ========== TOP BANNER ========== */
.rad-top-banner {
    padding: 10px 20px;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    background: #c41e3a;
}
.rad-top-banner a { color: #fff; }
.rad-top-banner .close-banner {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
}

/* ========== HERO SECTION ========== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(212, 175, 55, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(196, 30, 58, 0.15) 0%, transparent 50%),
        linear-gradient(180deg, #1a1a2e 0%, #0a0a0a 100%);
    z-index: 0;
}
.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 2;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 10px 20px;
    border-radius: 9999px;
    font-size: 0.9rem;
    color: #d4af37;
    margin-bottom: 30px;
    animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
}
.pulse-dot {
    width: 10px;
    height: 10px;
    background: #00a86b;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}
.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 25px;
    text-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}
.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 35px;
    line-height: 1.8;
}
.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}
.hero-stats {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}
.stat-item { text-align: left; }
.stat-value {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4af37;
}
.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 5px;
}

/* Hero Visual */
.hero-visual {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}
.hero-cards {
    display: flex;
    gap: 25px;
    perspective: 1000px;
}
.hero-card {
    width: 240px;
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.95), rgba(20, 20, 40, 0.98));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 25px;
    backdrop-filter: blur(10px);
    animation: cardFloat 6s ease-in-out infinite;
}
.hero-card:nth-child(2) {
    margin-top: 60px;
    animation-delay: -3s;
}
@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-25px); }
}
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
.card-badge {
    background: linear-gradient(135deg, #c41e3a, #8b0000);
    padding: 5px 12px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
}
.card-visual {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    margin-bottom: 20px;
}
.card-footer {
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.card-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.card-value {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    color: #d4af37;
    margin-top: 5px;
}

/* ========== SECTIONS ========== */
.section {
    padding: 100px 0;
    position: relative;
}
.section-dark {
    background: linear-gradient(180deg, #1a1a2e 0%, #0a0a0a 100%);
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 10px 24px;
    border-radius: 9999px;
    font-size: 0.9rem;
    color: #d4af37;
    margin-bottom: 20px;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    color: #fff;
}
.section-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 700px;
    margin: 0 auto;
}
.section-cta {
    text-align: center;
    margin-top: 50px;
}

/* ========== TRUST SECTION ========== */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}
.trust-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    transform: scaleX(0);
    transition: all 0.3s ease;
}
.trust-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.trust-card:hover::before { transform: scaleX(1); }
.trust-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}
.trust-card h3 {
    font-size: 1.1rem;
    color: #d4af37;
    margin-bottom: 10px;
    font-family: 'Be Vietnam Pro', sans-serif;
}
.trust-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
}

/* Experience Banner */
.exp-banner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(196, 30, 58, 0.1));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 50px;
    flex-wrap: wrap;
    gap: 30px;
}
.exp-stat { text-align: center; }
.exp-number {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    font-weight: 700;
    color: #d4af37;
}
.exp-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 5px;
}

/* ========== GAMES SECTION ========== */
.provider-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}
.provider-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    padding: 12px 25px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    transition: all 0.3s ease;
}
.provider-badge:hover {
    border-color: #d4af37;
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.game-card {
    background: #1a1a2e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.game-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.game-image {
    height: 200px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    position: relative;
}
.game-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #c41e3a, #8b0000);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
}
.game-content { padding: 25px; }
.game-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: 'Be Vietnam Pro', sans-serif;
    color: #fff;
}
.game-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 15px;
    line-height: 1.6;
}
.game-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}
.game-players {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #00a86b;
}
.game-jackpot {
    color: #d4af37;
    font-weight: 700;
    font-size: 1rem;
}

/* ========== COMPARISON TABLE ========== */
.comparison-table-wrapper {
    overflow-x: auto;
    margin: 0 -20px;
    padding: 0 20px;
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #1a1a2e;
    border-radius: 20px;
    overflow: hidden;
}
.comparison-table th,
.comparison-table td {
    padding: 18px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.comparison-table th {
    background: #141414;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
    font-size: 0.9rem;
}
.comparison-table th.highlight {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    color: #0a0a0a;
}
.comparison-table td { color: rgba(255, 255, 255, 0.75); }
.comparison-table td.highlight {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    font-weight: 600;
}
.comparison-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}
.comparison-note {
    text-align: center;
    margin-top: 25px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ========== FEATURES GRID ========== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}
.feature-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-8px);
    background: rgba(212, 175, 55, 0.05);
}
.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: block;
}
.feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    font-family: 'Be Vietnam Pro', sans-serif;
    color: #fff;
}
.feature-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

/* ========== PROMO SECTION ========== */
.promo-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(196, 30, 58, 0.15));
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}
.promo-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}
.promo-text { flex: 1; }
.promo-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    color: #fff;
}
.promo-text p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 30px;
}
.promo-bonus {
    text-align: center;
    padding: 50px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    border: 2px solid #d4af37;
}
.bonus-amount {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 5rem;
    font-weight: 800;
    color: #d4af37;
    text-shadow: 0 0 50px rgba(212, 175, 55, 0.5);
    line-height: 1;
}
.bonus-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 10px;
}

/* ========== CATEGORIES ========== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}
.category-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px 20px;
    text-align: center;
    transition: all 0.3s ease;
    display: block;
}
.category-card:hover {
    border-color: #d4af37;
    transform: translateY(-8px);
    background: rgba(212, 175, 55, 0.08);
}
.cat-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}
.category-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-family: 'Be Vietnam Pro', sans-serif;
    color: #fff;
}
.category-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 15px;
}
.cat-btn {
    color: #d4af37;
    font-size: 0.9rem;
    font-weight: 600;
}

/* ========== TESTIMONIALS ========== */
.rating-overview {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}
.rating-stars {
    font-size: 2.5rem;
    letter-spacing: 8px;
    margin-bottom: 15px;
}
.rating-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.75);
}
.rating-text span {
    color: #d4af37;
    font-weight: 700;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.3s ease;
}
.testimonial-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
}
.testimonial-rating {
    margin-bottom: 20px;
    font-size: 1.3rem;
}
.testimonial-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}
.author-avatar {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: #0a0a0a;
}
.author-info h4 {
    font-size: 1.05rem;
    margin-bottom: 5px;
    font-family: 'Be Vietnam Pro', sans-serif;
    color: #fff;
}
.author-info span {
    font-size: 0.85rem;
    color: #d4af37;
}

/* ========== PAYMENT ========== */
.payment-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
.payment-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 18px 30px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    transition: all 0.3s ease;
}
.payment-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.1);
}

/* ========== FAQ ========== */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}
.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item:hover { border-color: rgba(212, 175, 55, 0.3); }
.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}
.faq-question:hover { background: rgba(212, 175, 55, 0.05); }
.faq-question h3 {
    font-size: 1.05rem;
    color: #d4af37;
    font-weight: 500;
    flex: 1;
    padding-right: 20px;
    font-family: 'Be Vietnam Pro', sans-serif;
}
.faq-toggle {
    font-size: 1.8rem;
    color: #d4af37;
    transition: all 0.3s ease;
    line-height: 1;
}
.faq-answer {
    padding: 0 30px 25px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    display: none;
}
.faq-item.active .faq-answer { display: block; }
.faq-item.active .faq-toggle { transform: rotate(45deg); }

/* ========== FOOTER ========== */
.site-footer {
    background: #141414;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 80px 0 30px;
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}
.footer-brand p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 25px 0;
    line-height: 1.8;
}
.social-links {
    display: flex;
    gap: 12px;
}
.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}
.social-link:hover {
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
}
.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #fff;
    font-family: 'Be Vietnam Pro', sans-serif;
}
.footer-menu li { margin-bottom: 15px; }
.footer-menu a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}
.footer-menu a:hover { color: #d4af37; }

.footer-trust {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
}
.footer-trust h4 {
    margin-bottom: 25px;
    color: #fff;
}
.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}
.trust-badge-item {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 12px 25px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
}

.responsible-gaming {
    background: rgba(196, 30, 58, 0.15);
    border: 1px solid rgba(196, 30, 58, 0.3);
    border-radius: 12px;
    padding: 20px 25px;
    text-align: center;
    margin-bottom: 40px;
}
.responsible-gaming p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
}
.responsible-gaming strong { color: #c41e3a; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}
.footer-badges {
    display: flex;
    gap: 15px;
}
.footer-badge {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 18px;
    border-radius: 8px;
}

/* ========== MOBILE MENU ========== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9998;
    display: none;
}
.mobile-menu-overlay.active { display: block; }
.mobile-menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 100%;
    background: #1a1a2e;
    padding: 80px 25px 25px;
    overflow-y: auto;
}
.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
}
.mobile-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 0;
    color: #fff;
    font-size: 1.05rem;
}
.mobile-nav a:hover { color: #d4af37; }
.mobile-menu-btn {
    display: block;
    width: 100%;
    margin-top: 25px;
    padding: 18px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    border-radius: 12px;
    color: #0a0a0a;
    font-size: 1.05rem;
    font-weight: 700;
    text-align: center;
}

/* ========== PAGES ========== */
.page-header {
    padding: 150px 0 80px;
    background: linear-gradient(180deg, #1a1a2e 0%, #0a0a0a 100%);
    text-align: center;
    position: relative;
}
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}
.page-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    position: relative;
    color: #fff;
}
.page-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.content-area { padding: 80px 0; }
.entry-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.75);
}
.entry-content h2,
.entry-content h3,
.entry-content h4 {
    color: #fff;
    margin: 40px 0 20px;
}
.entry-content p { margin-bottom: 20px; }
.entry-content a { color: #d4af37; }
.entry-content a:hover { text-decoration: underline; }
.entry-content ul,
.entry-content ol {
    margin: 20px 0;
    padding-left: 25px;
}
.entry-content li { margin-bottom: 10px; }
.entry-content img {
    border-radius: 20px;
    margin: 30px 0;
}
.entry-content blockquote {
    background: rgba(212, 175, 55, 0.1);
    border-left: 4px solid #d4af37;
    padding: 25px 30px;
    margin: 30px 0;
    font-style: italic;
}

/* SEO Hidden */
.seo-keywords {
    position: absolute;
    left: -9999px;
    height: 1px;
    overflow: hidden;
}

/* WordPress Required */
.alignleft { float: left; margin-right: 20px; }
.alignright { float: right; margin-left: 20px; }
.aligncenter { display: block; margin: 0 auto; }
.screen-reader-text { 
    clip: rect(1px, 1px, 1px, 1px); 
    position: absolute; 
    height: 1px; 
    width: 1px; 
    overflow: hidden; 
}

/* Archive Grid */
.archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.archive-card {
    background: #1a1a2e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.archive-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
}
.archive-thumb {
    height: 200px;
    background: #141414;
}
.archive-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.archive-content { padding: 25px; }
.archive-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-family: 'Be Vietnam Pro', sans-serif;
}
.archive-title a { color: #fff; }
.archive-title a:hover { color: #d4af37; }
.archive-excerpt {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 15px;
}
.archive-meta {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}
.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.75);
}
.page-numbers.current,
.page-numbers:hover {
    background: #d4af37;
    color: #0a0a0a;
    border-color: #d4af37;
}

/* 404 Page */
.error-404 {
    text-align: center;
    padding: 150px 20px;
}
.error-404 h1 {
    font-size: 8rem;
    color: #d4af37;
    margin-bottom: 20px;
}
.error-404 p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 30px;
}

/* Search Form */
.search-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}
.search-field {
    flex: 1;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px 0 0 12px;
    color: #fff;
    font-size: 1rem;
}
.search-submit {
    padding: 15px 30px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    border: none;
    border-radius: 0 12px 12px 0;
    color: #0a0a0a;
    font-weight: 600;
    cursor: pointer;
}

/* Comments */
.comments-area {
    max-width: 900px;
    margin: 0 auto;
    padding-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.comment {
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
}
.comment-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.comment-author img { border-radius: 50%; }
.comment-author .fn {
    font-weight: 600;
    color: #d4af37;
}
.comment-content {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
}
.comment-reply-link {
    color: #d4af37;
    font-size: 0.9rem;
}

/* Sidebar */
.sidebar .widget {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 25px;
}
.sidebar .widget-title {
    font-size: 1.1rem;
    color: #d4af37;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Be Vietnam Pro', sans-serif;
}
.sidebar ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.sidebar ul li:last-child { border-bottom: none; }
.sidebar a { color: rgba(255, 255, 255, 0.75); }
.sidebar a:hover { color: #d4af37; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
    .hero-visual { display: none; }
    .hero-content { max-width: 100%; text-align: center; }
    .hero-stats { justify-content: center; }
    .hero-actions { justify-content: center; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .games-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .category-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
    .main-nav { display: none; }
    .menu-toggle { display: flex; }
    .footer-top { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .promo-content { flex-direction: column; text-align: center; }
    .archive-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .section { padding: 70px 0; }
    .trust-grid,
    .features-grid { grid-template-columns: 1fr; }
    .games-grid { grid-template-columns: 1fr; }
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr; text-align: center; }
    .social-links { justify-content: center; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .exp-banner { padding: 30px 20px; }
    .exp-number { font-size: 2.5rem; }
    .bonus-amount { font-size: 4rem; }
    .archive-grid { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
    .site-header { padding: 10px 0; }
    .header-actions .btn-outline { display: none; }
    .hero-section { padding: 120px 0 80px; }
    .hero-title { font-size: 2.2rem; }
    .hero-stats { gap: 30px; }
    .stat-value { font-size: 2rem; }
    .category-grid { grid-template-columns: 1fr; }
}

/* ========== SINGLE POST STYLES ========== */
.post-category {
    margin-bottom: 15px;
}
.post-category a {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
    padding: 8px 20px;
    border-radius: 9999px;
    font-size: 0.9rem;
    font-weight: 500;
}
.post-meta-info {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.featured-image {
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
}
.featured-image img {
    width: 100%;
    height: auto;
}

.post-cta {
    text-align: center;
    margin: 50px 0;
    padding: 40px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(196, 30, 58, 0.1));
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Post Navigation */
.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 50px 0;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.nav-prev, .nav-next {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
}
.nav-prev:hover, .nav-next:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.05);
}
.nav-next { text-align: right; }
.nav-label {
    display: block;
    font-size: 0.85rem;
    color: #d4af37;
    margin-bottom: 10px;
}
.nav-prev a, .nav-next a {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
}
.nav-next a { justify-content: flex-end; }
.nav-thumb {
    width: 80px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}
.nav-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.nav-title {
    font-size: 1rem;
    line-height: 1.4;
}

/* Related Posts */
.related-posts {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.related-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #fff;
    font-family: 'Be Vietnam Pro', sans-serif;
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.related-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
}
.related-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
}
.related-thumb {
    height: 150px;
    overflow: hidden;
}
.related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.related-card:hover .related-thumb img {
    transform: scale(1.05);
}
.related-content {
    padding: 15px;
}
.related-content h4 {
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.4;
    font-family: 'Be Vietnam Pro', sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.related-date {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* No Thumbnail */
.no-thumb {
    width: 100%;
    height: 100%;
    min-height: 150px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
}

/* Archive Improvements */
.archive-thumb {
    display: block;
    height: 200px;
    overflow: hidden;
    position: relative;
}
.archive-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.archive-card:hover .archive-thumb img {
    transform: scale(1.05);
}
.archive-cat {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #d4af37, #c41e3a);
    color: #fff;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 600;
}
.read-more {
    color: #d4af37;
    font-weight: 500;
}
.read-more:hover {
    text-decoration: underline;
}

/* Featured Post */
.featured-post {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
}
.featured-thumb {
    display: block;
    height: 100%;
    min-height: 350px;
    overflow: hidden;
    position: relative;
}
.featured-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.featured-content {
    padding: 40px 40px 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.featured-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-family: 'Be Vietnam Pro', sans-serif;
}
.featured-title a {
    color: #fff;
}
.featured-title a:hover {
    color: #d4af37;
}
.featured-excerpt {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.8;
}

.page-count {
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}

.no-posts {
    text-align: center;
    padding: 80px 20px;
}
.no-posts p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 992px) {
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .featured-post {
        grid-template-columns: 1fr;
    }
    .featured-content {
        padding: 30px;
    }
    .post-navigation {
        grid-template-columns: 1fr;
    }
    .nav-next {
        text-align: left;
    }
    .nav-next a {
        justify-content: flex-start;
    }
}

@media (max-width: 576px) {
    .related-grid {
        grid-template-columns: 1fr;
    }
    .post-meta-info {
        flex-direction: column;
        gap: 10px;
    }
}

/* Ẩn hoàn toàn bình luận */
#comments,
.comments-area,
.comment-respond,
#respond,
.comment-form,
#commentform,
.comments-title,
.comment-reply-title,
.nocomments,
.comment-list,
#comment,
.comment-notes,
.comment-form-comment,
.comment-form-author,
.comment-form-email,
.comment-form-url,
.comment-form-cookies-consent,
.form-submit,
.comments-link,
.comment-edit-link,
.reply,
[class*="comment"] {
    display: none !important;
}

/* Featured Image Center */
.featured-image {
    text-align: center;
    margin-bottom: 40px;
}
.featured-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 0 auto;
    display: block;
}

/* Archive/Related Thumbnail Center */
.archive-thumb img,
.related-thumb img,
.nav-thumb img {
    object-fit: cover;
    object-position: center;
}

/* Game card images center */
.game-image {
    display: flex;
    align-items: center;
    justify-content: center;
}
