/* ==========================================================================
   91win88 Core Design System & Stylesheet
   Target Market: Malaysia (SEO & Ads Optimized)
   ========================================================================== */

/* Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    /* Color Palette */
    --bg-primary: #0a0a0c;
    --bg-secondary: #121217;
    --bg-card: rgba(28, 28, 36, 0.7);
    --bg-card-hover: rgba(40, 40, 52, 0.85);
    
    --primary-gold: #f3c256;
    --primary-gold-dark: #cba03e;
    --gold-gradient: linear-gradient(135deg, #f9e295 0%, #d4af37 50%, #aa8212 100%);
    --gold-gradient-hover: linear-gradient(135deg, #ffffff 0%, #e5c158 50%, #c19928 100%);
    
    --text-white: #ffffff;
    --text-muted: #9fa0b1;
    --text-gold: #f5d47a;
    
    --status-online: #2ecc71;
    --status-checking: #f1c40f;
    --status-offline: #e74c3c;
    
    --border-color: rgba(212, 175, 55, 0.2);
    --border-color-hover: rgba(212, 175, 55, 0.5);
    
    --shadow-gold: 0 8px 32px 0 rgba(212, 175, 55, 0.15);
    --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.5);
    
    /* Layout Constants */
    --header-height: 80px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
}

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

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

body {
    background-color: var(--bg-primary);
    color: var(--text-white);
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 48px auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--gold-gradient);
    color: #000000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: var(--gold-gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary-gold);
    border: 1px solid var(--primary-gold);
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--text-white);
    border-color: var(--text-white);
    transform: translateY(-2px);
}

/* Glassmorphism Card Style */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 30px;
    box-shadow: var(--shadow-dark);
    transition: all 0.3s ease;
}

.glass-card:hover {
    border-color: var(--border-color-hover);
    background: var(--bg-card-hover);
}

/* Header & Navigation */
.header {
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s;
}

.header.scrolled {
    background: rgba(10, 10, 12, 0.95);
    height: 70px;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo span {
    color: var(--primary-gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-gold);
}

.right-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-selector {
    position: relative;
    cursor: pointer;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    padding: 6px 12px;
    border-radius: var(--border-radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-dark);
    display: none;
    min-width: 120px;
    z-index: 100;
    overflow: hidden;
}

.lang-dropdown.active {
    display: block;
}

.lang-option {
    padding: 10px 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: all 0.2s;
}

.lang-option:hover {
    background: rgba(212, 175, 55, 0.15);
    color: var(--primary-gold);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 80px;
    background: radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.08) 0%, rgba(10, 10, 12, 1) 70%);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 36px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

/* Mirror Links Widget */
.mirror-widget {
    background: rgba(20, 20, 25, 0.75);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 24px;
    box-shadow: var(--shadow-dark);
}

.widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 12px;
}

.widget-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.widget-title span {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--status-online);
    box-shadow: 0 0 8px var(--status-online);
}

.widget-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.mirror-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mirror-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-sm);
    padding: 12px 16px;
    transition: all 0.2s;
}

.mirror-item:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
}

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

.mirror-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.mirror-url {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.mirror-status {
    display: flex;
    align-items: center;
    gap: 12px;
}

.latency {
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
}

.latency.fast { color: var(--status-online); }
.latency.checking { color: var(--status-checking); }
.latency.slow { color: var(--status-offline); }

.mirror-btn {
    padding: 6px 14px;
    font-size: 0.85rem;
    border-radius: 4px;
}

/* Feature Badges */
.feature-badges {
    display: flex;
    gap: 24px;
    margin-top: 30px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.badge-item i {
    color: var(--primary-gold);
    font-size: 1.1rem;
}

/* Highlights Grid */
.highlights {
    padding: 80px 0;
    background: var(--bg-secondary);
}

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

.highlight-card {
    text-align: center;
    padding: 30px 20px;
}

.highlight-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
    display: inline-block;
}

.highlight-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.highlight-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Games Section */
.games {
    padding: 80px 0;
}

.games-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    padding: 10px 24px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn.active, .tab-btn:hover {
    background: var(--gold-gradient);
    color: #000;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

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

.game-card {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    height: 380px;
    box-shadow: var(--shadow-dark);
}

.game-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.7);
}

.game-card:hover .game-img {
    transform: scale(1.08);
}

.game-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(10, 10, 12, 1) 0%, rgba(10, 10, 12, 0.8) 50%, rgba(10, 10, 12, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 60%;
}

