/* Rainbet Navy, Blue & Green Theme */
:root {
    --rb-charcoal-dark: #080e25;
    --rb-slate-medium: #111b3d;
    --rb-slate-light: #243258;
    --rb-gold-bright: #2498ed;
    --rb-amber-deep: #167fd2;
    --rb-text-pure: #f7f9ff;
    --rb-text-muted: #aeb7d2;
    --rb-green-glow: #52e778;
    --rb-red-alert: #ff6672;
    --rb-line: rgba(161, 179, 229, 0.14);
    --rb-shadow: 0 20px 55px rgba(1, 5, 19, 0.34);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: var(--rb-charcoal-dark);
    color: var(--rb-text-pure);
    overflow-x: hidden;
}

/* Header Navigation */
.pl-nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2.5rem;
    background-color: var(--rb-slate-medium);
    border-bottom: 2px solid var(--rb-slate-light);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.pl-brand-logo {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    color: var(--rb-text-pure);
    text-decoration: none;
}
.pl-brand-logo span {
    color: var(--rb-gold-bright);
}

.pl-btn-accent {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    background-color: var(--rb-gold-bright);
    color: #000000;
    padding: 0.65rem 1.4rem;
    border: none;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s, box-shadow 0.2s;
}
.pl-btn-accent:hover {
    background-color: #dfb22b;
    transform: translateY(-1px);
    box-shadow: 0 0 10px rgba(243, 198, 63, 0.4);
}

.pl-btn-secondary-outline {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    background-color: transparent;
    color: var(--rb-text-muted);
    padding: 0.65rem 1.4rem;
    border: 1px solid var(--rb-slate-light);
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
}
.pl-btn-secondary-outline:hover {
    color: var(--rb-text-pure);
    border-color: var(--rb-gold-bright);
}

/* Hero Section */
.pl-hero-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem;
    background: linear-gradient(145deg, var(--rb-slate-medium) 0%, var(--rb-charcoal-dark) 100%);
    border-bottom: 1px solid var(--rb-slate-light);
    gap: 40px;
}

.pl-hero-text {
    max-width: 550px;
}

.pl-hero-text h1 {
    font-size: 2.8rem;
    color: var(--rb-text-pure);
    margin-bottom: 1.2rem;
    line-height: 1.15;
    font-weight: 800;
}

.pl-hero-text p {
    font-size: 1.15rem;
    color: var(--rb-text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.pl-btn-primary-action {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    background-color: var(--rb-amber-deep);
    color: var(--rb-text-pure);
    padding: 1.1rem 2.4rem;
    font-size: 1.1rem;
    font-weight: 800;
    border: none;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(229, 142, 38, 0.4);
    transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.pl-btn-primary-action:hover {
    background-color: #cc7a1e;
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(229, 142, 38, 0.6);
}

/* Metrics Strip */
.pl-stats-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 1.5rem 4rem;
    background-color: #0b0d11;
    border-bottom: 1px solid var(--rb-slate-light);
}

.pl-stat-card {
    background: var(--rb-slate-medium);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border: 1px solid #232833;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pl-stat-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--rb-text-muted);
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.pl-stat-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--rb-gold-bright);
}

.pl-stat-value.pl-highlight-green {
    color: var(--rb-green-glow);
    text-shadow: 0 0 5px rgba(46, 204, 113, 0.3);
}

/* Games Lobby Hub */
.pl-category-hub {
    padding: 2.5rem 4rem 1rem;
}

.pl-filter-bar {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--rb-slate-light);
}

.pl-filter-bar::-webkit-scrollbar {
    height: 4px;
}

.pl-filter-bar::-webkit-scrollbar-thumb {
    background: var(--rb-slate-light);
    border-radius: 2px;
}

.pl-filter-tab {
    background-color: var(--rb-slate-medium);
    color: var(--rb-text-muted);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
    white-space: nowrap;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.pl-filter-tab:hover, .pl-filter-tab.active {
    color: #000;
    background-color: var(--rb-gold-bright);
    border-color: var(--rb-gold-bright);
}

/* Live Analytics Ledger */
.pl-blockchain-ledger {
    padding: 2.5rem 4rem;
    background-color: var(--rb-slate-medium);
    margin: 2rem 4rem;
    border-radius: 12px;
    border: 1px solid var(--rb-slate-light);
}

.pl-events-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.8rem;
    flex-wrap: wrap;
    gap: 10px;
}

