/* ==========================================================================
   CSS SYSTEM DESIGN - SENSA138 PREMIUM LANDING PAGE
   ========================================================================== */

/* Variables & Theme Setup */
:root {
    --bg-main: #1c2029; /* Slate Gray */
    --bg-sec: #13171e;
    --bg-card: rgba(30, 36, 47, 0.7);
    --border-color: rgba(217, 119, 6, 0.2); /* Muted Copper Border */
    
    --color-primary: #b25e00; /* Muted Copper */
    --color-secondary: #0d9488; /* Teal/Sage */
    --color-accent: #d97706; /* Bronze Amber */
    --color-gold: #f59e0b;
    --color-success: #10b981;
    
    --text-main: #e2e8f0;
    --text-muted: #94a3b8;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset Defaults */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Helper Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(0.75rem, 3vw, 1.5rem);
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-accent) 50%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-highlight {
    color: var(--color-gold);
    font-weight: 600;
}

.text-success {
    color: var(--color-success);
    font-weight: 700;
}

/* Custom Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: #ffffff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(217, 119, 6, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    border-color: rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border-color: var(--color-primary);
}

.btn-outline:hover {
    background: rgba(217, 119, 6, 0.15);
    transform: translateY(-2px);
}

.btn-glow {
    position: relative;
    box-shadow: 0 0 15px rgba(217, 119, 6, 0.4);
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    z-index: -1;
    border-radius: 14px;
    opacity: 0;
    transition: var(--transition);
}

.btn-glow:hover::after {
    opacity: 0.65;
    filter: blur(10px);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
}

/* Header Area styling */
.main-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(6, 3, 18, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

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

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--text-main);
    letter-spacing: -0.5px;
    text-decoration: none;
}

.logo-text span {
    color: var(--color-secondary);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

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

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

.header-actions {
    display: flex;
    gap: 1rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: clamp(4rem, 8vw + 2rem, 8rem) 0 clamp(2rem, 5vw + 1rem, 5rem) 0;
    text-align: center;
    overflow: hidden;
}

.hero-glow-1 {
    position: absolute;
    top: -10%;
    left: 20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.15) 0%, transparent 70%);
    z-index: -1;
    filter: blur(30px);
}

.hero-glow-2 {
    position: absolute;
    bottom: 0;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.12) 0%, transparent 70%);
    z-index: -1;
    filter: blur(30px);
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.25);
    color: var(--color-gold);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 3.5rem;
    line-height: 1.15;
    max-width: 900px;
    margin: 0 auto 1.5rem auto;
    letter-spacing: -1px;
}

.hero-subtitle {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
}

.hero-ctas {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2.5rem;
}

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

.badge-icon {
    width: 20px;
    height: 20px;
    color: var(--color-secondary);
}

/* Sections Setup */
.rtp-section, .about-section, .faq-section {
    padding: clamp(2.5rem, 5vw + 1rem, 5rem) 0;
    position: relative;
}

.rtp-section {
    background-color: var(--bg-sec);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3.5rem auto;
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-muted);
}

/* RTP Live Grid */
.rtp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.rtp-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.rtp-card:hover {
    transform: translateY(-5px);
    border-color: rgba(217, 119, 6, 0.5);
    box-shadow: 0 10px 30px rgba(217, 119, 6, 0.2);
}

.game-img-wrapper {
    position: relative;
    overflow: hidden;
    background: #000;
}

.game-placeholder-svg {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
    object-fit: contain !important;
    background: rgba(0, 0, 0, 0.25) !important;
    border-radius: 12px 12px 0 0 !important;
    transition: var(--transition);
}

.rtp-card:hover .game-placeholder-svg {
    transform: scale(1.05);
}

.provider-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-main);
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.rtp-info {
    padding: 1.5rem;
}

.rtp-info h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.rtp-bar-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    height: 20px;
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.rtp-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-success));
    border-radius: 50px;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.rtp-percentage {
    position: absolute;
    right: 12px;
    font-size: 0.75rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

.status-badge-custom, .rtp-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.65rem;
    border-radius: 50px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: var(--font-heading);
    transition: var(--transition);
}

.rtp-status {
    margin-bottom: 1.25rem;
}

.status-badge-custom:hover, .rtp-status:hover {
    transform: scale(1.05);
}