.game-tag {
    align-self: flex-start;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-gold);
    border: 1px solid var(--primary-gold);
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.game-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.game-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.game-providers {
    display: flex;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--primary-gold);
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.game-providers span {
    background: rgba(212, 175, 55, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
}

/* SEO Content Section */
.seo-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.seo-content {
    max-width: 900px;
    margin: 0 auto;
}

.seo-content h2, .seo-content h3 {
    color: var(--text-gold);
    margin-top: 30px;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.seo-content h2 { font-size: 2rem; }
.seo-content h3 { font-size: 1.4rem; }

.seo-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.seo-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.seo-content li {
    margin-bottom: 8px;
    list-style-type: square;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-sm);
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.2);
}

.faq-question {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--primary-gold);
}

.faq-question i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--border-color);
}

.faq-item.active .faq-question {
    color: var(--primary-gold);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    padding: 0 24px 24px 24px;
    max-height: 500px; /* arbitrary height to slide down */
}

/* Blog List Section */
.blog-section {
    padding: 80px 0;
}

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

.blog-card {
    background: rgba(20, 20, 25, 0.6);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card-img {
    height: 200px;
    overflow: hidden;
}

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

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

.blog-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    gap: 16px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.blog-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-title:hover {
    color: var(--primary-gold);
}

.blog-excerpt {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-readmore {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-readmore:hover {
    gap: 10px;
}

/* Footer Section */
.footer {
    background: #060608;
    padding: 80px 0 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

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

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    transition: all 0.3s;
}

.social-btn:hover {
    background: var(--gold-gradient);
    color: #000;
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-gold);
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.footer-contact-item i {
    color: var(--primary-gold);
}

/* Partner Trust Logos */
.partner-logos {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.partner-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
}

.logo-row {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.logo-row svg, .logo-row img {
    height: 30px;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.logo-row svg:hover, .logo-row img:hover {
    opacity: 1;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 20px;
}

/* Mobile Navigation Drawer */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100%;
    background: var(--bg-secondary);
    z-index: 1100;
    padding: 40px 30px;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.8);
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-nav-close {
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.8rem;
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
}

/* Mobile Sticky Bottom CTA Bar */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(18, 18, 23, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-color);
    padding: 12px 16px;
    z-index: 999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
}

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

/* Blog Article Layout */
.article-container {
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 80px;
}

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

.article-category {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: var(--primary-gold);
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.article-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.article-featured-img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius-md);
    margin-bottom: 40px;
    border: 1px solid var(--border-color);
}

.article-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
}

.article-body {
    font-size: 1.05rem;
    line-height: 1.8;
}

.article-body p {
    margin-bottom: 24px;
    color: var(--text-muted);
}

.article-body h2 {
    color: var(--text-gold);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
}

.article-body h3 {
    color: var(--text-white);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.article-body ul, .article-body ol {
    margin-left: 24px;
    margin-bottom: 24px;
    color: var(--text-muted);
}

.article-body li {
    margin-bottom: 10px;
}

.article-body blockquote {
    border-left: 4px solid var(--primary-gold);
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.02);
    padding: 20px;
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.sidebar-widget {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 24px;
}

.sidebar-widget h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 10px;
    color: var(--text-gold);
}

.cta-widget {
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(212, 175, 55, 0.1) 100%);
    border: 1px solid var(--border-color-hover);
    text-align: center;
    padding: 32px 24px;
}

.cta-widget h4 {
    border: none;
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.cta-widget p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* Social Share Links inside articles */
.share-links {
    display: flex;
    gap: 12px;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    align-items: center;
}

.share-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* Live Chat / Help Bubble floating widget */
.float-chat-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 5px 25px rgba(212, 175, 55, 0.4);
    z-index: 998;
    transition: all 0.3s;
}

.float-chat-btn:hover {
    transform: scale(1.1) rotate(15deg);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero {
        padding-top: calc(var(--header-height) + 40px);
        padding-bottom: 60px;
        text-align: center;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .feature-badges {
        justify-content: center;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .article-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 70px; /* space for mobile sticky bar */
    }
    
    .header {
        height: 70px;
    }
    
    .nav-links, .right-controls .btn {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .partner-logos {
        flex-direction: column;
        text-align: center;
    }
    
    .logo-row {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column-reverse;
        text-align: center;
    }
    
    .mobile-sticky-bar {
        display: block;
    }
    
    .article-title {
        font-size: 2.2rem;
    }
    
    .float-chat-btn {
        bottom: 90px; /* raise above the mobile sticky bar */
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-ctas .btn {
        width: 100%;
    }
    
    .feature-badges {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}