.pl-events-header h2 {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.pl-status-badge {
    background-color: rgba(243, 198, 63, 0.1);
    color: var(--rb-gold-bright);
    padding: 0.4rem 0.9rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pl-pulse-indicator {
    width: 8px;
    height: 8px;
    background-color: var(--rb-gold-bright);
    border-radius: 50%;
    animation: pl-live-glow-anim 1.8s infinite;
}

.pl-table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 8px;
    border: 1px solid var(--rb-slate-light);
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    white-space: nowrap;
}

th {
    color: var(--rb-text-muted);
    padding: 1rem;
    background-color: #0c0e12;
    border-bottom: 2px solid var(--rb-slate-light);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

td {
    padding: 1rem;
    border-bottom: 1px solid var(--rb-slate-light);
    font-size: 0.95rem;
    color: #e1e4ed;
    background-color: var(--rb-slate-medium);
}

/* Catalog Grid Showcase */
.pl-games-grid-section {
    padding: 2rem 4rem;
}

.pl-cards-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.8rem;
}

.pl-game-card {
    background-color: var(--rb-slate-medium);
    border-radius: 10px;
    padding: 1.2rem;
    position: relative;
    border: 1px solid #232838;
    transition: transform 0.25s, border-color 0.25s;
}
.pl-game-card:hover {
    transform: translateY(-6px);
    border-color: var(--rb-gold-bright);
}

.pl-tag-ribbon {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: rgba(15, 17, 21, 0.9);
    color: var(--rb-gold-bright);
    padding: 3px 9px;
    font-size: 0.75rem;
    border-radius: 4px;
    font-weight: 700;
    z-index: 10;
    border: 1px solid var(--rb-slate-light);
}

.pl-card-media {
    height: 160px;
    background: #0b0c10;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    overflow: hidden;
}

.pl-game-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-weight: 700;
}
.pl-game-card p {
    color: var(--rb-text-muted);
    font-size: 0.85rem;
}

.pl-card-cta {
    display: block;
    text-align: center;
    text-decoration: none;
    background-color: var(--rb-gold-bright);
    color: #000000;
    padding: 0.65rem 1rem;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 6px;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
}
.pl-card-cta:hover {
    background-color: #dfb22b;
    transform: scale(1.02);
}

/* Software Providers */
.pl-providers-section {
    padding: 2rem 4rem;
    background: #0c0e12;
    border-top: 1px solid var(--rb-slate-light);
    border-bottom: 1px solid var(--rb-slate-light);
}

.pl-providers-flex {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    margin-top: 1.2rem;
}

.pl-provider-badge {
    background: var(--rb-slate-medium);
    border: 1px solid #242938;
    padding: 1rem;
    text-align: center;
    border-radius: 6px;
    font-weight: 700;
    color: var(--rb-text-muted);
    transition: color 0.2s, border-color 0.2s;
    cursor: pointer;
}
.pl-provider-badge:hover {
    border-color: var(--rb-gold-bright);
    color: var(--rb-text-pure);
}

/* Daily Spotlight Layout */
.pl-featured-game-section {
    padding: 2.5rem 4rem;
    background-color: var(--rb-charcoal-dark);
}

.pl-featured-split-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
    margin-top: 1.5rem;
}

.pl-featured-main-card {
    background-color: var(--rb-slate-medium);
    border: 2px solid var(--rb-amber-deep);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pl-featured-tag {
    position: absolute;
    top: 15px; left: 15px;
    background-color: var(--rb-amber-deep);
    color: #ffffff;
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 4px;
    letter-spacing: 0.5px;
    z-index: 5;
    box-shadow: 0 4px 12px rgba(229, 142, 38, 0.4);
}

.pl-featured-img-box {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #000000;
}
.pl-featured-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.pl-featured-main-card:hover .pl-featured-img-box img {
    transform: scale(1.03);
}

.pl-featured-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.pl-featured-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}
.pl-featured-head h3 {
    font-size: 1.6rem;
    font-weight: 800;
}

.pl-rtp-badge {
    background-color: rgba(46, 204, 113, 0.15);
    color: var(--rb-green-glow);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
}

.pl-featured-cta {
    width: 100%;
    padding: 1rem;
    font-size: 1.05rem;
}

/* Side Contenders Stack */
.pl-side-games-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 445px;
    overflow-y: auto;
    padding-right: 8px;
}
.pl-side-games-list::-webkit-scrollbar {
    width: 6px;
}
.pl-side-games-list::-webkit-scrollbar-thumb {
    background-color: var(--rb-slate-medium);
    border-radius: 4px;
}

.pl-side-game-card {
    display: flex;
    align-items: center;
    background-color: var(--rb-slate-medium);
    border: 1px solid var(--rb-slate-light);
    border-radius: 8px;
    padding: 8px 16px 8px 8px;
    gap: 15px;
    transition: border-color 0.2s ease;
}
.pl-side-game-card:hover {
    border-color: var(--rb-gold-bright);
}
.pl-side-game-card img {
    width: 95px;
    height: 58px;
    object-fit: cover;
    border-radius: 4px;
    background-color: #000000;
}

