/*
 * Bet365 / FairPlay Casino High-Fidelity Stylesheet
 * Custom CSS with Premium Dark Mode, Glassmorphism, Neon Accents, and Smooth Micro-Animations.
 */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,600;0,700;0,900;1,400&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

:root {
    --bg-dark: #000000;
    --bg-card: #0c0f12;
    --bg-card-gradient: linear-gradient(145deg, #13191d, #080a0c);
    --bg-card-hover-gradient: linear-gradient(145deg, #1b232a, #0b0e11);

    --accent-green: #01d457;
    --accent-green-dark: #00be39;
    --accent-yellow: #ffe900;
    --accent-yellow-dark: #f6dc0d;

    --text-white: #ffffff;
    --text-gray: #a6b0bc;
    --text-dark: #000000;
    --border-gray: rgba(255, 255, 255, 0.08);
    --border-accent-green: rgba(1, 212, 87, 0.2);
    --border-accent-yellow: rgba(255, 233, 0, 0.2);

    --font-poppins: 'Poppins', sans-serif;
    --font-montserrat: 'Montserrat', sans-serif;

    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-neon-green: 0 0 20px rgba(1, 212, 87, 0.25);
    --shadow-neon-yellow: 0 0 20px rgba(255, 233, 0, 0.25);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-poppins);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    background-image: url('images/bg-body.png');
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

button {
    font-family: var(--font-poppins);
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.cl-yellow {
    color: var(--accent-yellow);
}

.cl-green {
    color: var(--accent-green);
}

/* Container */
.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
}

/* Typography Utilities */
.heading-hero {
    font-family: var(--font-montserrat);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1.5px;
}

.heading-section {
    font-family: var(--font-poppins);
    font-weight: 700;
    line-height: 1.2;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    /*border-bottom: 1px solid var(--border-gray);*/
    transition: var(--transition-smooth);
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.92);
    border-bottom: 1px solid rgba(1, 212, 87, 0.15);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 96px;
    transition: var(--transition-smooth);
}

.header.scrolled .container {
    height: 80px;
}

/* Logo block */
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-link {
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu .mobile-active {
    display: none;
}

.nav-link {
    font-family: var(--font-poppins);
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text-white);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-green);
    transition: var(--transition-smooth);
}

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

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--accent-green);
    font-weight: 900;
    font-size: 18px;
}

.nav-link.active::after {
    width: 100%;
    background-color: var(--accent-green);
    height: 3px;
}

/* Auth Buttons */
.auth-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border-radius: 10px;
    padding: 10px 28px;
    font-size: 16px;
    transition: var(--transition-smooth);
}

.btn-signin {
    border: 2px solid transparent;
    background: linear-gradient(135deg, #1b2025, #0f1215) padding-box,
        linear-gradient(135deg, #3a4754, #1b2025) border-box;
    color: var(--text-white);
}

.btn-signin:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.05);
    background: linear-gradient(135deg, #242b32, #13171b) padding-box,
        linear-gradient(135deg, #4f6071, #242b32) border-box;
}

.btn-signup {
    background: linear-gradient(135deg, var(--accent-green), var(--accent-green-dark));
    color: var(--text-white);
    box-shadow: var(--shadow-neon-green);
}

.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(1, 212, 87, 0.4);
    filter: brightness(1.1);
}

/* Hamburger & Mobile Nav */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    background: none;
    border: none;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-white);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 100px;
    padding-bottom: 80px;
    background-color: var(--bg-dark);
    /*background-image: radial-gradient(circle at 50% 0%, rgba(1, 212, 87, 0.08) 0%, transparent 60%);*/
    overflow: hidden;
}

.hero-banner-container {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-gray);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    margin-bottom: 60px;
    position: relative;
}

.hero-banner-img {
    width: 100%;
    height: 504px;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.9) contrast(1.05);
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
}

.hero-title {
    font-size: 70px;
    color: var(--text-white);
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 0 40px rgba(1, 212, 87, 0.15);
}

/* Features Highlights Row (Checkmarks) */
.hero-highlights {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-icon-wrapper {
    width: 33px;
    height: 33px;
    background: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-neon-green);
}

.check-icon-svg {
    width: 18px;
    height: 18px;
    fill: var(--text-white);
}

