/* ============================================================
   SWIPEWIN (moban-48) - Main Stylesheet
   Color Scheme: Coral Pink (#FF6F61 -> #FF8A80) + White + Deep Blue (#1A237E)
   Fonts: Josefin Sans (headings) + Roboto (body)
   ============================================================ */

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

html {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background: #0d1117;
    overflow-x: hidden;
}

body.front-page-active {
    overflow-y: auto;
}

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

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

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

ul {
    list-style: none;
}

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

.coral-text {
    color: #FF6F61;
}

/* ===================== BUTTONS ===================== */
.btn-coral-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #FF6F61, #FF8A80);
    color: #fff;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 111, 97, 0.4);
}

.btn-coral-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 111, 97, 0.6);
    background: linear-gradient(135deg, #FF8A80, #FF6F61);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    color: #fff;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    transform: translateY(-2px);
}

.btn-coral-sm {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, #FF6F61, #FF8A80);
    color: #fff;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(255, 111, 97, 0.3);
}

.btn-coral-sm:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 111, 97, 0.5);
}

.btn-login {
    display: inline-block;
    padding: 8px 20px;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.btn-register {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #FF6F61, #FF8A80);
    color: #fff;
    border: 2px solid transparent;
    border-radius: 25px;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(255, 111, 97, 0.3);
}

.btn-register:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(255, 111, 97, 0.5);
}

.btn-demo {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    color: #FF8A80;
    border: 2px solid #FF8A80;
    border-radius: 25px;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-demo:hover {
    background: #FF8A80;
    color: #fff;
}

/* ===================== ANNOUNCEMENT MODAL ===================== */
.announcement-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.announcement-modal.active {
    opacity: 1;
    visibility: visible;
}

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

.announcement-content {
    position: relative;
    background: linear-gradient(135deg, #1A237E, #0d1440);
    border: 2px solid rgba(255, 111, 97, 0.3);
    border-radius: 20px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 1;
    animation: slideInUp 0.5s ease;
}

.announcement-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.announcement-close:hover {
    background: rgba(255, 111, 97, 0.3);
}

.announcement-header-icon {
    text-align: center;
    font-size: 40px;
    color: #FF6F61;
    margin-bottom: 15px;
}

.announcement-title {
    text-align: center;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 20px;
    margin-bottom: 20px;
}

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

.announcement-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    color: #fff;
    transition: all 0.3s ease;
}

.announcement-item:hover {
    background: rgba(255, 111, 97, 0.15);
    transform: translateX(5px);
}

.announcement-item .fa-chevron-right {
    margin-left: auto;
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
}

.announcement-badge {
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

.announcement-badge.hot {
    background: #FF6F61;
    color: #fff;
}

.announcement-badge.new {
    background: #4CAF50;
    color: #fff;
}

.announcement-badge.info {
    background: #2196F3;
    color: #fff;
}

.announcement-text {
    font-size: 14px;
    flex: 1;
}

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

.announcement-cta {
    display: inline-block;
    padding: 12px 40px;
}

/* ===================== STORY PROGRESS BAR ===================== */
.story-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    gap: 4px;
    padding: 8px 12px;
    z-index: 9999;
    pointer-events: none;
}

.story-progress-segment {
    flex: 1;
    height: 3px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 2px;
    overflow: hidden;
}

.story-progress-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #FF6F61, #FF8A80);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.story-progress-segment.completed .story-progress-fill {
    width: 100%;
}

.story-progress-segment.active .story-progress-fill {
    transition: width 0.1s linear;
}

/* ===================== SWIPE HINT ===================== */
.swipe-hint {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9998;
    text-align: center;
    transition: opacity 0.5s ease;
}

.swipe-hint.hidden {
    opacity: 0;
    pointer-events: none;
}