.status-high {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.35);
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    text-shadow: 0 0 5px rgba(16, 185, 129, 0.3);
}

.status-medium {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.35);
    box-shadow: 0 0 12px rgba(245, 158, 11, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    text-shadow: 0 0 5px rgba(245, 158, 11, 0.3);
}

.status-low {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.35);
    box-shadow: 0 0 12px rgba(239, 68, 68, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    text-shadow: 0 0 5px rgba(239, 68, 68, 0.3);
}

/* About / SEO Content Section */
.about-grid {
    display: block;
    max-width: 860px;
    margin: 0 auto;
}

.badge-outline {
    display: inline-block;
    border: 1px solid var(--border-color);
    padding: 0.3rem 0.85rem;
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--color-secondary);
    font-weight: 600;
    margin-bottom: 1.25rem;
    background: rgba(217, 119, 6, 0.05);
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    line-height: 1.25;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.about-content .lead-text {
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.7;
    text-align: justify;
}

.cta-banner {
    background: linear-gradient(135deg, rgba(30, 36, 47, 0.8) 0%, rgba(217, 119, 6, 0.15) 100%);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-top: 2.5rem;
}

.cta-banner-content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.cta-banner-content p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* SEO Table Container */
.table-wrapper {
    background: var(--bg-card);
    border: 1px solid rgba(13, 148, 136, 0.25);
    border-radius: 16px;
    padding: 1.25rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.table-wrapper:hover {
    border-color: rgba(13, 148, 136, 0.45);
    box-shadow: 0 20px 50px rgba(13, 148, 136, 0.08), inset 0 1px 1px rgba(255, 255, 255, 0.08);
}

.table-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--color-gold);
}

.seo-table {
    width: 100%;
    border-collapse: collapse;
}

.seo-table td {
    padding: 0.85rem 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 0.9rem;
}

.seo-table tr:last-child td {
    border-bottom: none;
}

.seo-table td:first-child {
    color: var(--text-muted);
    width: 40%;
}

.seo-table td:last-child {
    text-align: right;
    width: 60%;
}

/* FAQ Accordion Section */
.faq-section {
    background-color: var(--bg-sec);
    border-top: 1px solid var(--border-color);
}

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

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--border-color);
    box-shadow: 0 5px 15px rgba(217, 119, 6, 0.1);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

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

.faq-icon {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--color-gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 1.5rem 1.25rem 1.5rem;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.95rem;
    border-top: 1px solid rgba(255,255,255,0.04);
    padding-top: 0.75rem;
}