.highlight-text {
    font-family: var(--font-poppins);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-white);
}

/* Stats Cards Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stats-card {
    background: var(--bg-card-gradient);
    border: 1px solid var(--border-gray);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition-slow);
}

.stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(255, 233, 0, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.stats-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-accent-yellow);
    box-shadow: var(--shadow-neon-yellow);
    background: var(--bg-card-hover-gradient);
}

.stats-card:hover::before {
    opacity: 1;
}

.stats-num {
    font-size: 50px;
    font-family: var(--font-poppins);
    font-weight: 800;
    color: var(--accent-yellow);
    margin-bottom: 12px;
    line-height: 1;
    letter-spacing: -1px;
}

.stats-label {
    font-family: var(--font-poppins);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-white);
}

/* Jackpot Section */
.jackpot {
    padding: 100px 0;
    background: var(--bg-dark);
    position: relative;
}

.jackpot-header {
    text-align: center;
    max-width: 950px;
    margin: 0 auto 64px auto;
}

.jackpot-title {
    font-size: 55px;
    margin-bottom: 24px;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.jackpot-subtitle {
    font-family: var(--font-montserrat);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-white);
    line-height: 1.4;
}

/* Jackpot cards flex row */
.jackpot-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.jackpot-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-gray);
    aspect-ratio: 308 / 355;
    position: relative;
    cursor: pointer;
    background: #111;
    transition: var(--transition-slow);
}

.jackpot-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.jackpot-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: var(--transition-smooth);
}

.jackpot-card-brand {
    font-size: 24px;
    font-weight: 800;
    color: var(--accent-yellow);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transform: translateY(10px);
    opacity: 0.8;
    transition: var(--transition-smooth);
}

.jackpot-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 233, 0, 0.4);
    box-shadow: 0 15px 40px rgba(255, 233, 0, 0.15);
}

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

.jackpot-card:hover .jackpot-card-brand {
    transform: translateY(0);
    opacity: 1;
    text-shadow: 0 0 15px rgba(255, 233, 0, 0.6);
}

/* Jackpot footer provider listing */
.jackpot-providers-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid var(--border-gray);
    padding-top: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.jackpot-provider-tag {
    font-size: 30px;
    font-weight: 700;
    color: var(--accent-yellow);
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.jackpot-provider-tag:hover {
    color: var(--text-white);
    text-shadow: 0 0 15px var(--accent-yellow);
    transform: scale(1.05);
}

/* About Us Section */
.about {
    padding: 100px 0;
    background: var(--bg-dark);
    position: relative;
}

.about-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-visual-side {
    flex: 1.1;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.about-img-frame {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid var(--border-gray);
    background: #0f1216;
}

.about-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    filter: brightness(0.95);
    transition: var(--transition-slow);
}

.about-visual-side:hover .about-img {
    transform: scale(1.03);
}

.about-info-side {
    flex: 0.9;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-tag {
    font-size: 30px;
    font-weight: 700;
    color: var(--accent-green);
    letter-spacing: 1px;
}

.about-content-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-item {
    padding-left: 20px;
    border-left: 3px solid var(--border-gray);
    transition: var(--transition-smooth);
}

.about-item:hover {
    border-left-color: var(--accent-green);
}

.about-item-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-item-title-special {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-green);
    margin-bottom: 8px;
}

.about-item-desc {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Why Choose Us & Providers */
.providers {
    padding: 100px 0;
    background: #020015;
    position: relative;

}

.providers-divider {
    width: 100%;
    /*background: var(--border-gray);*/
    margin-bottom: 0;
    border-top: 1px solid var(--border-gray);
    border-bottom: 1px solid var(--border-gray);
}

.providers-divider h2 {
    margin: 20px 0;
}

.providers-title {
    font-size: 45px;
    color: var(--accent-green);
    text-align: center;
    margin-bottom: 12px;
}

.providers-subtitle {
    font-size: 30px;
    font-weight: 700;
    color: var(--text-white);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}
.providers-subtitle::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 200px;
    height: 1px;
    background-color: var(--accent-yellow);
    transform: translateY(-50%);
}
.providers-subtitle::after{
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 200px;
    height: 1px;
    background-color: var(--accent-yellow);
    transform: translateY(-50%);
}
/* Logo slider container */
.providers-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

/*.providers-slider-container::before,
.providers-slider-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.providers-slider-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark) 0%, transparent 100%);
}

.providers-slider-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark) 0%, transparent 100%);
}*/

.providers-track {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;
    animation: scrollLogos 25s linear infinite;
}

.provider-logo-card {
    width: 300px;
    height: 145px;
    /* background: var(--bg-card-gradient); */
    border: 1px solid var(--border-gray);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    transition: var(--transition-smooth);
}

.provider-logo-card img {
    max-height: 80px;
    max-width: 80%;
    object-fit: contain;
    /*filter: grayscale(1) brightness(0.8) contrast(1.2);*/
    transition: var(--transition-smooth);
}

.provider-logo-card:hover {
    border-color: var(--border-accent-green);
    background: var(--bg-card-hover-gradient);
    box-shadow: var(--shadow-neon-green);
    transform: translateY(-4px);
}

.provider-logo-card:hover img {
    filter: grayscale(0) brightness(1) contrast(1);
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-340px * 4));
        /* 300px card width + 40px gap */
    }
}