.swipe-hint-text {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Josefin Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.swipe-arrow {
    animation: swipeBounce 1.5s ease-in-out infinite;
    color: #FF6F61;
    font-size: 24px;
}

@keyframes swipeBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* ===================== HEADER ===================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9000;
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 111, 97, 0.2);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: rgba(13, 17, 23, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

.logo {
    flex-shrink: 0;
}

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

.header-time {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-family: 'Roboto', sans-serif;
}

.header-time span::before {
    content: '\f017';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 6px;
    color: #FF6F61;
}

.header-btn-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Navigation */
.main-navigation {
    background: rgba(26, 35, 126, 0.5);
    border-top: 1px solid rgba(255, 111, 97, 0.1);
}

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

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

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Josefin Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.nav-link:hover {
    color: #FF6F61;
    border-bottom-color: #FF6F61;
    background: rgba(255, 111, 97, 0.05);
}

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

/* Notification Bar */
.notification-bar {
    background: linear-gradient(90deg, #FF6F61, #FF8A80, #FF6F61);
    background-size: 200% 100%;
    animation: gradientSlide 3s ease infinite;
    overflow: hidden;
    padding: 6px 0;
}

@keyframes gradientSlide {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.notification-content {
    display: flex;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
    gap: 60px;
}

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

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

/* ===================== STORY SCROLL SECTIONS ===================== */
.story-scroll-container {
    width: 100%;
}

.story-slide {
    min-height: 100vh;
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.story-slide-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px 60px;
}

/* ===================== SECTION 1: HERO ===================== */
.story-slide-hero {
    background: linear-gradient(135deg, #FF6F61 0%, #FF8A80 50%, #e85d50 100%);
    text-align: center;
    color: #fff;
}

.hero-bg-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: particleFloat 6s ease-in-out infinite;
}

.particle.p1 { width: 80px; height: 80px; top: 10%; left: 10%; animation-delay: 0s; }
.particle.p2 { width: 60px; height: 60px; top: 20%; right: 15%; animation-delay: 1s; }
.particle.p3 { width: 100px; height: 100px; bottom: 30%; left: 5%; animation-delay: 2s; }
.particle.p4 { width: 40px; height: 40px; top: 60%; right: 10%; animation-delay: 0.5s; }
.particle.p5 { width: 70px; height: 70px; bottom: 15%; right: 20%; animation-delay: 1.5s; }
.particle.p6 { width: 50px; height: 50px; top: 40%; left: 20%; animation-delay: 3s; }
.particle.p7 { width: 90px; height: 90px; bottom: 40%; right: 5%; animation-delay: 2.5s; }
.particle.p8 { width: 35px; height: 35px; top: 70%; left: 40%; animation-delay: 4s; }

@keyframes particleFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    25% { transform: translate(20px, -30px) scale(1.1); opacity: 0.5; }
    50% { transform: translate(-15px, -50px) scale(0.9); opacity: 0.4; }
    75% { transform: translate(30px, -20px) scale(1.05); opacity: 0.6; }
}

.hero-glow-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    z-index: 1;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    backdrop-filter: blur(5px);
    animation: slideInUp 0.8s ease 0.2s both;
}

.hero-badge i {
    color: #fff;
    margin-right: 5px;
}

.hero-main-title {
    margin-bottom: 15px;
    animation: slideInUp 0.8s ease 0.4s both;
}

.hero-brand-text {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 80px;
    font-weight: 700;
    letter-spacing: 8px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    display: block;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 6px;
    margin-bottom: 20px;
    opacity: 0.9;
    animation: slideInUp 0.8s ease 0.6s both;
}

.hero-desc {
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 35px;
    opacity: 0.85;
    line-height: 1.8;
    animation: slideInUp 0.8s ease 0.8s both;
}

.hero-stats-row {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
    animation: slideInUp 0.8s ease 1s both;
}

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

.hero-stat-number {
    display: block;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 36px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-stat-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: slideInUp 0.8s ease 1.2s both;
}

.hero-cta-group .btn-coral-primary {
    background: #fff;
    color: #FF6F61;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-cta-group .btn-coral-primary:hover {
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.hero-scroll-arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
    animation: swipeBounce 2s ease-in-out infinite;
}

.hero-scroll-arrow span {
    display: block;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    opacity: 0.7;
}

.hero-scroll-arrow i {
    font-size: 20px;
    opacity: 0.7;
}

/* ===================== SECTION 2: GAMES ===================== */
.story-slide-games {
    background: linear-gradient(135deg, #1A237E 0%, #0d1440 50%, #1A237E 100%);
    color: #fff;
}

.games-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255, 111, 97, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(255, 138, 128, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.section-header-light {
    text-align: center;
    margin-bottom: 40px;
}

.section-header-light .section-title {
    font-size: 36px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.section-header-light .section-title i {
    color: #FF6F61;
    margin-right: 10px;
}

.section-header-light .section-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.section-header-dark {
    text-align: center;
    margin-bottom: 40px;
}

.section-header-dark .section-title {
    font-size: 36px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.section-header-dark .section-title i {
    margin-right: 10px;
}

.section-header-dark .section-subtitle {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.6);
}

.games-swiper-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.game-showcase-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.game-showcase-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 111, 97, 0.4);
    box-shadow: 0 20px 50px rgba(255, 111, 97, 0.15);
}

.game-card-icon {
    font-size: 50px;
    color: #FF6F61;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.game-showcase-card:hover .game-card-icon {
    transform: scale(1.1);
}

.game-showcase-card h3 {
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.game-showcase-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.6;
}

.game-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    background: #FF6F61;
    color: #fff;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-card-badge.new {
    background: #4CAF50;
}

.games-pagination {
    margin-top: 25px;
}

.games-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
}