/* Footer Area styling */
.main-footer {
    background: var(--bg-main);
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .logo-text {
    display: inline-block;
    margin-bottom: 1.25rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links h4, .footer-disclaimer h4 {
    font-family: var(--font-heading);
    color: var(--text-main);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

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

.footer-links a:hover {
    color: var(--color-secondary);
}

.footer-disclaimer p {
    color: rgba(160, 156, 176, 0.65);
    font-size: 0.8rem;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.03);
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(160, 156, 176, 0.5);
    font-size: 0.75rem;
}

/* Provider Selection Tabs on RTP Live Page */
.provider-tabs {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.provider-tabs .tab-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.6rem 1.5rem;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    outline: none;
}

.provider-tabs .tab-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    border-color: rgba(217, 119, 6, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.1);
}

.provider-tabs .tab-btn.active {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 5px 20px rgba(217, 119, 6, 0.35);
    font-weight: 800;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.75rem;
    }
    
    .rtp-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 0.85rem !important;
    }
    .rtp-card .rtp-info {
        padding: 0.85rem !important;
    }
    .rtp-card .rtp-info h3 {
        font-size: 0.9rem !important;
        margin-bottom: 0.4rem !important;
    }
    .rtp-bar-container {
        height: 14px !important;
        margin-bottom: 0.4rem !important;
    }
    .rtp-percentage {
        font-size: 0.6rem !important;
    }
    .rtp-status {
        padding: 0.2rem 0.4rem !important;
        font-size: 0.6rem !important;
        margin-bottom: 0.6rem !important;
    }
    .rtp-card .btn-sm {
        padding: 0.4rem 0.6rem !important;
        font-size: 0.72rem !important;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .footer-disclaimer {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* Mobile menu collapsed for simplicity */
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-btn-daftar, .hero-btn-login {
        width: 100%;
        max-width: 300px;
    }
    
    .trust-badges {
        gap: 1.5rem;
    }
    
    .cta-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-disclaimer {
        grid-column: span 1;
    }
}

/* Running Banner / Marquee */
.running-banner {
    background: rgba(12, 9, 32, 0.9);
    border-bottom: 1px solid var(--border-color);
    padding: 0.5rem 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 101;
    font-size: 0.85rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-gold);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.banner-wrapper {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 30s linear infinite;
}

.banner-text {
    display: inline-block;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

@keyframes marquee {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

/* Hero Promo Banner styling */
.hero-promo-banner {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 2.5rem auto;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(217, 119, 6, 0.25);
    overflow: hidden;
    transition: var(--transition);
}

.hero-promo-banner:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(13, 148, 136, 0.35);
}

.promo-banner-svg {
    display: block;
    width: 100%;
    height: auto;
}

/* Unique Split Dashboard Styles */
.dashboard-wrapper {
    position: relative;
    background: var(--bg-main) radial-gradient(circle, rgba(217, 119, 6, 0.04) 0%, transparent 80%);
    padding: 4rem 0;
    overflow: hidden;
}

.dashboard-wrapper::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
    pointer-events: none;
}

.dashboard-grid-layout {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 2.5rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.dashboard-rows-layout {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.25rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.dashboard-rows-layout:hover {
    border-color: rgba(217, 119, 6, 0.4);
    box-shadow: 0 20px 50px rgba(217, 119, 6, 0.08), inset 0 1px 1px rgba(255, 255, 255, 0.08);
}

.dashboard-row-section {
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}

.dashboard-row-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 0.85rem 0;
    width: 100%;
}

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

.row-header h3 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--text-main);
}

.badge-provider {
    font-size: 0.75rem;
    color: var(--color-secondary);
    background: rgba(13, 148, 136, 0.1);
    border: 1px solid rgba(13, 148, 136, 0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    font-weight: 700;
}

/* Vertical Slide layout inside column */
.slider-viewport {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.row-slide-item {
    width: 100%;
    flex-shrink: 0;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.row-showcase-visual {
    position: relative;
    flex: 0 0 20%;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.03);
}

.row-showcase-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.dashboard-row-section:hover .row-showcase-visual img {
    transform: scale(1.03);
}

.row-showcase-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
    gap: 0.35rem;
}

.row-showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.row-showcase-title-area {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    flex: 1;
    min-width: 0;
}

.row-showcase-title-area h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.row-showcase-title-area span {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.row-showcase-desc-area {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.row-showcase-desc-area p {
    display: none;
}

.col-pola-text {
    font-size: 0.7rem;
    color: var(--color-gold);
    font-weight: 600;
    background: rgba(245, 158, 11, 0.05);
    border: 1px solid rgba(245, 158, 11, 0.1);
    padding: 0.25rem 0.4rem;
    border-radius: 4px;
    text-align: center;
}

.row-cta-buttons {
    display: flex;
    gap: 0.4rem;
}

.row-cta-buttons .btn {
    flex: 1;
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    border-radius: 6px;
}

/* Thinner progress bar inside row details for compact look */
.row-showcase-details .rtp-bar-container {
    height: 12px;
    margin-bottom: 0.25rem;
}

.row-showcase-details .rtp-percentage {
    font-size: 0.6rem;
    right: 6px;
}

/* Col Slider controls */
.slider-col-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.75rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-col-arrow {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    cursor: pointer;
    font-size: 0.85rem;
    padding: 0.35rem 0.7rem;
    border-radius: 6px;
    transition: var(--transition);
}

.btn-col-arrow:hover {
    background: var(--color-primary);
    border-color: var(--color-accent);
}

.col-dots {
    display: flex;
    gap: 0.4rem;
}

.slider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active, .slider-dot:hover {
    background: var(--color-accent);
    transform: scale(1.3);
    box-shadow: 0 0 6px var(--color-accent);
}

/* Responsive grid for stacked rows layout */
@media (max-width: 768px) {
    .row-showcase-title-area h4 {
        font-size: 0.95rem;
    }
    .row-cta-buttons {
        gap: 0.25rem;
    }
    .row-cta-buttons .btn {
        padding: 0.3rem 0.5rem;
        font-size: 0.7rem;
        border-radius: 4px;
    }
}

.slider-arrow:hover {
    background: var(--color-primary);
    border-color: var(--color-accent);
    box-shadow: 0 0 10px rgba(217, 119, 6, 0.35);
}

/* Floating Mobile Bottom Navigation Bar */
.mobile-bottom-nav {
    display: none;
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 62px;
        background: rgba(12, 9, 32, 0.95);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-top: 1px solid var(--border-color);
        z-index: 1000;
        justify-content: space-around;
        align-items: center;
        padding: 6px 12px;
        box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.5);
    }

    .mobile-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: var(--text-muted);
        text-decoration: none;
        font-family: var(--font-heading);
        font-size: 0.72rem;
        font-weight: 600;
        gap: 4px;
        transition: var(--transition);
        flex: 1;
    }

    .mobile-nav-item svg {
        width: 20px;
        height: 20px;
        fill: currentColor;
        transition: var(--transition);
    }

    .mobile-nav-item.active, .mobile-nav-item:hover {
        color: var(--color-gold);
    }

    .mobile-nav-item.active svg, .mobile-nav-item:hover svg {
        color: var(--color-gold);
        transform: translateY(-2px);
        filter: drop-shadow(0 0 5px var(--color-gold));
    }

    /* Add padding to body so mobile nav doesn't overlap text/buttons */
    body {
        padding-bottom: 65px !important;
    }
}