/* Feature/Plan 1 Section */
.features {
    padding: 100px 0;
    background: var(--bg-dark);
    position: relative;
    border-top: 1px solid var(--border-gray);
}

.features-tag {
    font-size: 25px;
    font-weight: 700;
    color: var(--accent-yellow);
    text-align: center;
    margin-bottom: 12px;
}

.features-title {
    font-size: 55px;
    font-weight: 900;
    color: var(--text-white);
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 60px auto;
}

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

.features-card {
    background: var(--bg-card-gradient);
    border: 1px solid var(--border-gray);
    border-radius: 20px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-slow);
}

.features-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(1, 212, 87, 0.04) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.features-card:hover {
    transform: translateY(-10px);
    border-color: var(--border-accent-green);
    box-shadow: var(--shadow-neon-green);
    background: var(--bg-card-hover-gradient);
}

.features-card:hover::before {
    opacity: 1;
}

.features-card-title {
    font-size: 25px;
    font-weight: 900;
    color: var(--accent-yellow);
    margin-bottom: 24px;
    line-height: 1.2;
}

.features-card-desc {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Symmetrical Slots Carousel (Plan Section 2) */
.slots-showcase {
    padding: 100px 0;
    background: var(--bg-dark);
    position: relative;
    border-top: 1px solid var(--border-gray);
    overflow: hidden;
}

.slots-tag {
    font-size: 25px;
    font-weight: 700;
    color: var(--accent-yellow);
    text-align: center;
    margin-bottom: 12px;
}

.slots-title {
    font-size: 45px;
    font-weight: 900;
    color: var(--text-white);
    text-align: center;
    margin-bottom: 60px;
}

/* Carousel layout wrapper */
.slots-carousel-container {
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;
    overflow: hidden;
    position: relative;
}

.slots-carousel-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    min-height: 555px;
    transition: transform 0.5s ease-out;
}

.slot-item {
    flex-shrink: 0;
    border-radius: 24px;
    overflow: hidden;
    /*border: 1px solid var(--border-gray);*/
    /*background: #0f1216;*/
    transition: var(--transition-slow);
    cursor: pointer;
    position: relative;
    /*box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);*/
}

/* Symmetrical sizes from node coordinates */
.slot-tiny {
    width: 200px;
    height: 200px;
    opacity: 0.3;
    transform: scale(0.8);
    filter: blur(2px) grayscale(0.8);
}

.slot-small {
    width: 270px;
    height: 270px;
    opacity: 0.5;
    transform: scale(0.9);
    filter: blur(1px) grayscale(0.5);
}

.slot-medium {
    width: 340px;
    height: 340px;
    opacity: 0.8;
    transform: scale(0.95);
    filter: grayscale(0.2);
}

.slot-large {
    width: 510px;
    height: 510px;
    opacity: 1;
    transform: scale(1.05);
    filter: none;
    z-index: 10;
    /*border-color: rgba(1, 212, 87, 0.4);*/
    /*box-shadow: 0 20px 50px rgba(1, 212, 87, 0.15), 0 0 30px rgba(255, 233, 0, 0.1);*/
}