.pl-side-game-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;
}
.pl-side-game-details h4 {
    font-size: 1rem;
    font-weight: 700;
}

.pl-side-game-cta {
    background-color: var(--rb-gold-bright);
    color: #000000;
    text-decoration: none;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.2s ease;
}
.pl-side-game-cta:hover {
    background-color: #dfb22b;
}

/* Status Variations */
.pl-badge-red-pulse {
    background-color: rgba(231, 76, 60, 0.1) !important;
    color: var(--rb-red-alert) !important;
}
.pl-red-pulse-dot {
    background-color: var(--rb-red-alert) !important;
    animation: pl-live-glow-red-anim 1.8s infinite;
}

@keyframes pl-live-glow-anim {
    0% { transform: scale(0.96); box-shadow: 0 0 0 0 rgba(243, 198, 63, 0.6); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(243, 198, 63, 0); }
    100% { transform: scale(0.96); box-shadow: 0 0 0 0 rgba(243, 198, 63, 0); }
}

@keyframes pl-live-glow-red-anim {
    0% { transform: scale(0.96); box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.5); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(231, 76, 60, 0); }
    100% { transform: scale(0.96); box-shadow: 0 0 0 0 rgba(231, 76, 60, 0); }
}

/* Editorial Core Content */
.pl-divider-line {
    border: 0;
    height: 1px;
    background: var(--rb-slate-light);
    margin: 2rem 4rem;
}

.pl-content-wrapper {
    background-color: var(--rb-charcoal-dark);
    padding: 1rem 4rem;
}

.pl-content-body {
    max-width: 850px;
    margin: 0 auto;
}

.pl-content-wrapper h1 {
    font-size: 2.4rem;
    margin: 1.5rem 0 1.2rem;
    color: var(--rb-text-pure);
    font-weight: 800;
}

.pl-content-wrapper h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1.2rem;
    color: var(--rb-text-pure);
    font-weight: 800;
    border-left: 4px solid var(--rb-gold-bright);
    padding-left: 12px;
}

.pl-content-wrapper h3 {
    font-size: 1.3rem;
    margin: 2rem 0 0.8rem;
    color: var(--rb-gold-bright);
    font-weight: 700;
}

.pl-content-wrapper p {
    color: var(--rb-text-muted);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1.2rem;
}

.pl-content-wrapper ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--rb-text-muted);
    line-height: 1.7;
}

/* Info and Data Tables */
.pl-custom-table-container table {
    white-space: normal;
    margin: 1.5rem 0;
    background-color: var(--rb-slate-medium);
    border-radius: 8px;
    border: 1px solid var(--rb-slate-light);
}
.pl-custom-table-container th {
    background-color: #12151c;
}
.pl-custom-table-container td {
    border: 1px solid var(--rb-slate-light);
}
.pl-custom-table-container td:first-child {
    font-weight: 700;
    color: var(--rb-gold-bright);
    width: 30%;
}

/* Accordion FAQ styles */
.pl-faq-accordion {
    margin: 1.5rem 0 3rem;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pl-faq-item {
    background-color: var(--rb-slate-medium);
    border: 1px solid #232838;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.2s ease;
}
.pl-faq-item[open] {
    border-color: var(--rb-gold-bright);
}

.pl-faq-title {
    padding: 1.2rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--rb-text-pure);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}
.pl-faq-title::-webkit-details-marker {
    display: none;
}
.pl-faq-title::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--rb-gold-bright);
    transition: transform 0.2s ease;
}
.pl-faq-item[open] .pl-faq-title::after {
    content: '−';
    color: var(--rb-red-alert);
}

.pl-faq-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background-color: rgba(15, 17, 21, 0.3);
}
.pl-faq-content p {
    color: var(--rb-text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 0 !important;
    padding-top: 1rem;
}

/* Footer Section */
.pl-footer-container {
    text-align: center;
    padding: 3rem 1.5rem;
    background-color: var(--rb-slate-medium);
    border-top: 2px solid #242938;
    color: var(--rb-text-muted);
    font-size: 0.9rem;
    width: 100%;
    position: relative;
    z-index: 10;
}

.pl-footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 1.8rem;
    flex-wrap: wrap;
}
.pl-footer-logos img {
    height: 35px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1) opacity(75%);
    transition: filter 0.25s ease, transform 0.2s ease;
}
.pl-footer-logos img:hover {
    filter: brightness(1.3) opacity(100%);
    transform: translateY(-3px);
}