/* ==========================================================================
   MOBILE-FRIENDLY & RESPONSIVE DESIGN ENHANCEMENTS
   ========================================================================== */

/* Responsive HTML Promo Banner */
.hero-promo-banner {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 2.5rem auto;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(217, 119, 6, 0.25);
    overflow: hidden;
    transition: var(--transition);
    background: linear-gradient(135deg, rgba(30, 36, 47, 0.6) 0%, rgba(19, 23, 30, 0.8) 100%);
    border: 1px solid var(--border-color);
    padding: 1.75rem 2rem;
    text-align: center;
    position: relative;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 2;
}

.hero-promo-banner:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(13, 148, 136, 0.35);
}

.promo-banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.promo-banner-subtitle {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
}

.promo-banner-title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.15rem;
    color: #ffffff;
}

.promo-banner-badge {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.75rem;
    color: var(--color-secondary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: rgba(13, 148, 136, 0.15);
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    border: 1px solid rgba(13, 148, 136, 0.25);
    margin-top: 0.25rem;
}

/* Responsive headers on small screens */
@media (max-width: 768px) {
    .logo-text {
        font-size: 1.5rem !important;
    }
    .header-actions {
        gap: 0.5rem !important;
    }
    .header-actions .btn {
        padding: 0.5rem 1rem !important;
        font-size: 0.85rem !important;
        border-radius: 8px !important;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.3rem !important;
    }
    .header-actions .btn {
        padding: 0.4rem 0.8rem !important;
        font-size: 0.8rem !important;
    }
    .main-header {
        padding: 0.65rem 0 !important;
    }
}

/* 4-Column Compact RTP Grid layout for mobile (Highly Optimized & Mobile Friendly) */
@media (max-width: 576px) {
    .rtp-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 0.45rem !important;
    }
    .rtp-card {
        position: relative;
        border-radius: 12px !important;
    }
    .rtp-card .rtp-info {
        padding: 0.45rem !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
    .rtp-card .rtp-info h3 {
        font-size: 0.68rem !important;
        margin-bottom: 0.35rem !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        text-align: center;
    }
    .rtp-bar-container {
        height: 10px !important;
        margin-bottom: 0.35rem !important;
        border-radius: 4px !important;
    }
    .rtp-percentage {
        font-size: 0.5rem !important;
        right: 4px !important;
    }
    .rtp-status {
        display: flex !important;
        align-items: center;
        justify-content: center;
        padding: 0.15rem 0.3rem !important;
        font-size: 0.48rem !important;
        margin-bottom: 0 !important;
        border-radius: 4px !important;
        width: 100%;
        min-height: auto !important;
    }
    .rtp-card .btn-sm {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 0;
        z-index: 10;
        margin: 0 !important;
        padding: 0 !important;
        height: auto !important;
        min-height: 0 !important;
        border-radius: 0 !important;
    }
    .provider-badge {
        display: none !important;
    }
    .promo-banner-subtitle {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    .promo-banner-title {
        font-size: 0.95rem;
    }
    .promo-banner-badge {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
    }
    .hero-promo-banner {
        padding: 1.25rem 1rem;
        border-radius: 12px;
        margin-bottom: 1.5rem;
    }
    
    /* Homepage Slider & Panel Optimizations for Mobile */
    .dashboard-rows-layout {
        padding: 0.75rem !important;
        border-radius: 12px !important;
    }
    .row-slide-item {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 0.75rem !important;
    }
    .row-showcase-visual {
        flex: 0 0 auto !important;
        width: 110px !important;
        height: 110px !important;
        border-radius: 10px !important;
        margin: 0 auto !important;
    }
    .row-showcase-details {
        width: 100% !important;
        align-items: center !important;
        gap: 0.4rem !important;
    }
    .row-showcase-header {
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.25rem !important;
        width: 100% !important;
    }
    .row-showcase-title-area {
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
    }
    .row-showcase-title-area h4 {
        text-align: center !important;
        font-size: 1rem !important;
    }
    .row-showcase-header .status-badge-custom {
        align-self: center !important;
        font-size: 0.55rem !important;
        padding: 0.15rem 0.45rem !important;
        border-radius: 5px !important;
        min-height: auto !important;
    }
    .row-showcase-details .rtp-bar-container {
        width: 85% !important;
        height: 12px !important;
        margin: 0.25rem auto !important;
        border-radius: 6px !important;
    }
    .row-showcase-details .rtp-percentage {
        font-size: 0.55rem !important;
        right: 8px !important;
    }
    .row-cta-buttons {
        justify-content: center !important;
        width: 100% !important;
        gap: 0.4rem !important;
        margin-top: 0.15rem !important;
    }
    .row-cta-buttons .btn {
        flex: 0 1 45% !important;
        padding: 0.35rem 0.6rem !important;
        font-size: 0.72rem !important;
        border-radius: 6px !important;
        min-height: auto !important;
    }
    .slider-col-controls {
        margin-top: 0.5rem !important;
        padding-top: 0.35rem !important;
    }
    .btn-col-arrow {
        padding: 0.25rem 0.5rem !important;
        font-size: 0.75rem !important;
    }
    .dashboard-grid-layout {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    /* Center all layouts and alignments precisely on mobile screens (< 576px) */
    .container {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }
    

    .footer-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 2rem !important;
    }
    
    .footer-brand, .footer-links, .footer-disclaimer {
        text-align: center !important;
        align-items: center !important;
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
    }
    
    .footer-links ul {
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .game-detail-card {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 1.5rem !important;
    }
    
    .game-detail-img {
        max-width: 280px !important;
        margin: 0 auto !important;
    }
    
    .game-info-side {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    .game-info-side .badge-outline {
        margin: 0 auto 1.25rem auto !important;
        display: table !important;
    }
    
    .game-info-side .rtp-bar-container {
        width: 100% !important;
        margin: 0.5rem auto 1.5rem auto !important;
    }
    
    .game-info-side > div[style*="display: flex"],
    .game-info-side > div[style*="display:flex"] {
        justify-content: center !important;
        width: 100% !important;
        gap: 0.75rem !important;
    }
    
    .game-info-side > div[style*="display: flex"] .btn,
    .game-info-side > div[style*="display:flex"] .btn {
        flex: 1 !important;
        max-width: 180px !important;
    }
    
    .steps-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 2.5rem !important;
    }
    
    .step-card {
        width: 100% !important;
        max-width: 380px !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        padding: 2.5rem 1.5rem 1.5rem 1.5rem !important;
    }
    
    .step-number {
        left: 50% !important;
        transform: translateX(-50%) !important;
        top: -20px !important;
    }
    
    .rtp-card .rtp-info .rtp-bar-container {
        width: 100% !important;
        align-self: stretch !important;
        margin: 0.25rem 0 0.5rem 0 !important;
    }
    
    .table-title {
        text-align: center !important;
    }
    
    .table-wrapper {
        padding: 0.85rem 0.65rem !important;
        border-radius: 12px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        margin: 0 auto !important;
    }
    
    .seo-table {
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .seo-table td {
        padding: 0.65rem 0.35rem !important;
        font-size: 0.82rem !important;
        word-break: break-word !important;
    }
    
    .seo-table td strong {
        display: inline-block !important;
    }
    
    .seo-table td:first-child {
        width: 40% !important;
        text-align: left !important;
    }
    
    .seo-table td:last-child {
        width: 60% !important;
        text-align: right !important;
    }
    
    .about-content {
        text-align: justify !important;
    }
    
    .about-content .badge-outline {
        margin-left: auto !important;
        margin-right: auto !important;
        display: table !important;
    }
    
    .about-content h2 {
        text-align: center !important;
    }
    
    .about-content .lead-text {
        text-align: justify !important;
    }
    
    .cta-banner {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 1.25rem !important;
        padding: 1.5rem !important;
    }
    
    .cta-banner-content {
        text-align: center !important;
    }
    
    .cta-banner .btn {
        width: 100% !important;
        max-width: 250px !important;
        margin: 0 auto !important;
    }
    
    /* Centering the leak grids on mobile */
    .leak-header {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 0.5rem !important;
    }
    
    .leak-game-title {
        text-align: center !important;
    }
    
    .leak-info-row {
        justify-content: center !important;
        gap: 1.5rem !important;
    }
    
    .leak-card {
        align-items: center !important;
        text-align: center !important;
    }
    
    .leak-card .btn {
        width: 100% !important;
        max-width: 250px !important;
        margin: 0 auto !important;
    }
    
    /* Center FAQ Accordions on Mobile */
    .faq-question {
        text-align: center !important;
        justify-content: center !important;
        gap: 0.75rem !important;
    }
    
    .faq-answer p {
        text-align: center !important;
    }
    
    /* Prevent title cutoffs (Ellipsis override to wrap) */
    .row-showcase-title-area h4 {
        white-space: normal !important;
        word-break: break-word !important;
        text-overflow: clip !important;
        overflow: visible !important;
        line-height: 1.2 !important;
        text-align: center !important;
    }
    
    .rtp-card .rtp-info h3 {
        white-space: normal !important;
        word-break: break-word !important;
        text-overflow: clip !important;
        overflow: visible !important;
        line-height: 1.2 !important;
        text-align: center !important;
    }
    
    /* Box safety sizing */
    .dashboard-grid-layout {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .dashboard-left-panel, .dashboard-right-panel {
        min-width: 0 !important;
        width: 100% !important;
        overflow: hidden !important;
    }

    .dashboard-rows-layout, .hero-promo-banner, .table-wrapper, .game-detail-card, .register-container-box, .login-container-box {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .row-slide-item {
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 0.25rem !important;
    }
    
    /* Horizontal Scrolling Provider Selector Tabs on Mobile */
    .provider-tabs {
        justify-content: flex-start !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        padding: 0.25rem 0.75rem !important;
        margin-left: -0.75rem !important;
        margin-right: -0.75rem !important;
        margin-bottom: 1.5rem !important;
        scrollbar-width: none !important; /* Firefox */
        -ms-overflow-style: none !important;  /* IE/Edge */
    }
    .provider-tabs::-webkit-scrollbar {
        display: none !important; /* Chrome/Safari */
    }
    .provider-tabs .tab-btn {
        flex-shrink: 0 !important;
    }
}

/* Homepage dashboard panel layout ordering and dial scaling on mobile */
@media (max-width: 992px) {
    .dashboard-grid {
        display: flex !important;
        flex-direction: column !important;
    }
    .dashboard-panel-left {
        order: 2 !important; /* Selector at the bottom */
    }
    .dashboard-panel-right {
        order: 1 !important; /* Showcase at the top */
        padding: 1.5rem 1.5rem 4.5rem 1.5rem !important;
    }
    .console-tabs {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 0.5rem !important;
        -webkit-overflow-scrolling: touch;
    }
    .tab-btn {
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .radial-gauge-container {
        width: 100px !important;
        height: 100px !important;
    }
    .gauge-number {
        font-size: 1.25rem !important;
    }
    .gauge-lbl {
        font-size: 0.5rem !important;
        letter-spacing: 0.5px !important;
    }
    .showcase-header {
        gap: 0.5rem !important;
    }
    .showcase-title-area h2 {
        font-size: 1.3rem !important;
    }
    .status-badge-custom {
        font-size: 0.7rem !important;
        padding: 0.25rem 0.6rem !important;
    }
    
    /* Login & Register Card Compactness on Mobile */
    .login-container-box, .register-container-box {
        padding: 1.5rem !important;
        margin: 2rem auto !important;
        border-radius: 16px !important;
    }
    .login-title-box h1, .register-title-box h1 {
        font-size: 1.45rem !important;
    }
}

/* ==========================================================================
   SCROLL TO TOP BUTTON
   ========================================================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(217, 119, 6, 0.4);
    border-color: rgba(255, 255, 255, 0.25);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 85px; /* Float safely above the mobile bottom navigation bar */
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

/* ==========================================================================
   GOD-LEVEL PERFORMANCE & FLUID RESPONSIVE OPTIMIZATIONS
   ========================================================================== */

/* 1. Fluid Typography Scaling (God-Level Responsive Sizing) */
.hero-title {
    font-size: clamp(1.65rem, 5vw + 0.5rem, 3.5rem) !important;
}

.section-title {
    font-size: clamp(1.35rem, 4vw + 0.5rem, 2.6rem) !important;
}

.hero-subtitle {
    font-size: clamp(0.85rem, 1vw + 0.5rem, 1.15rem) !important;
}

/* 2. Hardware Acceleration and Rendering Budgets (God-Level Smoothness) */
.scroll-to-top {
    will-change: transform, opacity;
}

.rtp-card {
    will-change: transform, box-shadow, border-color;
}

.console-game-item {
    will-change: transform, background-color, border-color;
}

.gauge-fill {
    will-change: stroke-dashoffset;
}

.faq-answer {
    will-change: max-height, opacity, padding;
}

/* 3. Offscreen Content Visibility Skip (Blindingly Fast FCP & TTI) */
.about-section, 
.faq-section, 
.main-footer {
    content-visibility: auto;
    contain-intrinsic-size: 1px 500px;
}

/* 4. Touch Targets Size Optimization (No Tapping Errors) */
.mobile-nav-item, 
.tab-btn, 
.btn, 
.faq-question {
    min-height: 48px; /* Matches Google Lighthouse best practices */
}

/* 5. Safe Layout Overflows on Micro-Screens (down to 240px) */
@media (max-width: 360px) {
    .container {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }
    .logo-text {
        font-size: clamp(1.05rem, 4vw + 0.35rem, 1.25rem) !important;
    }
    .header-actions {
        gap: 0.3rem !important;
        flex-direction: row !important; /* Keep horizontal */
    }
    .header-actions .btn {
        padding: 0.35rem 0.6rem !important;
        font-size: clamp(0.7rem, 2vw + 0.45rem, 0.8rem) !important;
        min-height: auto !important;
    }
    .header-container {
        gap: 0.4rem !important;
    }
    .btn {
        padding: 0.5rem 1rem !important;
        font-size: 0.8rem !important;
    }
}

/* 6. Landscape Orientation Optimizations (height budget constraints) */
@media (max-height: 480px) and (orientation: landscape) {
    body {
        padding-bottom: 50px !important;
    }
    .mobile-bottom-nav {
        height: 48px !important;
        padding: 4px 8px !important;
    }
    .mobile-nav-item {
        font-size: 0.65rem !important;
        gap: 2px !important;
    }
    .mobile-nav-item svg {
        width: 16px !important;
        height: 16px !important;
    }
    .hero-section {
        padding: clamp(1.5rem, 4vh + 0.5rem, 3rem) 0 !important;
    }
    .rtp-section, .about-section, .faq-section {
        padding: clamp(1.25rem, 3vh + 0.5rem, 2.5rem) 0 !important;
    }
    .running-banner {
        padding: 0.3rem 0 !important;
        font-size: 0.8rem !important;
    }
    .scroll-to-top {
        bottom: 60px !important;
    }
}

/* 7. Global Paragraph Justify (Rata Kanan-Kiri) */
p, .about-content p, .about-content .lead-text, .faq-answer p, .main-content-area p {
    text-align: justify !important;
}

/* Keep hero subtitles and cta banners centered as they are visual callouts */
.hero-subtitle, .cta-banner-content p, .promo-banner-content span {
    text-align: center !important;
}