.slot-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.slot-large img:hover {
    transform: scale(1.05);
}

.slot-item:hover {
    opacity: 1;
    filter: none;
}

/* Carousel controls */
.slots-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    background: var(--bg-card-gradient);
    border: 1px solid var(--border-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
}

.carousel-btn:hover {
    border-color: var(--accent-green);
    box-shadow: var(--shadow-neon-green);
    color: var(--accent-green);
    transform: scale(1.08);
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Call-to-action (CTA) Section */
.cta-banner {
    padding: 120px 0;
    background: var(--bg-dark);
    position: relative;
    border-top: 1px solid var(--border-gray);
    overflow: hidden;
}

.cta-banner-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 90% 50%, rgba(1, 212, 87, 0.08) 0%, transparent 60%);
    z-index: 1;
}

.cta-banner .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.cta-info {
    flex: 1.1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cta-tag {
    font-family: var(--font-montserrat);
    font-size: 25px;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 0.5px;
}

.cta-headline {
    font-size: 55px;
    font-weight: 900;
    line-height: 1.2;
    color: var(--text-white);
}

.cta-btn-wrapper {
    margin-top: 16px;
}

.cta-btn {
    padding: 16px 45px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-green-dark));
    color: var(--text-white);
    box-shadow: var(--shadow-neon-green);
    display: inline-block;
    transition: var(--transition-smooth);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(1, 212, 87, 0.4);
    filter: brightness(1.15);
}

.cta-mockup-side {
    flex: 0.9;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.cta-mockup-main {
    width: 579px;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid var(--border-gray);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 3;
    transition: var(--transition-slow);
}

.cta-mockup-behind {
    position: absolute;
    top: -80px;
    right: 80px;
    width: 400px;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid var(--border-gray);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    z-index: 2;
    opacity: 0.6;
    transition: var(--transition-slow);
}

.cta-mockup-side:hover .cta-mockup-main {
    transform: translateY(-8px) rotate(-1deg);
    box-shadow: 0 40px 80px rgba(1, 212, 87, 0.15);
}

.cta-mockup-side:hover .cta-mockup-behind {
    transform: translateY(-15px) rotate(1deg);
    opacity: 0.8;
}

/* Blog Section */
.blog {
    padding: 100px 0;
    background: var(--bg-dark);
    border-top: 1px solid var(--border-gray);
    position: relative;
}

.blog-section-header {
    margin-bottom: 60px;
    text-align: center;
}

.blog-tagline {
    font-size: 45px;
    font-weight: 700;
    color: var(--text-white);
}

/* Masonry-inspired blog grid */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr 1.8fr 1fr;
    gap: 30px;
    align-items: center;
}

.blog-card {
    /*background: var(--bg-card-gradient);*/
    border-radius: 20px;
    overflow: hidden;
    /*border: 1px solid var(--border-gray);*/
    display: flex;
    flex-direction: column-reverse;
    transition: var(--transition-slow);
}

.blog-card-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card-content {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 0;
    text-align: center;
}

.blog-card-title {
    font-size: 25px;
    font-weight: 700;
    color: var(--accent-yellow-dark);
    line-height: 1.3;
    transition: var(--transition-smooth);
}

.blog-card-title:hover {
    color: var(--accent-yellow);
}

.blog-card-desc {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Live badges for special videos */
.blog-live-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 5;
}

.live-dot {
    width: 8px;
    height: 8px;
    background-color: #ff334b;
    border-radius: 50%;
    animation: livePulse 1.5s infinite;
}

@keyframes livePulse {
    0% {
        transform: scale(0.9);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        transform: scale(0.9);
        opacity: 0.5;
    }
}

/* Video main card overlay play button */
.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
}

.play-btn-circle {
    width: 50px;
    height: 50px;
    background: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
}

.play-btn-circle svg {
    width: 18px;
    height: 18px;
    fill: var(--bg-dark);
    margin-left: 2px;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(246, 220, 13, 0.25);
    box-shadow: var(--shadow-neon-yellow);
}

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