/* Modal Framework */
.pl-auth-modal {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 5000;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.pl-auth-modal-box {
    background-color: var(--rb-slate-medium);
    padding: 3rem;
    border-radius: 12px;
    width: 100%;
    max-width: 440px;
    position: relative;
    border: 1px solid #2f3547;
    box-shadow: 0 0 20px rgba(243, 198, 63, 0.15);
}

.pl-modal-close-btn {
    position: absolute;
    top: 15px; right: 20px;
    padding: 0;
    background: transparent;
    border: 0;
    font-size: 2rem;
    line-height: 1;
    color: var(--rb-text-muted);
    cursor: pointer;
}
.pl-modal-close-btn:hover { color: var(--rb-text-pure); }

.pl-form-field { margin-bottom: 1.5rem; }
.pl-form-field label { display: block; margin-bottom: 0.6rem; font-size: 0.9rem; color: var(--rb-text-muted); }
.pl-form-field input {
    width: 100%; padding: 0.85rem;
    background-color: var(--rb-charcoal-dark);
    border: 2px solid #232838;
    border-radius: 6px; color: #fff; font-size: 1rem;
}
.pl-form-field input:focus { border-color: var(--rb-gold-bright); outline: none; }

.pl-form-submit-btn {
    width: 100%;
    padding: 1rem;
    margin-top: 0.5rem;
    font-size: 1.05rem;
    background-color: var(--rb-gold-bright);
    color: #000;
    font-weight: 700;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(243, 198, 63, 0.2);
}

/* Robust Responsiveness Enhancements */
@media (max-width: 991px) {
    .pl-hero-banner {
        flex-direction: column;
        text-align: center;
        padding: 3rem 2rem;
    }
    .pl-hero-text { max-width: 100%; }
    .pl-hero-text h1 { font-size: 2.2rem; }
    .pl-stats-strip { padding: 1.5rem 2rem; }
    .pl-category-hub, .pl-games-grid-section, .pl-providers-section, .pl-blockchain-ledger { padding-left: 2rem; padding-right: 2rem; }
    .pl-featured-split-layout { grid-template-columns: 1fr; }
    .pl-side-games-list { max-height: none; }
}

@media (max-width: 768px) {
    .pl-nav-bar { padding: 1rem 1.5rem; }
    .pl-blockchain-ledger { margin: 1rem; padding: 1.5rem 1rem; }
    .pl-games-grid-section, .pl-category-hub, .pl-providers-section { padding: 1rem; }
    .pl-content-wrapper { padding: 1rem 1.5rem; }
    .pl-divider-line { margin: 2rem 1.5rem; }
    .pl-auth-modal-box { padding: 2rem; }
    .pl-stats-strip { padding: 1rem; }
}

html {
    scroll-behavior: smooth;
}

/* 2026 Navy interface refresh */
body {
    background:
        linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px),
        var(--rb-charcoal-dark);
    background-size: 44px 44px;
}

.pl-nav-bar {
    min-height: 78px;
    padding: 0 max(2rem, calc((100vw - 1180px) / 2));
    background: rgba(17, 27, 61, 0.96);
    border-bottom: 1px solid var(--rb-line);
    backdrop-filter: blur(16px);
}

.pl-brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
    font-style: italic;
    font-weight: 700;
    letter-spacing: -1.5px;
}

.pl-brand-logo span {
    color: inherit;
}

.pl-brand-icon {
    width: 31px;
    height: 38px;
}

.pl-nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pl-nav-item {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    padding: 0 15px;
    color: #dfe5f8;
    border-radius: 9px;
    text-decoration: none;
    font-weight: 700;
    transition: 180ms ease;
}

.pl-nav-item:hover,
.pl-nav-item:focus-visible {
    color: #fff;
    background: var(--rb-slate-light);
}

.pl-nav-icon-link {
    width: 48px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #eff3ff;
    background: var(--rb-slate-light);
    border-radius: 9px;
    text-decoration: none;
    transition: 180ms ease;
}

.pl-nav-icon-link:hover,
.pl-nav-icon-link:focus-visible {
    background: #314069;
    transform: translateY(-1px);
}

.pl-btn-accent,
.pl-btn-secondary-outline {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
}

.pl-btn-accent {
    color: #fff;
    background: var(--rb-amber-deep);
}

.pl-btn-accent:hover {
    color: #fff;
    background: var(--rb-gold-bright);
    box-shadow: 0 9px 24px rgba(36, 152, 237, 0.22);
}

.pl-btn-secondary-outline {
    color: #fff;
    background: var(--rb-slate-light);
    border-color: transparent;
}

.pl-btn-secondary-outline:hover {
    color: #fff;
    background: #314069;
    border-color: transparent;
}