.games-pagination .swiper-pagination-bullet-active {
    background: #FF6F61;
    width: 25px;
    border-radius: 4px;
}

/* ===================== SECTION 3: BONUSES ===================== */
.story-slide-bonuses {
    background: #fff;
    color: #333;
}

.bonuses-split-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.bonuses-bg-coral {
    position: absolute;
    top: 0;
    left: 0;
    width: 35%;
    height: 100%;
    background: linear-gradient(180deg, #FF6F61, #FF8A80);
    clip-path: polygon(0 0, 100% 0, 70% 100%, 0 100%);
}

.bonuses-bg-white {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    background: #fff;
}

.bonuses-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.bonus-card {
    display: flex;
    align-items: stretch;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 111, 97, 0.2);
}

.bonus-card-left {
    background: linear-gradient(135deg, #FF6F61, #FF8A80);
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    color: #fff;
}

.bonus-amount {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.bonus-amount-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.85;
    text-align: center;
}

.bonus-card-right {
    padding: 25px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bonus-card-right h3 {
    font-size: 20px;
    color: #1A237E;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.bonus-card-right p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.7;
}

/* ===================== SECTION 4: WINNERS ===================== */
.story-slide-winners {
    background: linear-gradient(180deg, #0d1117 0%, #1A237E 50%, #0d1117 100%);
    color: #fff;
}

.winners-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 30% 30%, rgba(255, 111, 97, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 70%, rgba(255, 215, 0, 0.1) 0%, transparent 60%);
    z-index: 1;
}

.winners-confetti {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    opacity: 0.6;
    animation: confettiFall 5s linear infinite;
}

.confetti.c1 { left: 10%; background: #FF6F61; animation-delay: 0s; border-radius: 50%; }
.confetti.c2 { left: 25%; background: #FFD700; animation-delay: 1s; border-radius: 2px; width: 8px; height: 14px; }
.confetti.c3 { left: 40%; background: #FF8A80; animation-delay: 2s; border-radius: 50%; }
.confetti.c4 { left: 55%; background: #4CAF50; animation-delay: 0.5s; border-radius: 2px; width: 12px; height: 8px; }
.confetti.c5 { left: 65%; background: #FF6F61; animation-delay: 3s; border-radius: 50%; }
.confetti.c6 { left: 75%; background: #2196F3; animation-delay: 1.5s; border-radius: 2px; }
.confetti.c7 { left: 85%; background: #FFD700; animation-delay: 2.5s; border-radius: 50%; }
.confetti.c8 { left: 95%; background: #FF8A80; animation-delay: 4s; width: 6px; height: 12px; }

@keyframes confettiFall {
    0% { transform: translateY(-100vh) rotate(0deg); opacity: 1; }
    100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

.winners-ticker-wrapper {
    overflow: hidden;
    margin: 30px 0;
    position: relative;
}

.winners-ticker-wrapper::before,
.winners-ticker-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.winners-ticker-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, #0d1117, transparent);
}

.winners-ticker-wrapper::after {
    right: 0;
    background: linear-gradient(-90deg, #0d1117, transparent);
}

.winners-ticker-track {
    display: flex;
    gap: 20px;
    animation: tickerScroll 30s linear infinite;
    width: max-content;
}

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

.winner-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    white-space: nowrap;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.winner-item:hover {
    background: rgba(255, 111, 97, 0.15);
    border-color: rgba(255, 111, 97, 0.3);
}

.winner-name {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #fff;
}

.winner-game {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.winner-amount {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #4CAF50;
}

.winners-total {
    text-align: center;
    margin-top: 40px;
}

.winners-total-label {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

.winners-total-amount {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #FFD700;
    text-shadow: 0 2px 20px rgba(255, 215, 0, 0.3);
}

/* ===================== SECTION 5: FOOTER CTA ===================== */
.story-slide-cta {
    background: linear-gradient(135deg, #FF6F61 0%, #1A237E 100%);
    color: #fff;
}

.cta-bg-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    animation: particleFloat 8s ease-in-out infinite;
}

.cta-particle.cp1 { width: 120px; height: 120px; top: 15%; left: 10%; animation-delay: 0s; }
.cta-particle.cp2 { width: 80px; height: 80px; top: 60%; right: 10%; animation-delay: 2s; }
.cta-particle.cp3 { width: 60px; height: 60px; bottom: 20%; left: 30%; animation-delay: 4s; }
.cta-particle.cp4 { width: 100px; height: 100px; top: 30%; right: 25%; animation-delay: 1s; }
.cta-particle.cp5 { width: 40px; height: 40px; bottom: 40%; left: 15%; animation-delay: 3s; }
.cta-particle.cp6 { width: 70px; height: 70px; top: 70%; right: 35%; animation-delay: 5s; }

.cta-content-block {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-icon {
    font-size: 50px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.cta-main-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 52px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 15px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cta-subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 35px;
}

.cta-form {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    margin-bottom: 25px;
}

.cta-form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.cta-form-row:last-of-type {
    margin-bottom: 0;
}

.cta-input {
    flex: 1;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    color: #fff;
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

.cta-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.cta-input:focus {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.btn-cta-submit {
    width: 100%;
    margin-top: 20px;
    padding: 16px;
    font-size: 18px;
    background: #fff;
    color: #FF6F61;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta-submit:hover {
    background: #f8f8f8;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.cta-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
}

.cta-divider::before,
.cta-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.cta-divider span {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
}

.cta-alt-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.btn-cta-alt {
    padding: 10px 20px;
    font-size: 13px;
}

.cta-trust {
    font-size: 13px;
    opacity: 0.7;
    line-height: 1.8;
}

.cta-trust i {
    color: #FFD700;
    margin-right: 3px;
}

/* ===================== ANIMATIONS ===================== */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes progressFill {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.reveal-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================== SITE FOOTER ===================== */
.site-footer {
    background: linear-gradient(180deg, #0d1117 0%, #1A237E 100%);
    color: #fff;
    padding: 60px 0 0;
    position: relative;
}

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

.footer-brand-logo img {
    height: 50px;
    margin-bottom: 15px;
}

.footer-brand-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-18plus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid #FF6F61;
    border-radius: 50%;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #FF6F61;
    margin-bottom: 15px;
}

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

.footer-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-social-links a:hover {
    background: #FF6F61;
    transform: translateY(-3px);
}

.footer-col h4 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #FF6F61;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: #FF8A80;
    padding-left: 5px;
}

.footer-license-bar {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 25px;
}

.footer-license-bar h4 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

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

.license-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.license-item i {
    font-size: 28px;
    color: #FF6F61;
}

.license-item span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 5px;
}

.footer-disclaimer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

/* ===================== BREADCRUMB ===================== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 0;
    font-size: 14px;
}

.breadcrumb a {
    color: #FF6F61;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.4);
}

/* ===================== CONTENT AREA ===================== */
.content-area {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
    padding: 20px 0 60px;
}

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

/* ===================== CATEGORY ===================== */
.category-header {
    padding: 20px 0;
}

.category-title {
    font-size: 32px;
    margin-bottom: 10px;
}

.category-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
}

.provider-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px;
}

.provider-tab {
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 25px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

.provider-tab:hover,
.provider-tab.active {
    background: linear-gradient(135deg, #FF6F61, #FF8A80);
    color: #fff;
    border-color: transparent;
}

/* ===================== ARTICLE GRID ===================== */
.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.article-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 111, 97, 0.3);
    box-shadow: 0 10px 30px rgba(255, 111, 97, 0.1);
}

.article-card-thumb {
    height: 180px;
    overflow: hidden;
}

.article-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

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

.article-card-title {
    padding: 15px 18px 8px;
    font-size: 16px;
}

.article-card-title a {
    color: #fff;
    transition: color 0.3s ease;
}

.article-card-title a:hover {
    color: #FF6F61;
}

.article-card-meta {
    padding: 0 18px;
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 10px;
}

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

.article-card-excerpt {
    padding: 0 18px 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.article-card-more {
    display: inline-block;
    padding: 0 18px 18px;
    color: #FF6F61;
    font-size: 13px;
    font-weight: 600;
}

.article-card-more:hover {
    color: #FF8A80;
}

.article-card-more i {
    margin-left: 5px;
    font-size: 11px;
    transition: transform 0.3s ease;
}

.article-card-more:hover i {
    transform: translateX(3px);
}

.no-posts {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.5);
    grid-column: 1 / -1;
}

.no-posts p {
    font-size: 16px;
}

/* ===================== PAGINATION ===================== */
.pagination {
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

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

.pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: all 0.3s ease;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: linear-gradient(135deg, #FF6F61, #FF8A80);
    color: #fff;
    border-color: transparent;
}

/* ===================== SINGLE ARTICLE ===================== */
.single-article {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
}

.single-article-title {
    font-size: 32px;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.single-article-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.single-article-meta i {
    margin-right: 5px;
    color: #FF6F61;
}

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

.single-article-thumb img {
    width: 100%;
    height: auto;
}

.single-article-content {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.8;
}

.single-article-content h2,
.single-article-content h3,
.single-article-content h4 {
    color: #fff;
    margin: 25px 0 15px;
}

.single-article-content p {
    margin-bottom: 15px;
}

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

.single-article-content img {
    border-radius: 8px;
    margin: 15px 0;
}

.single-article-content blockquote {
    border-left: 4px solid #FF6F61;
    padding: 15px 20px;
    margin: 20px 0;
    background: rgba(255, 111, 97, 0.05);
    border-radius: 0 8px 8px 0;
}

.single-article-tags {
    padding-top: 20px;
    margin-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.single-article-tags a {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(255, 111, 97, 0.1);
    border-radius: 20px;
    color: #FF8A80;
    font-size: 13px;
    margin: 3px;
}

.single-article-tags a:hover {
    background: #FF6F61;
    color: #fff;
}

.tag-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

/* ===================== RELATED POSTS ===================== */
.related-posts {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.related-title {
    font-size: 22px;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.related-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.related-card:hover {
    border-color: rgba(255, 111, 97, 0.3);
    transform: translateY(-3px);
}

.related-card-thumb {
    height: 140px;
    overflow: hidden;
}

.related-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-card-title {
    padding: 12px 15px 5px;
    font-size: 14px;
}

.related-card-title a {
    color: #fff;
}

.related-card-title a:hover {
    color: #FF6F61;
}

.related-card-date {
    display: block;
    padding: 0 15px 12px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

/* ===================== PAGE ARTICLE ===================== */
.page-article {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
}

.page-article-title {
    font-size: 32px;
    margin-bottom: 25px;
}

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

.page-article-content {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.8;
}

.page-article-content h2,
.page-article-content h3 {
    color: #fff;
    margin: 25px 0 15px;
}

.page-article-content p {
    margin-bottom: 15px;
}

.page-article-content a {
    color: #FF6F61;
}

/* ===================== SIDEBAR ===================== */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-widget {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
}

.sidebar-title {
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(255, 111, 97, 0.3);
}

.sidebar-title i {
    color: #FF6F61;
    margin-right: 8px;
}

.sidebar-search-form {
    display: flex;
    gap: 8px;
}

.sidebar-search-input {
    flex: 1;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.sidebar-search-input:focus {
    border-color: #FF6F61;
}

.sidebar-search-btn {
    padding: 10px 15px;
    background: linear-gradient(135deg, #FF6F61, #FF8A80);
    border: none;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sidebar-search-btn:hover {
    box-shadow: 0 3px 10px rgba(255, 111, 97, 0.4);
}

.sidebar-categories li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-categories li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.sidebar-categories li a:hover {
    color: #FF6F61;
    padding-left: 5px;
}

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

.sidebar-recent-item {
    display: flex;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-recent-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-recent-thumb {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.sidebar-recent-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-recent-info h4 {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 4px;
}

.sidebar-recent-info h4 a {
    color: #fff;
    transition: color 0.3s ease;
}

.sidebar-recent-info h4 a:hover {
    color: #FF6F61;
}

.sidebar-recent-info span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
}

.sidebar-cta-box {
    background: linear-gradient(135deg, #FF6F61, #FF8A80);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
}

.sidebar-cta-box h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 8px;
}

.sidebar-cta-box p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    margin-bottom: 15px;
}

.sidebar-cta-box .btn-coral-primary {
    background: #fff;
    color: #FF6F61;
    padding: 10px 25px;
    font-size: 14px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

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

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0d1117;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #FF6F61, #FF8A80);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #FF6F61;
}

/* Selection */
::selection {
    background: rgba(255, 111, 97, 0.3);
    color: #fff;
}

/* Focus visible */
*:focus-visible {
    outline: 2px solid #FF6F61;
    outline-offset: 2px;
}

/* ===================== FRONT PAGE OVERRIDES ===================== */
body.home .site-header {
    background: transparent;
    border-bottom: none;
}

body.home .site-header.scrolled {
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 111, 97, 0.2);
}

body.home .main-navigation {
    background: transparent;
}

body.home .notification-bar {
    position: relative;
}

body.home .site-footer {
    display: none;
}

body.home .site-header .header-btn-group .btn-login {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

body.home .story-slide-hero + .site-header .header-time span::before {
    color: #fff;
}