.blog-card:hover .play-btn-circle {
    transform: scale(1.15);
    background: var(--accent-yellow);
    box-shadow: var(--shadow-neon-yellow);
}

/* Special size for middle features */
.blog-grid .blog-card.blog-featured {
    grid-column: 2;
}

.blog-grid .blog-card.blog-featured .blog-card-img-wrapper {
    aspect-ratio: 649 / 314;
}

.blog-grid .blog-card.blog-featured .blog-card-title {
    font-size: 55px;
    font-weight: 700;
}

.blog-grid .blog-card.blog-featured .blog-card-desc {
    font-size: 30px;
    font-weight: 400;
    color: var(--text-white);
}

/* Copyright text row above footer */
.copyright-licensing {
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid var(--border-gray);
    background: var(--bg-dark);
}

.license-paragraph {
    max-width: 812px;
    margin: 0 auto;
    font-size: 25px;
    color: var(--text-white);
    line-height: 1.5;
}

/* Footer Section */
.footer {
    padding: 80px 0 0 0;
    background: var(--bg-dark);
    border-top: 1px solid var(--border-gray);
    position: relative;
}

.footer-white-overlay {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 395px;
    background: var(--text-white);
    opacity: 0.01;
    /* Extremely subtle highlight shape, maintaining premium dark feel */
    pointer-events: none;
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr 1.3fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-column-title {
    font-size: 21px;
    font-weight: 600;
    color: var(--accent-yellow-dark);
    margin-bottom: 30px;
}

/* Quick links list style */
.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-link-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    color: var(--text-white);
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-link-item:hover {
    color: var(--accent-yellow);
    border-bottom-color: rgba(255, 233, 0, 0.3);
}

.footer-link-arrow {
    width: 24px;
    height: 24px;
    fill: currentColor;
    transition: var(--transition-smooth);
}

.footer-link-item:hover .footer-link-arrow {
    transform: translateY(2px);
}

/* Contact Coordinates column */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon-wrapper {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-svg {
    width: 16px;
    height: 16px;
    fill: var(--accent-yellow-dark);
}

.contact-text-coord {
    font-size: 16px;
    color: var(--text-white);
    line-height: 1.5;
}

/* Subscribe column styles */
.footer-newsletter-title {
    font-size: 21px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 24px;
}

.newsletter-form {
    display: flex;
    width: 100%;
    max-width: 400px;
    height: 48px;
    background: #3e4142;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0 20px;
    color: var(--text-white);
    font-family: var(--font-poppins);
    font-size: 12px;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-submit-btn {
    background-color: var(--accent-yellow-dark);
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 700;
    padding: 0 24px;
    height: 100%;
}

.newsletter-submit-btn:hover {
    background-color: var(--accent-yellow);
    box-shadow: var(--shadow-neon-yellow);
}

/* Social links row */
.social-links-row {
    display: flex;
    gap: 16px;
}

.social-circle-btn {
    width: 40px;
    height: 40px;
    background-color: var(--accent-yellow-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
}

.social-circle-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: var(--transition-smooth);
}

.social-circle-btn:hover {
    background-color: var(--text-white);
    color: var(--bg-dark);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    transform: scale(1.1) translateY(-2px);
}

/* Bottom copyright info block */
.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--border-gray);
    padding-top: 10px;
}

.footer-bottom .container {
    display: block;
    margin-bottom: 10px;
}

.footer-copyright-text {
    font-size: 20px;
    color: var(--text-white);
}

/* Modals System (Sign In & Sign Up) */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-window {
    width: 100%;
    max-width: 450px;
    background: #0f1215;
    border: 1px solid var(--border-accent-green);
    box-shadow: var(--shadow-neon-green);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

.modal-overlay.active .modal-window {
    transform: translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--text-gray);
    font-size: 24px;
    cursor: pointer;
}

.modal-close-btn:hover {
    color: var(--text-white);
}

.modal-header {
    padding: 40px 40px 20px 40px;
}

.modal-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-green);
    margin-bottom: 8px;
}

.modal-desc {
    font-size: 14px;
    color: var(--text-gray);
}

.modal-body {
    padding: 0 40px 40px 40px;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-white);
}