/* Screenshot-matched hero */
.pl-hero-banner {
    position: relative;
    min-height: 510px;
    display: grid;
    grid-template-columns: minmax(360px, 0.9fr) minmax(520px, 1.25fr);
    align-items: center;
    gap: 64px;
    overflow: hidden;
    padding: 48px max(2rem, calc((100vw - 1180px) / 2));
    background:
        radial-gradient(circle at 65% 58%, rgba(35, 132, 238, 0.28), transparent 32%),
        linear-gradient(115deg, #0a1331 0%, #142451 55%, #0a1432 100%);
    border-bottom: 1px solid var(--rb-line);
}

.pl-hero-banner::before,
.pl-hero-banner::after {
    content: "";
    position: absolute;
    pointer-events: none;
    border-radius: 24px;
    background: rgba(134, 167, 246, 0.035);
    transform: rotate(28deg);
}

.pl-hero-banner::before {
    width: 340px;
    height: 640px;
    left: 24%;
    top: -250px;
}

.pl-hero-banner::after {
    width: 240px;
    height: 520px;
    right: 3%;
    bottom: -300px;
}

.pl-hero-text,
.pl-hero-card-grid {
    position: relative;
    z-index: 2;
}

.pl-hero-text {
    max-width: 620px;
}

.pl-hero-subtitle,
.pl-badge-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: #9ad1ff;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pl-hero-subtitle::before,
.pl-badge-kicker::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--rb-green-glow);
    box-shadow: 0 0 0 6px rgba(82, 231, 120, 0.1);
}

.pl-hero-text h1 {
    margin-bottom: 20px;
    color: #fff;
    font-size: clamp(2.35rem, 4vw, 4rem);
    line-height: 1.07;
    letter-spacing: -0.045em;
}

.pl-hero-text p {
    margin-bottom: 0;
    color: #c3cbe2;
    font-size: 1rem;
    line-height: 1.7;
}

.pl-hero-cta-group {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
}

.pl-btn-primary-action,
.pl-card-cta,
.pl-side-game-cta,
.pl-form-submit-btn {
    color: #fff;
    background: var(--rb-green-glow);
    border-radius: 9px;
    box-shadow: 0 10px 24px rgba(82, 231, 120, 0.16);
}

.pl-btn-primary-action {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 26px;
    text-transform: none;
}

.pl-btn-primary-action:hover,
.pl-card-cta:hover,
.pl-side-game-cta:hover,
.pl-form-submit-btn:hover {
    color: #061126;
    background: #6af08d;
    box-shadow: 0 12px 26px rgba(82, 231, 120, 0.24);
}

.pl-btn-subtle {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    color: #dde5f9;
    background: var(--rb-slate-light);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 9px;
    text-decoration: none;
    font-weight: 800;
    transition: 180ms ease;
}

.pl-btn-subtle:hover {
    color: #fff;
    background: #314169;
}

.pl-hero-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    transform: perspective(1200px) rotateY(-4deg);
}

.pl-portal-item {
    position: relative;
    min-height: 335px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid rgba(107, 172, 247, 0.42);
    border-radius: 10px;
    background: #172b58;
    box-shadow: var(--rb-shadow);
    text-decoration: none;
    transition: 220ms ease;
}

.pl-portal-item:hover {
    transform: translateY(-5px);
    border-color: rgba(115, 195, 255, 0.8);
}

.pl-portal-graphic {
    position: absolute;
    inset: 0 0 64px;
    overflow: hidden;
    background:
        radial-gradient(circle at 28% 38%, rgba(41, 179, 255, 0.42), transparent 29%),
        linear-gradient(145deg, #1e79c6, #122653 65%);
}

.pl-portal-item:nth-child(2) .pl-portal-graphic {
    background:
        radial-gradient(circle at 70% 32%, rgba(65, 213, 143, 0.31), transparent 27%),
        linear-gradient(145deg, #14345d, #151b38 68%);
}

.pl-preview-grid {
    position: absolute;
    inset: 30px 22px 12px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    transform: rotate(-6deg) scale(1.08);
}

.pl-preview-cell {
    min-height: 96px;
    display: grid;
    place-items: center;
    padding: 8px;
    color: #fff;
    background: linear-gradient(140deg, #2c8fe2, #7044db);
    border: 2px solid rgba(255, 255, 255, 0.14);
    border-radius: 11px;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
    text-align: center;
    font-weight: 900;
    line-height: 1.08;
}

.pl-preview-cell:nth-child(2) {
    background: linear-gradient(140deg, #ff7047, #ef365e);
}

.pl-preview-cell:nth-child(3) {
    background: linear-gradient(140deg, #11afae, #2f77db);
}

.pl-preview-cell:nth-child(4) {
    background: linear-gradient(140deg, #6c4adf, #a63fcb);
}

.pl-portal-caption {
    position: relative;
    z-index: 2;
    min-height: 66px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 22px;
    color: #fff;
    background: linear-gradient(90deg, rgba(31, 113, 190, 0.96), rgba(38, 96, 166, 0.94));
    font-size: 1.25rem;
    font-weight: 800;
}

.pl-portal-item:nth-child(2) .pl-portal-caption {
    background: linear-gradient(90deg, rgba(47, 58, 89, 0.97), rgba(55, 65, 93, 0.97));
}

/* Metrics and legacy component refinement */
.pl-stats-strip {
    padding: 24px max(2rem, calc((100vw - 1180px) / 2));
    background: #0a1027;
    border-bottom-color: var(--rb-line);
}

.pl-stat-card {
    background: linear-gradient(145deg, #18264d, #101a39);
    border-color: var(--rb-line);
    border-radius: 11px;
}

.pl-stat-value {
    color: #fff;
}

.pl-stat-value.pl-highlight-green {
    color: var(--rb-green-glow);
}

.pl-category-hub,
.pl-games-grid-section,
.pl-featured-game-section,
.pl-content-wrapper {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.pl-category-hub {
    padding: 64px 0 12px;
}

.pl-blockchain-ledger {
    width: min(1180px, calc(100% - 40px));
    margin: 30px auto;
    background: linear-gradient(145deg, rgba(24, 38, 77, 0.95), rgba(13, 23, 51, 0.95));
    border-color: var(--rb-line);
    border-radius: 14px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
}

.pl-filter-bar {
    border-bottom-color: var(--rb-line);
}

.pl-filter-tab {
    color: #c6cee2;
    background: #18264d;
    border-color: var(--rb-line);
    border-radius: 9px;
}

.pl-filter-tab:hover,
.pl-filter-tab.active {
    color: #fff;
    background: var(--rb-amber-deep);
    border-color: #47adf4;
}

.pl-status-badge {
    color: #a8dcff;
    background: rgba(36, 152, 237, 0.13);
}

.pl-pulse-indicator {
    background: var(--rb-green-glow);
}

.pl-table-wrapper {
    border-color: var(--rb-line);
}

.pl-tx-deposit {
    color: var(--rb-green-glow);
    font-weight: 800;
}

.pl-tx-withdrawal {
    color: #8dd1ff;
    font-weight: 800;
}

.pl-tx-hash {
    color: var(--rb-text-muted);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.pl-tx-fiat {
    color: var(--rb-text-muted);
    font-size: 0.85rem;
}

.pl-tx-confirmed {
    color: var(--rb-green-glow);
}

th {
    color: #fff;
    background: #1d2b52;
    border-bottom-color: var(--rb-line);
}

td {
    color: #c2cae1;
    background: #101a39;
    border-bottom-color: var(--rb-line);
}

.pl-games-grid-section {
    padding: 34px 0;
}

.pl-game-card,
.pl-featured-main-card,
.pl-side-game-card,
.pl-provider-badge,
.pl-faq-item {
    background: linear-gradient(145deg, rgba(30, 45, 85, 0.95), rgba(15, 25, 55, 0.95));
    border-color: var(--rb-line);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
}

.pl-game-card:hover,
.pl-side-game-card:hover,
.pl-provider-badge:hover,
.pl-faq-item[open] {
    border-color: rgba(36, 152, 237, 0.72);
}

.pl-tag-ribbon {
    color: #fff;
    background: rgba(10, 16, 39, 0.9);
    border-color: rgba(255, 255, 255, 0.12);
}

.pl-card-cta {
    color: #061126;
}

.pl-providers-section {
    padding: 48px max(2rem, calc((100vw - 1180px) / 2));
    background: #0a1027;
    border-color: var(--rb-line);
}

.pl-provider-badge {
    color: #c4cce1;
}

.pl-featured-game-section {
    padding: 58px 0;
}

.pl-featured-main-card {
    border-color: var(--rb-amber-deep);
}

.pl-featured-tag {
    background: var(--rb-amber-deep);
    box-shadow: 0 4px 12px rgba(22, 127, 210, 0.32);
}

.pl-rtp-badge {
    color: var(--rb-green-glow);
    background: rgba(82, 231, 120, 0.12);
}

.pl-side-game-cta {
    color: #061126;
}

.pl-divider-line {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
    background: var(--rb-line);
}

.pl-content-wrapper {
    padding: 42px 0 78px;
}

.pl-content-body {
    max-width: 900px;
}

.pl-content-wrapper h2 {
    border-left-color: var(--rb-gold-bright);
}

.pl-content-wrapper h3 {
    color: #8dd1ff;
}

.pl-custom-table-container table {
    background: #101a39;
    border-color: var(--rb-line);
}

.pl-custom-table-container th,
.pl-custom-table-container td {
    border-color: var(--rb-line);
}

.pl-custom-table-container td:first-child {
    color: #fff;
}

.pl-faq-title::after {
    color: var(--rb-green-glow);
}

.pl-faq-item[open] .pl-faq-title::after {
    color: #8dd1ff;
}

.pl-faq-content {
    background: rgba(8, 14, 37, 0.32);
}

.pl-footer-container {
    background: #070c1d;
    border-top-color: var(--rb-line);
}

.pl-auth-modal {
    background: rgba(2, 5, 17, 0.84);
    backdrop-filter: blur(8px);
}

.pl-auth-modal-box {
    background: #152143;
    border-color: #344878;
    box-shadow: var(--rb-shadow);
}

.pl-form-field input {
    background: #0b1330;
    border-color: var(--rb-slate-light);
}

.pl-form-field input:focus {
    border-color: var(--rb-gold-bright);
}

/* Homepage-only events and promotions simulation */
.pl-live-events-section {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
    padding: 72px 0 18px;
}

.pl-events-header {
    margin-bottom: 25px;
}

.pl-events-header h2 {
    font-size: clamp(1.85rem, 3vw, 2.7rem);
    letter-spacing: -0.03em;
}

.pl-events-header .pl-badge-kicker {
    margin-bottom: 6px;
}

.pl-live-tag {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 12px;
    color: #bde7ff;
    background: rgba(36, 152, 237, 0.12);
    border: 1px solid rgba(36, 152, 237, 0.28);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.pl-events-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(350px, 0.85fr);
    gap: 20px;
    align-items: stretch;
}

.pl-event-card {
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 10%, rgba(36, 152, 237, 0.13), transparent 28%),
        #18213f;
    border: 1px solid #344269;
    border-radius: 14px;
    box-shadow: var(--rb-shadow);
}

.pl-event-card-top {
    min-height: 112px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 25px 28px;
    border-bottom: 1px solid var(--rb-line);
}

.pl-event-title-group {
    display: flex;
    align-items: center;
    gap: 18px;
}

.pl-event-icon {
    width: 42px;
    height: 52px;
    display: grid;
    place-items: center;
    color: #f7cc3e;
    filter: drop-shadow(0 6px 8px rgba(247, 204, 62, 0.2));
}

.pl-event-icon svg {
    width: 100%;
    height: 100%;
}

.pl-event-meta {
    display: block;
    margin-bottom: 2px;
    color: #8994b5;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pl-event-title-group h3 {
    color: #fff;
    font-size: clamp(1.55rem, 3vw, 2rem);
    font-style: italic;
    line-height: 1.15;
}

.pl-event-title-group h3 em {
    display: block;
    color: #ffdd42;
    font-size: 0.7em;
    text-transform: uppercase;
}

.pl-timer-badge {
    min-width: 106px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    color: #fff;
    background: #252d48;
    border: 1px solid #34415d;
    border-right: 2px solid #a5ff41;
    border-bottom: 2px solid #a5ff41;
    border-radius: 9px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.95rem;
    font-style: italic;
    font-weight: 900;
    white-space: nowrap;
}

.pl-timer-badge--gold {
    border-color: #4b4650;
    border-right-color: #ffe044;
    border-bottom-color: #ffe044;
}

.pl-timer-badge--purple {
    border-color: #4b406a;
    border-right-color: #b759ff;
    border-bottom-color: #b759ff;
    text-transform: uppercase;
}

.pl-event-feed-list {
    display: grid;
    gap: 1px;
    background: var(--rb-line);
}

.pl-feed-row {
    min-height: 75px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 13px;
    padding: 14px 25px;
    background: rgba(24, 33, 63, 0.96);
}

.pl-feed-row strong {
    display: block;
    color: #f4f6ff;
}

.pl-feed-row small {
    display: block;
    color: #98a3c2;
}

.pl-dot-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--rb-green-glow);
    box-shadow: 0 0 0 6px rgba(82, 231, 120, 0.09);
}

.pl-dot-indicator--blue {
    background: var(--rb-gold-bright);
    box-shadow: 0 0 0 6px rgba(36, 152, 237, 0.1);
}

.pl-counter-badge {
    color: #c6cee3;
    font-size: 0.78rem;
    white-space: nowrap;
}

.pl-prize-strip {
    min-height: 96px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--rb-line);
}

.pl-prize-strip > div {
    position: relative;
    display: grid;
    place-content: center;
    text-align: center;
}

.pl-prize-strip > div:not(:last-child) {
    border-right: 1px solid var(--rb-line);
}

.pl-prize-strip small {
    color: #8e97b4;
    font-size: 0.72rem;
    font-style: italic;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.pl-prize-strip strong {
    color: #fff;
    font-size: 1.35rem;
    font-style: italic;
}

.pl-promo-accordion-btn {
    width: 100%;
    min-height: 79px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px 0 25px;
    color: #fff;
    background: #293251;
    border: 0;
    border-bottom: 1px solid #3a466c;
    cursor: pointer;
    font-size: 1.35rem;
}

.pl-promo-accordion-btn > span:first-child {
    display: flex;
    align-items: center;
    gap: 14px;
}

.pl-promo-accordion-btn svg {
    width: 30px;
    height: 30px;
}

.pl-chevron-arrow {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    background: #394261;
    border: 1px solid #596382;
    border-radius: 7px;
    font-weight: 900;
    transition: transform 180ms ease;
}

.pl-promo-accordion-btn[aria-expanded="false"] .pl-chevron-arrow {
    transform: rotate(180deg);
}

.pl-promo-item-list {
    display: grid;
    padding: 10px 22px 16px;
}

.pl-promo-item-list.is-collapsed {
    display: none;
}

.pl-promo-link-item {
    min-height: 75px;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) auto;
    align-items: center;
    gap: 13px;
    padding: 9px 6px;
    color: #fff;
    border-bottom: 1px solid rgba(161, 179, 229, 0.08);
    text-decoration: none;
}

.pl-promo-link-item:last-child {
    border-bottom: 0;
}

.pl-promo-link-item:hover .pl-promo-info strong {
    color: #9ad1ff;
}

.pl-promo-badge-icon {
    color: #ffe07a;
    font-size: 2rem;
    text-align: center;
    filter: drop-shadow(0 5px 8px rgba(255, 224, 122, 0.18));
}

.pl-promo-badge-icon--vip {
    color: #bc6cff;
    text-shadow: 0 0 14px rgba(188, 108, 255, 0.55);
}

.pl-promo-info {
    min-width: 0;
}

.pl-promo-info strong,
.pl-promo-info small {
    display: block;
}

.pl-promo-info strong {
    font-size: 1.2rem;
    line-height: 1.1;
}

.pl-promo-info small {
    overflow: hidden;
    color: #b0b8d0;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 1050px) {
    .pl-nav-item {
        display: none;
    }

    .pl-hero-banner {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .pl-hero-text {
        max-width: 800px;
    }

    .pl-hero-card-grid {
        max-width: 680px;
        transform: none;
    }

    .pl-events-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .pl-nav-bar {
        min-height: 66px;
        padding: 0 14px;
    }

    .pl-brand-logo {
        font-size: 1.6rem;
    }

    .pl-brand-icon {
        width: 26px;
        height: 32px;
    }

    .pl-nav-icon-link,
    .pl-btn-secondary-outline {
        display: none;
    }

    .pl-btn-accent {
        min-height: 42px;
        padding: 0 15px;
    }

    .pl-hero-banner {
        padding: 52px 14px;
    }

    .pl-hero-text h1 {
        font-size: clamp(2.15rem, 11vw, 3.2rem);
    }

    .pl-hero-cta-group {
        align-items: stretch;
        flex-direction: column;
    }

    .pl-btn-primary-action,
    .pl-btn-subtle {
        width: 100%;
    }

    .pl-hero-card-grid {
        grid-template-columns: 1fr;
    }

    .pl-portal-item {
        min-height: 290px;
    }

    .pl-stats-strip {
        padding: 18px 14px;
    }

    .pl-live-events-section,
    .pl-category-hub,
    .pl-games-grid-section,
    .pl-featured-game-section,
    .pl-content-wrapper,
    .pl-blockchain-ledger,
    .pl-divider-line {
        width: calc(100% - 28px);
    }

    .pl-live-events-section {
        padding-top: 55px;
    }

    .pl-events-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .pl-event-card-top {
        min-height: 0;
        align-items: flex-start;
        flex-direction: column;
        padding: 22px 18px;
    }

    .pl-event-icon {
        width: 35px;
        height: 44px;
    }

    .pl-feed-row {
        grid-template-columns: auto minmax(0, 1fr);
        padding: 14px 18px;
    }

    .pl-counter-badge {
        grid-column: 2;
    }

    .pl-prize-row {
        min-height: 82px;
    }
    .pl-prize-strip > div {
    position: relative;
    display: grid;
    place-content: center;
    text-align: center;
}

.pl-prize-strip > div:not(:last-child) {
    border-right: 1px solid var(--rb-line);
}

.pl-prize-strip small {
    color: #8e97b4;
    font-size: 0.72rem;
    font-style: italic;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.pl-prize-strip strong {
    color: #fff;
    font-size: 1.35rem;
    font-style: italic;
}
    .pl-promo-item-list {
        padding-inline: 13px;
    }

    .pl-promo-link-item {
        grid-template-columns: 42px minmax(0, 1fr) auto;
        gap: 8px;
    }

    .pl-timer-badge {
        min-width: 86px;
        font-size: 0.78rem;
    }

    .pl-blockchain-ledger {
        margin: 22px auto;
    }

    .pl-category-hub {
        padding-top: 50px;
    }

    .pl-providers-section {
        padding-inline: 14px;
    }
}