.form-input {
    background: #181d22;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    height: 48px;
    padding: 0 16px;
    color: var(--text-white);
    font-family: var(--font-poppins);
    font-size: 14px;
    transition: var(--transition-smooth);
}

.form-input:focus {
    border-color: var(--accent-green);
    box-shadow: 0 0 10px rgba(1, 212, 87, 0.15);
}

.form-submit-btn {
    width: 100%;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-green-dark));
    color: var(--text-white);
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    box-shadow: var(--shadow-neon-green);
    margin-top: 10px;
}

.form-submit-btn:hover {
    box-shadow: 0 6px 20px rgba(1, 212, 87, 0.4);
    filter: brightness(1.1);
}

.form-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-gray);
}

.form-footer-link {
    color: var(--accent-green);
    font-weight: 600;
}

/* Toast Messages */
.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toast {
    background: #0f1215;
    border-left: 4px solid var(--accent-green);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), var(--shadow-neon-green);
    color: var(--text-white);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    transform: translateX(120%);
    transition: var(--transition-smooth);
}

.toast.active {
    transform: translateX(0);
}

.toast-yellow {
    border-left-color: var(--accent-yellow);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), var(--shadow-neon-yellow);
}

/* Responsive Overrides */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 55px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .jackpot-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-row {
        flex-direction: column;
        gap: 45px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .blog-grid .blog-card.blog-featured {
        grid-column: 1;
    }

    .footer .container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .header .container {
        height: 80px;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #000;
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        transition: var(--transition-smooth);
        z-index: 999;
        border-top: 1px solid var(--border-gray);
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .auth-group {
        display: none;
    }

    .auth-group.mobile-active {
        display: flex;
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 48px);
        justify-content: center;
    }

    .cta-banner .container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .cta-mockup-side {
        justify-content: center;
        width: 100%;
    }

    .cta-mockup-behind {
        display: none;
    }

    .slot-large {
        width: 350px;
        height: 350px;
    }

    .slot-medium,
    .slot-small,
    .slot-tiny {
        display: none;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-banner-img {
        height: 300px;
    }

    .hero-highlights {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .jackpot-grid {
        grid-template-columns: 1fr;
    }

    .jackpot-title {
        font-size: 32px;
    }

    .jackpot-subtitle {
        font-size: 16px;
    }

    .about-tag {
        font-size: 24px;
    }

    .about-item-title-special {
        font-size: 16px;
    }

    .features-title {
        font-size: 32px;
    }

    .slots-title {
        font-size: 30px;
    }

    .slot-large {
        width: 280px;
        height: 280px;
    }

    .cta-headline {
        font-size: 32px;
    }

    .blog-tagline {
        font-size: 28px;
    }

    .blog-grid .blog-card.blog-featured .blog-card-title {
        font-size: 30px;
    }

    .blog-grid .blog-card.blog-featured .blog-card-desc {
        font-size: 18px;
    }

    .license-paragraph {
        font-size: 16px;
    }

    .footer .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
/* ==================================================== */
/*                  ARCHIVE PAGE STYLES                 */
/* ==================================================== */

.blog-archive-hero {
    padding: 180px 0 60px;
    background: var(--bg-dark);
    position: relative;
    text-align: center;
    border-bottom: 1px solid var(--border-gray);
    overflow: hidden;
}
.blog-archive-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100%;
    background: radial-gradient(circle at top, rgba(1, 212, 87, 0.15) 0%, transparent 70%);
    pointer-events: none;
}
.blog-archive-hero h1 {
    font-family: var(--font-montserrat);
    font-size: 55px;
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 0 30px rgba(1, 212, 87, 0.2);
}
.archive-sub {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.blog-archive-list {
    padding: 60px 0 100px;
    background: var(--bg-dark);
}
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
}
.blog-pagination a, .blog-pagination span, .blog-pagination li {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    font-weight: 600;
    background: var(--bg-card-gradient);
    border: 1px solid var(--border-gray);
    color: var(--text-gray);
    transition: var(--transition-smooth);
    cursor: pointer;
}
.blog-pagination a:hover, .blog-pagination li:hover a {
    color: var(--accent-green);
    border-color: var(--border-accent-green);
    box-shadow: var(--shadow-neon-green);
    transform: translateY(-3px);
}
.blog-pagination .active, .blog-pagination .active a {
    background: var(--accent-green);
    color: var(--bg-dark);
    border-color: var(--accent-green);
    box-shadow: var(--shadow-neon-green);
}

/* ==================================================== */
/*                  SINGLE POST STYLES                  */
/* ==================================================== */

.breadcrumb{
    align-items: center;
    display: flex;
    justify-content: center;
    gap: 10px;
    position: relative;
    list-style-type: none;
}
.breadcrumb li{
    position: relative;
    padding-right: 20px;
}
.breadcrumb li::after{
    content: '>';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
.breadcrumb li:last-child::after{
    content: '';
}
.breadcrumb li.active{
    color: var(--accent-yellow);
}

.main-content {
    /* padding-top: 140px; */
    background: var(--bg-dark);
    min-height: calc(100vh - 400px);
}

.nwm-post {
    padding: 40px 0 100px;
    position: relative;
}

.post-featured-image {
    width: 100%;
    max-height: 600px;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 40px;
    border: 1px solid var(--border-gray);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    position: relative;
}

.post-featured-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
    pointer-events: none;
}

.post-thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.post-featured-image:hover .post-thumbnail-img {
    transform: scale(1.03);
}

.nwm-post h1 {
    font-family: var(--font-montserrat);
    font-size: 50px;
    font-weight: 800;
    color: var(--accent-yellow);
    margin-bottom: 40px;
    line-height: 1.2;
    text-align: center;
}

.nwm-post-content {
    margin: 0 auto;
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.8;
    background: var(--bg-card-gradient);
    padding: 60px;
    border-radius: 24px;
    border: 1px solid var(--border-gray);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nwm-post-content p {
    margin-bottom: 24px;
}

.nwm-post-content h2 {
    font-family: var(--font-montserrat);
    font-size: 32px;
    color: var(--text-white);
    margin: 50px 0 24px;
    border-bottom: 1px solid var(--border-gray);
    padding-bottom: 12px;
}

.nwm-post-content h3 {
    font-family: var(--font-montserrat);
    font-size: 26px;
    color: var(--text-white);
    margin: 40px 0 20px;
}

.nwm-post-content ul, .nwm-post-content ol {
    margin-bottom: 24px;
    padding-left: 20px;
}

.nwm-post-content li {
    margin-bottom: 12px;
    position: relative;
}

.nwm-post-content img {
    border-radius: 16px;
    margin: 30px 0;
    border: 1px solid var(--border-gray);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nwm-post-content a {
    color: var(--accent-green);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dashed var(--accent-green);
    transition: var(--transition-smooth);
}

.nwm-post-content a:hover {
    color: var(--accent-yellow);
    border-bottom-color: var(--accent-yellow);
}

.nwm-post-content blockquote {
    border-left: 4px solid var(--accent-green);
    padding: 24px 30px;
    background: rgba(1, 212, 87, 0.05);
    margin: 40px 0;
    border-radius: 0 16px 16px 0;
    font-style: italic;
    color: var(--text-white);
    font-size: 20px;
}

@media (max-width: 991px) {
    .blog-archive-hero h1, .nwm-post h1 {
        font-size: 40px;
    }
    .nwm-post-content {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .blog-archive-hero h1, .nwm-post h1 {
        font-size: 32px;
    }
    .nwm-post-content {
        padding: 24px;
        font-size: 16px;
    }
    .blog-archive-hero {
        padding: 140px 0 40px;
    }
}



/* Post Card Styling */
.post-card {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.2s, box-shadow 0.28s;
}
.post-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 20px 45px var(--shadow-neon-yellow);
}
.post-card-link-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
}
.post-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-bottom: 1.5px solid var(--border);
}
.post-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.post-card:hover .post-card-img img {
  transform: scale(1.05);
}
.post-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: rgba(0, 180, 216, 0.95);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.post-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.post-card-meta {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
  font-weight: 500;
}
.post-card-title {
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 12px;
  transition: color 0.2s;
}
.post-card:hover .post-card-title {
  color: var(--primary);
}
.post-card-excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 20px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-card-more {
  font-size: 13px;
  font-weight: 800;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.post-card:hover .post-card-more {
  gap: 8px;
}