/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Poppins:wght@300;400;500;600;700&display=swap');

@font-face {
    font-family: 'Convero';
    src: url('../assets/CONVERO.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    /* Updated Reds: More vibrant but professional */
    --primary-red: #a02223;
    /* Vibrant Crimson */
    --secondary-orange: #990000;
    /* Deep Blood Red for gradients */

    /* Layout preservation colors */
    --bg-obsidian: #050608;
    --volt-cyan: #00F5FF;
    --neon-amber: #FFBF00;
    --steel-grey: #1F2933;
    --ion-gold: #FFC83D;
    --text-white: #FFFFFF;
    --text-muted: #9AA3AD;

    /* Updated Gradients for a smoother look */
    --hero-gradient: linear-gradient(135deg, #a02223 0%, #990000 100%);
    --card-gradient: linear-gradient(145deg, rgba(20, 23, 28, 0.9) 0%, rgba(5, 6, 8, 0.95) 100%);
    --glow-gradient: radial-gradient(circle at center, rgba(160, 34, 35, 0.15) 0%, transparent 70%);

    /* Design Tokens */
    --container-width: 1200px;
    --header-height: 90px;
    /* More breathing room */
    --radius-sm: 4px;
    /* Sharper geometry */
    --radius-md: 8px;

    /* Transitions */
    --ease-kinetic: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Animations – use small offset to avoid clipping with overflow */
@keyframes slideInDown {
    from {
        transform: translate3d(0, -24px, 0);
        visibility: visible;
        opacity: 0;
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.animate__slideInDown {
    animation-name: slideInDown;
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

/* Stagger Delays */
.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

/* Custom Cursor */
.cursor-follower {
    position: fixed;
    width: 32px;
    height: 32px;
    background-color: white;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease;
    opacity: 0;
    /* Hidden initially until moved */
}

/* Cursor Active State (Scale Up) */
.cursor-follower.active {
    width: 150px;
    height: 150px;
}

/* Hide custom cursor on touch devices (no hover) – avoids stuck/odd cursor on mobile */
@media (hover: none) {
    .cursor-follower {
        display: none !important;
    }
}

/* Base Reset & Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

/* Force Dark Background on ALL WordPress Elements */
html {
    background-color: var(--bg-obsidian) !important;
    background: var(--bg-obsidian) !important;
}

body {
    background-color: var(--bg-obsidian) !important;
    background: var(--bg-obsidian) !important;
    color: var(--text-white);
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Force Dark Background on Astra Theme Wrappers */
#page,
.site,
.ast-container,
.site-content,
.ast-content,
.entry-content,
.ast-separate-container .ast-article-single,
.ast-separate-container .ast-article-post,
.ast-plain-container,
.ast-page-builder-template,
#primary,
#content,
.hfeed,
.site-main,
main,
article {
    background-color: var(--bg-obsidian) !important;
    background: var(--bg-obsidian) !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Anton', impact, sans-serif;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* Tactical / Tech UI Utilities */
.tech-panel {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(10, 10, 10, 0.5);
}

.tech-panel::before,
.tech-panel::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary-red);
    transition: all 0.3s ease;
}

/* Top-Left and Bottom-Right Accents */
.tech-panel::before {
    top: -3px;
    left: -3px;
}

.tech-panel::after {
    bottom: -3px;
    right: -3px;
}

.tech-panel:hover::before,
.tech-panel:hover::after {
    background: var(--volt-cyan);
    transform: scale(1.5);
}

/* Horizontal Divider with Tech Dot */
.tech-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    width: 100%;
    margin: 40px 0;
    position: relative;
}

.tech-divider::after {
    content: '';
    position: absolute;
    right: 0;
    top: -2px;
    width: 20px;
    height: 5px;
    background: var(--primary-red);
}


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

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
    /* Generous padding */
}

/* Header */
/* Force Astra Header to be Glass */
.site-header {
    background-color: rgba(5, 6, 8, 0.85) !important;
    background: rgba(5, 6, 8, 0.85) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    position: fixed !important;
    top: 0;
    z-index: 999;
    width: 100%;
}

/* Force ALL inner containers to be transparent */
.site-header .ast-container,
.site-header .ast-builder-grid-row,
.site-header .ast-builder-grid-row-container,
.ast-main-header-wrap .ast-container,
.main-header-bar .ast-container,
.ast-primary-header-bar .ast-container,
.site-header>*,
.ast-main-header-wrap>*,
.main-header-bar>* {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    outline: none !important;
}

/* CRITICAL: Force Astra Header Container to 1200px to match design */
.site-header .ast-main-header-wrap .ast-container,
.main-header-bar .ast-container {
    max-width: var(--container-width) !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 40px !important;
}

/* Force below/above header bar (e.g. orange strip with HOME) to dark – overrides Customizer */
.ast-below-header-wrap,
.ast-below-header-bar,
.ast-above-header-wrap,
.ast-above-header-bar,
.site-header .ast-builder-grid-row[data-section*="below-header"],
.site-header .ast-builder-grid-row[data-section*="above-header"] {
    background: #050608 !important;
    background-color: #050608 !important;
}

.header {
    height: var(--header-height);
    background: rgba(5, 6, 8, 0.85);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
}

.header-inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Convero', sans-serif;
    font-size: 10px;
    display: flex;
    align-items: center;
    color: #FFFFFF !important;
}

.logo a {
    color: #FFFFFF !important;
    text-decoration: none;
    display: flex !important;
    /* Force Flex container */
    flex-direction: row !important;
    /* Force horizontal row */
    align-items: center !important;
    /* Vertically center */
    flex-wrap: nowrap !important;
    /* Prevent ANY wrapping */
    white-space: nowrap !important;
    /* Prevent text wrapping */
}

.logo-mark {
    color: var(--primary-red) !important;
    font-size: 24px !important;
    line-height: 1;
    text-shadow: 0 0 10px rgba(225, 6, 0, 0.5);
    margin-right: 22px !important;
    display: flex;
    align-items: center;
    transform: none !important;
}


.logo i {
    color: var(--primary-red) !important;
    font-size: 11.8px !important;
    /* Ensure fallback matches size */
}

.logo span {
    line-height: 1;
    /* Force tight line height for text */
    display: flex;
    align-items: center;
    margin-left: 0px !important;
    /* Reset any potential negative margins */
}

.logo-suffix {
    color: #889096 !important;
    /* Force Grey to override parent white */
    /* Keep suffix Grey */
    margin-left: 2px;
    /* Space between THRILL and COMPETITIONS */
}

.nav {
    display: flex;
    gap: 40px;
}

/* Desktop header nav – leave as-is (no overrides). Mobile-only overrides are in @media below. */
.nav-link:hover,
.nav-link.active {
    color: var(--text-white);
}

.auth-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 24px;
    cursor: pointer;
}

/* Force Capitalization on Header Button */
.ast-header-button-1 .ast-custom-button,
.ast-header-button-1 .ast-custom-button-link,
.ast-builder-button-wrap .ast-custom-button {
    text-transform: uppercase !important;
}

/* Buttons */
.btn-primary,
.btn-primary-sm,
button,
.ast-button,
.wp-block-button__link,
.ast-custom-button,
.ast-header-button-1 .ast-custom-button-link,
input[type="submit"] {
    background: var(--hero-gradient) !important;
    color: var(--text-white) !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    border-radius: var(--radius-sm) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    z-index: 1 !important;
    border: none !important;
    cursor: pointer !important;
    box-shadow: 0 4px 15px rgba(225, 6, 0, 0.2) !important;
    transition: all 0.3s ease !important;
}

.btn-primary {
    padding: 18px 36px;
    font-size: 15px;
    letter-spacing: 1.5px;
}

/* Neon edge overlay for primary button */
.btn-primary::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(90deg, #E10600, #FF5A1F);
    z-index: -1;
    border-radius: calc(var(--radius-sm) + 2px);
    opacity: 0;
    transition: opacity 0.3s ease;
    filter: blur(8px);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(160, 34, 35, 0.4);
    color: #FFFFFF !important;
    /* Force white text */
    background: linear-gradient(135deg, #b83334 0%, #a02223 100%) !important;
}

.btn-primary:hover::before {
    opacity: 0.6;
}

.btn-primary-sm {
    padding: 12px 24px;
    font-size: 12px;
    letter-spacing: 1px;
}

.btn-ghost,
.btn-ghost-sm {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-white);
    font-weight: 600;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.btn-ghost {
    padding: 18px 36px;
    font-size: 15px;
    letter-spacing: 1.5px;
}

.btn-ghost:hover {
    border-color: var(--volt-cyan);
    color: var(--volt-cyan);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.15);
    text-shadow: 0 0 8px rgba(0, 245, 255, 0.4);
}

.btn-ghost-sm {
    padding: 12px 24px;
    font-size: 12px;
}

/* Hero Section – no space above (home page only) */
/* Hero: 20px space below header on home, then content */
.hero {
    position: relative;
    padding: 20px 0 40px !important;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow-x: hidden;
    overflow-y: visible;
    /* Don't clip left column text or slideInDown animation */
}

/* Home page: minimal top padding on wrappers so hero + its 20px padding sit under header */
body.home .site-main,
body.home #primary,
body.home .ast-container,
body.home .site-content .ast-container,
.home .site-main,
.home #primary {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* Hero background overlay – subtle gradient (no harsh banding) */
.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 120% 80% at 80% 20%, rgba(160, 34, 35, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 100% 100% at 20% 80%, rgba(0, 245, 255, 0.03) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

/* Speed lines using CSS gradients */
.hero-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(-45deg,
            transparent,
            transparent 100px,
            rgba(255, 255, 255, 0.01) 100px,
            rgba(255, 255, 255, 0.01) 101px);
    z-index: -1;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-left {
    position: relative;
    z-index: 2;
    overflow: visible;
    min-width: 0;
    /* Prevent grid from clipping title (e.g. "SECONDS AWAY") */
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 2px;
    background: rgba(225, 6, 0, 0.1);
    color: var(--primary-red);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    border: 1px solid rgba(225, 6, 0, 0.3);
    margin-bottom: 24px;
    box-shadow: 0 0 15px rgba(225, 6, 0, 0.1);
}

.live-dot {
    width: 6px;
    height: 6px;
    background: var(--primary-red);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary-red);
    animation: flash 1.5s infinite ease-in-out;
}

@keyframes flash {

    0%,
    100% {
        opacity: 0.4;
    }

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

.hero-title {
    font-size: 80px;
    line-height: 0.9;
    margin-bottom: 20px;
    color: white;
    text-transform: uppercase;
    overflow: visible;
    /* Prevent first letters (S, F, E) from being clipped */
}

.tech-panel {
    background: rgba(0, 245, 255, 0.05);
    border: 1px solid rgba(0, 245, 255, 0.2);
    padding: 10px 15px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--volt-cyan);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.1);
    margin-top: 20px;
}

.tech-accent {
    width: 8px;
    height: 8px;
    background: var(--volt-cyan);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--volt-cyan);
}

.hero-title .highlight {
    color: transparent;
    -webkit-text-stroke: 1px var(--text-white);
    position: relative;
}

.hero-sub {
    font-size: 18px;
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 32px;
    max-width: 500px;
    border-left: 2px solid var(--primary-red);
    padding-left: 20px;
}

.cta-row {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
}

/* Hero Right / Prize */
.hero-right {
    position: relative;
    min-width: 0;
    overflow: hidden;
    /* Contain carousel only on right column */
}

.prize-wrapper {
    position: relative;
    z-index: 10;
}

/* Neon glow behind car */
.prize-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(225, 6, 0, 0.2) 0%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
    animation: pulse-glow 6s infinite ease-in-out;
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* ===== HERO CAROUSEL STYLES ===== */
.hero-carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    max-width: 100%;
}

.hero-carousel-track {
    display: flex;
    transition: transform 0.5s var(--ease-kinetic);
    width: 100%;
}

.hero-carousel-slide {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    position: relative;
    padding: 10px 20px;
}

/* Carousel Navigation Controls */
.carousel-nav-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.nav-square-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: var(--text-white);
    transition: all 0.3s ease;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%, 0 10%);
}

.nav-square-btn.prev {
    background: linear-gradient(135deg, #3a0000 0%, #1a0000 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-square-btn.prev:hover {
    background: linear-gradient(135deg, #590000 0%, #2a0000 100%);
    border-color: var(--primary-red);
}

.nav-square-btn.next {
    background: var(--hero-gradient);
    box-shadow: 0 4px 15px rgba(225, 6, 0, 0.3);
}

.nav-square-btn.next:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 6, 0, 0.5);
}

.nav-square-btn i {
    transition: transform 0.3s ease;
}

.nav-square-btn:hover i {
    transform: scale(1.2);
}

/* ===== PRIZE CARD STYLES (HERO VERSION) ===== */
/* Hero-specific prize card (maintains 3D effect) */
.hero .prize-card {
    display: block !important;
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s var(--ease-kinetic);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero .prize-card:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
    border-color: var(--volt-cyan);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.15);
}

.hero .prize-card .prize-img,
.hero .prize-card img {
    display: block;
    width: 100%;
    height: auto;
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    object-fit: cover;
}

.hero .prize-card .prize-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
}

.hero .prize-card .prize-name,
.hero .prize-card h2 {
    font-family: 'Anton', sans-serif;
    font-size: 42px;
    line-height: 1;
    text-transform: uppercase;
    background: linear-gradient(90deg, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: white;
    margin-bottom: 5px;
}

.hero .prize-card .prize-value {
    color: var(--volt-cyan);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.4);
}

/* ===== PRODUCT CARD STYLES (LIVE COMPETITIONS) ===== */
/* Standard prize card for product listings */
.prize-card {
    position: relative;
    background: #0b0e11;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s var(--ease-kinetic);
    display: flex !important;
    flex-direction: column !important;
}

.prize-card:hover {
    transform: translateY(-5px);
    border-color: var(--volt-cyan);
    box-shadow: 0 10px 30px rgba(0, 245, 255, 0.1);
}

/* Image Wrapper */
.prize-card-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #000;
}

.prize-card-img,
.prize-card .prize-img,
.prize-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    order: 1 !important;
}

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

/* Badge (LIVE NOW, DRAWING SOON, etc.) */
.prize-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    background: var(--primary-red);
    color: white;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    border-radius: 2px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.prize-card-badge.drawing-soon {
    background: var(--neon-amber);
    color: #000;
}

/* Content Wrapper */
.prize-card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Title */
.prize-card-title,
.prize-card h3,
.prize-card .prize-name {
    font-family: 'Anton', sans-serif;
    font-size: 24px;
    line-height: 1;
    text-transform: uppercase;
    color: white;
    margin-bottom: 15px;
    order: 2 !important;
}

/* Meta Info (Sold / Time Left) */
.prize-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: #889096;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    order: 3 !important;
}

.prize-card-meta i {
    margin-right: 5px;
}

.meta-sold,
.meta-time {
    display: flex;
    align-items: center;
}

.card-highlight-blue {
    color: var(--volt-cyan);
}

/* Progress Bar */
.prize-progress-container {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-bottom: 20px;
    overflow: hidden;
    order: 4 !important;
}

.prize-progress-bar {
    height: 100%;
    background: var(--primary-red);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(226, 27, 27, 0.5);
    transition: width 0.3s ease;
}

/* Button */
.prize-card-btn,
.prize-card .btn-primary,
.prize-card button,
.prize-card .add_to_cart_button,
.prize-card a.button {
    display: flex !important;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 14px 0 !important;
    background: linear-gradient(180deg, #b30000 0%, #800000 100%) !important;
    color: white !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 700 !important;
    font-size: 13px !important;
    letter-spacing: 1px;
    text-transform: uppercase !important;
    border-radius: var(--radius-sm) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    order: 5 !important;
    margin: 0 !important;
}

.prize-card-btn:hover,
.prize-card .btn-primary:hover,
.prize-card button:hover {
    background: linear-gradient(180deg, #cc0000 0%, #990000 100%) !important;
    box-shadow: 0 0 15px rgba(226, 27, 27, 0.4) !important;
    transform: translateY(-1px);
}

/* Floating Countdown */
.countdown-float {
    position: absolute;
    top: -20px;
    right: -20px;
    background: rgba(11, 14, 17, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 32px;
    border-radius: var(--radius-sm);
    z-index: 20;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 2px solid var(--neon-amber);
    /* Amber for layered lighting */
}

.countdown-label {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.timer-digits {
    display: flex;
    gap: 12px;
    font-family: 'Anton', sans-serif;
    font-size: 48px;
    color: var(--primary-red);
    line-height: 1;
}

.timer-digits span {
    position: relative;
    /* text-shadow: 0 0 15px rgba(225, 6, 0, 0.4); */
}

.timer-sep {
    color: var(--text-muted);
    font-size: 24px;
    margin-top: 5px;
}

/* How It Works */
.steps-section {
    padding: 100px 0;
    background: var(--bg-obsidian);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    counter-reset: step-counter;
}

.step-card {
    background: rgba(15, 17, 21, 0.5);
    padding: 40px;
    border-radius: var(--radius-md);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.03);
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Hover effect for all cards (red line + gradient) */
.step-card:hover {
    border-left: 2px solid var(--primary-red);
    background: linear-gradient(145deg, rgba(20, 23, 28, 0.8) 0%, rgba(5, 6, 8, 0.8) 100%);
    transform: translateY(-5px);
}

.step-icon {
    font-size: 32px;
    color: var(--neon-amber);
    margin-bottom: 24px;
}

.step-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-muted);
    font-size: 15px;
}

/* Verified Winners */
.winners-section {
    padding: 140px 0 100px;
    position: relative;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 20px;
}

.section-head h2 {
    font-size: 48px;
    color: var(--text-white);
}

.section-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--volt-cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-link:hover {
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.6);
}

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

.winner-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #000;
    /* group: hover; Removed invalid property */
}

.winner-img-wrap {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.winner-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    opacity: 0.8;
}

.winner-card:hover img {
    transform: scale(1.05);
    opacity: 1;
}

.winner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
    border-bottom: 2px solid #000;
    /* Black line by default */
    /* Prepare for hover */
    transition: border-color 0.3s ease;
}

.winner-card:hover .winner-overlay {
    border-bottom-color: var(--volt-cyan);
}

.winner-name {
    font-size: 20px;
    font-weight: 700;
    color: white;
    display: block;
}

.winner-prize {
    color: var(--ion-gold);
    font-size: 14px;
    font-weight: 600;
    margin-top: 4px;
    text-shadow: 0 0 5px rgba(255, 200, 61, 0.3);
}

/* Trust Strip */
.trust-strip {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 0;
}

.trust-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.trust-item i {
    font-size: 20px;
    color: var(--steel-grey);
    /* Subtle */
}

.trust-item:hover i {
    color: var(--text-white);
}

/* Final CTA */
.final-cta {
    padding: 120px 0;
    text-align: center;
    background: radial-gradient(circle at center, rgba(20, 23, 28, 0.5) 0%, transparent 60%);
    position: relative;
    overflow: hidden;
}

.final-cta h2 {
    font-size: 64px;
    margin-bottom: 20px;
}

.final-cta p {
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 40px;
}

/* Tape Strip / Marquee */
.tape-strip {
    background: linear-gradient(135deg, #a02223 0%, #990000 100%);
    /* Match button gradient */
    /* Dark/Blood Red gradient */
    padding: 15px 0;
    transform: rotate(-2deg) scale(1.05);
    /* Angled collage look */
    z-index: 10;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    border: none !important;
    /* Remove all borders */
    margin: 0 0 50px 0;
    /* Removed top margin to eliminate section break */
    overflow: hidden !important;
    /* Fix white line cutting through */
    position: relative !important;
}

.tape-content {
    display: flex;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}

.tape-item {
    font-family: 'Anton', sans-serif;
    font-size: 24px;
    color: #000;
    text-transform: uppercase;
    padding: 0 40px;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tape-item i {
    font-size: 16px;
}

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

    100% {
        transform: translateX(-50%);
    }
}

/* --- Live Competitions Section --- */
.comps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.comp-card {
    background: #0b0e11;
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* Dark border */
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.comp-card:hover {
    transform: translateY(-5px);
    border-color: var(--volt-cyan);
    box-shadow: 0 10px 30px rgba(0, 245, 255, 0.15);
}

.comp-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.comp-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.exclusive-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(11, 14, 17, 0.9);
    color: var(--volt-cyan);
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    border: 1px solid var(--volt-cyan);
    border-radius: 4px;
    z-index: 2;
}

.comp-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.comp-body h3 {
    font-family: 'Anton', sans-serif;
    font-size: 24px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.comp-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
}

.meta-item {
    display: flex;
    flex-direction: column;
}

.meta-item.right {
    text-align: right;
}

.meta-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meta-val {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--neon-amber);
    /* Price/Time highlight */
}

.btn-comp-action {
    margin-top: auto;
    width: 100%;
    padding: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.btn-comp-action:hover {
    background: var(--volt-cyan);
    color: #000;
    border-color: var(--volt-cyan);
}


/* --- Categories Section (Bento Redesign) --- */
.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    grid-template-rows: repeat(2, minmax(250px, auto));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.bento-card {
    background: linear-gradient(145deg, #1e232b, #15191f);
    border-radius: 24px;
    /* Increased radius to match screenshot */
    padding: 30px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.4s ease;
    border: 1px solid var(--primary-red);
    /* Red border matching buttons */
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* Specific Grid Placements */
.bento-card.watches {
    grid-column: 1;
    grid-row: 1;
}

.bento-card.tech {
    grid-column: 3;
    grid-row: 1;
}

.bento-card.cash {
    grid-column: 1;
    grid-row: 2;
}

.bento-card.view-all {
    grid-column: 3;
    grid-row: 2;
}

/* The Big Center Card */
.bento-card.cars.big-card {
    grid-column: 2;
    grid-row: 1 / span 2;
    background: linear-gradient(180deg, #2a2e35 0%, #15181e 100%);
    border: 2px solid var(--primary-red);
    /* Thicker red border for the main card */
    box-shadow: 0 0 30px rgba(160, 34, 35, 0.15);
    /* Subtle red glow */
}

/* Hover Effects (Glow) */
.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(160, 34, 35, 0.2);
    border-color: var(--primary-red);
}

.bento-bg-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Red glow matching button red */
    background: radial-gradient(circle at top right, rgba(160, 34, 35, 0.15), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.bento-card:hover .bento-bg-glow {
    opacity: 1;
}

/* Content Styling */
.bento-content {
    position: relative;
    z-index: 2;
}

/* 3D Skeuomorphic Icon Styling */
.bento-icon {
    font-size: 50px;
    margin-bottom: 20px;
    display: inline-block;

    /* Simulate 3D Red finish matching button gradient */
    background: linear-gradient(135deg, #a02223 0%, #990000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.5));

    transform: perspective(500px) rotateY(10deg);
    transition: transform 0.5s ease;
}

.bento-card:hover .bento-icon {
    transform: perspective(500px) rotateY(-10deg) scale(1.1);
    filter: drop-shadow(0 10px 15px rgba(160, 34, 35, 0.4));
    /* Red glow */
}

/* Titles */
.bento-card h3 {
    font-family: 'Anton', sans-serif;
    font-size: 28px;
    margin-bottom: 10px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Descriptions */
.bento-card p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #bbb;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Link */
.bento-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--neon-cyan);
    font-size: 14px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.bento-card:hover .bento-link {
    color: var(--neon-amber);
}

/* Footer Link */
.bento-footer {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 30px;
}

.btn-all-cats {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.btn-all-cats:hover {
    background: var(--text-white);
    color: #000;
}

/* Responsive */
@media (max-width: 968px) {
    .bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .bento-card.big-card {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 300px;
    }

    .bento-card.sports {
        grid-column: auto;
        grid-row: auto;
    }

    .bento-card.lottery {
        grid-column: auto;
        grid-row: auto;
    }

    .bento-card.casino {
        grid-column: auto;
        grid-row: auto;
    }

    .bento-card.bingo {
        grid-column: auto;
        grid-row: auto;
    }
}

@media (max-width: 600px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Hero Carousel Styles --- */
.hero-carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    /* Ensure z-index is handled if needed */
}

.hero-carousel-track {
    display: flex;
    transition: transform 0.5s var(--ease-kinetic);
    width: 100%;
}

.hero-carousel-slide {
    min-width: 100%;
    /* Fix overlap/sizing issue */
    width: 100%;
    flex-shrink: 0;

    position: relative;
    padding: 10px 20px;
    /* Increased padding to prevent 3D rotation overlap/popping */
}

/* Nav Controls */
.carousel-nav-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.nav-square-btn {
    width: 45px;
    /* Reduced from 60px */
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    font-size: 18px;
    /* Adjusted icon size */
    color: var(--text-white);
    transition: all 0.3s ease;
    /* Removed clip-path to match standard square request if needed, but keeping for style */
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%, 0 10%);
}

/* Specific styling for Prev/Next based on user request */
.nav-square-btn.prev {
    /* "Adapt to existing" - using dark gradient or semi-transparent back */
    background: linear-gradient(135deg, #3a0000 0%, #1a0000 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-square-btn.prev:hover {
    background: linear-gradient(135deg, #590000 0%, #2a0000 100%);
    border-color: var(--primary-red);
}

.nav-square-btn.next {
    /* "Apply gradient glow provided" */
    background: var(--hero-gradient);
    /* defined as orange -> red */
    box-shadow: 0 4px 15px rgba(225, 6, 0, 0.3);
}

.nav-square-btn.next:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 6, 0, 0.5);
}

.nav-square-btn i {
    transition: transform 0.3s ease;
}

.nav-square-btn:hover i {
    transform: scale(1.2);
}

/* When Astra is in mobile header mode, force menu toggle visible (breakpoint set in Customizer, default 921px) */
body.ast-header-break-point .ast-button-wrap .menu-toggle,
body.ast-header-break-point .menu-toggle.main-header-menu-toggle,
body.ast-header-break-point .ast-mobile-menu-buttons .menu-toggle,
body.ast-header-break-point #masthead .menu-toggle,
body.ast-header-break-point .site-header .menu-toggle {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Responsive – use 921px to match Astra default mobile-header-breakpoint */
@media (max-width: 921px) {

    /* Match mockup: dark header on mobile */
    .site-header {
        background-color: rgba(5, 6, 8, 0.95) !important;
        background: rgba(5, 6, 8, 0.95) !important;
    }

    .ast-mobile-header-wrap,
    .ast-mobile-header-content,
    #ast-mobile-header {
        background: transparent !important;
        background-color: transparent !important;
    }

    /* MOBILE MENU: dark bg, white text, no underline (match mockup) */
    .ast-mobile-popup-drawer,
    .ast-mobile-popup-content,
    .ast-mobile-popup-inner,
    #ast-mobile-popup {
        background: #050608 !important;
        background-color: #050608 !important;
    }

    .ast-mobile-popup-drawer .main-header-menu,
    .ast-mobile-popup-drawer .main-header-menu .menu-item,
    #ast-mobile-popup .main-header-menu .menu-item a {
        background: transparent !important;
        color: #FFFFFF !important;
        border-bottom: none !important;
        text-decoration: none !important;
        text-shadow: 0 0 12px rgba(255, 255, 255, 0.15);
        box-shadow: none !important;
    }

    .ast-mobile-popup-drawer .main-header-menu .menu-item a {
        padding: 15px 20px !important;
        font-size: 16px !important;
        font-weight: 600 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
    }

    /* Mobile only: no underline on menu links (desktop keeps it) */
    .ast-mobile-popup-drawer .main-header-menu .menu-item a::after,
    #ast-mobile-popup .main-header-menu .menu-item a::after,
    #ast-hf-mobile-menu .main-header-menu .menu-item a::after,
    .main-header-bar-navigation .main-header-menu .menu-item a::after {
        display: none !important;
        content: none !important;
    }

    .ast-mobile-popup-drawer .main-header-menu .menu-item a:hover {
        color: var(--primary-red) !important;
        background: rgba(160, 34, 35, 0.1) !important;
    }

    /* Mobile: active/current/clicked link – red background + text glow */
    .ast-mobile-popup-drawer .main-header-menu .menu-item.current-menu-item a,
    .ast-mobile-popup-drawer .main-header-menu .menu-item a:active,
    .ast-mobile-popup-drawer .main-header-menu .menu-item a:focus,
    #ast-mobile-popup .main-header-menu .menu-item.current-menu-item a,
    #ast-mobile-popup .main-header-menu .menu-item a:active,
    #ast-mobile-popup .main-header-menu .menu-item a:focus,
    #ast-hf-mobile-menu .main-header-menu .menu-item.current-menu-item a,
    #ast-hf-mobile-menu .main-header-menu .menu-item a:active,
    .main-header-bar-navigation .main-header-menu .menu-item.current-menu-item a,
    .main-header-bar-navigation .main-header-menu .menu-item a:active {
        color: #FFFFFF !important;
        background: rgba(160, 34, 35, 0.5) !important;
        background-color: rgba(160, 34, 35, 0.5) !important;
        text-shadow: 0 0 14px rgba(225, 6, 0, 0.8), 0 0 8px rgba(160, 34, 35, 0.6) !important;
    }

    .ast-mobile-popup-drawer .ast-mobile-popup-close {
        color: #FFFFFF !important;
    }

    /* Force mobile menu toggle visible (Astra default breakpoint 921px) */
    .ast-button-wrap .menu-toggle,
    .menu-toggle.main-header-menu-toggle,
    .ast-mobile-menu-trigger-minimal,
    .ast-mobile-menu-buttons .menu-toggle,
    .ast-mobile-menu-buttons > .menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        align-items: center;
        justify-content: center;
        min-width: 44px !important;
        min-height: 44px !important;
    }

    /* Hamburger icon – white on dark header (apply at 921px so it’s visible as soon as mobile kicks in) */
    /* Button only: red bg, no outline; icon from theme settings */
    .ast-button-wrap .menu-toggle,
    .menu-toggle.main-header-menu-toggle,
    .ast-mobile-menu-buttons .menu-toggle,
    .menu-toggle.toggled,
    body.ast-mobile-popup-drawer-active .menu-toggle,
    body.ast-mobile-popup-drawer-active .ast-button-wrap .menu-toggle {
        background: var(--primary-red) !important;
        background-color: var(--primary-red) !important;
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
    }
    /* Inline mobile menu – dark bg, white text, no underline (match mockup) */
    #ast-hf-mobile-menu,
    #ast-mobile-site-navigation.toggled,
    .main-header-bar-navigation.toggle-on,
    .ast-builder-menu-mobile .main-header-bar-navigation,
    .main-header-bar-navigation .main-header-menu,
    ul.main-header-menu.ast-nav-menu.stack-on-mobile {
        background: #050608 !important;
        background-color: #050608 !important;
    }

    #ast-hf-mobile-menu .main-header-menu .menu-item a,
    #ast-mobile-site-navigation .main-header-menu .menu-item a,
    .main-header-bar-navigation .main-header-menu .menu-item a,
    #ast-hf-mobile-menu a.menu-link,
    #ast-mobile-site-navigation a.menu-link,
    .main-header-bar-navigation a.menu-link {
        color: #FFFFFF !important;
        background: transparent !important;
        background-color: transparent !important;
        border-bottom: none !important;
        text-shadow: 0 0 12px rgba(255, 255, 255, 0.15);
        box-shadow: none !important;
        padding: 15px 20px !important;
        font-size: 16px !important;
        font-weight: 600 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
    }

    #ast-hf-mobile-menu .main-header-menu .menu-item a:hover,
    .main-header-bar-navigation .main-header-menu .menu-item a:hover {
        color: var(--primary-red) !important;
        background: rgba(160, 34, 35, 0.1) !important;
    }

    /* Optional: hide duplicate/unwanted items – uncomment one or both to use */
    /* #ast-hf-mobile-menu .menu-item.page-item-355 { display: none !important; }  homepage (duplicate of Home) */
    /* #ast-hf-mobile-menu .menu-item.page-item-2  { display: none !important; }   Sample Page */

    /* Force below/above header bar (orange strip) to dark – overrides Customizer */
    .ast-below-header-wrap,
    .ast-below-header-bar,
    .ast-above-header-wrap,
    .ast-above-header-bar,
    .main-header-bar-wrap .main-header-bar,
    .site-header .ast-builder-grid-row,
    .site-header [data-section*="below-header"],
    .site-header [data-section*="above-header"],
    .ast-primary-header-bar,
    .ast-desktop-header-wrap .ast-below-header-wrap,
    .ast-mobile-header-wrap .ast-below-header-wrap {
        background: #050608 !important;
        background-color: #050608 !important;
    }

    /* Trust strip mobile layout */
    .trust-items {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px !important;
        padding: 0 20px !important;
    }

    .trust-item {
        flex-direction: column !important;
        text-align: center !important;
        font-size: 11px !important;
    }

    .trust-item i {
        font-size: 28px !important;
        margin-bottom: 8px !important;
    }

    /* Hero adjustments – mobile/tablet/portrait/landscape */
    .hero {
        padding: 20px 0 40px !important;
        overflow: visible !important;
        min-height: auto !important;
    }

    .hero-grid {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 40px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .hero-left {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow: visible !important;
        order: 1 !important;
        padding: 0 !important;
    }

    .hero-right {
        order: 2 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .hero-carousel-container {
        max-width: 100% !important;
    }

    .hero-carousel-track {
        max-width: 100% !important;
    }

    .hero-carousel-slide {
        min-width: 100% !important;
        max-width: 100% !important;
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
        border-left: none;
        padding-left: 0;
        max-width: 100% !important;
    }

    .hero-title {
        font-size: 54px !important;
        text-align: center !important;
        max-width: 100% !important;
    }

    .hero-title .highlight {
        display: inline-block !important;
    }

    .cta-row {
        justify-content: center !important;
    }

    .steps-grid,
    .winners-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .countdown-float {
        position: relative;
        top: -40px;
        right: auto;
        margin: 0 auto;
        transform: rotate(-2deg);
        width: fit-content;
    }

    .header-inner .nav,
    .header-inner .auth-buttons {
        display: none;
        /* Simplification */
    }

    .mobile-menu-btn {
        display: block;
    }

    /* Tape strip mobile adjustments */
    .tape-strip {
        margin: 0 0 40px 0 !important;
    }

    .tape-item {
        font-size: 18px !important;
        padding: 0 20px !important;
    }

    /* MOBILE FIX: Section headers - center and stack */
    .section-head {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 20px !important;
    }

    .section-head h2 {
        font-size: 36px !important;
        margin-bottom: 0 !important;
    }

    .section-link {
        width: auto !important;
        text-align: center !important;
    }

    /* MOBILE FIX: Product cards - center and proper width */
    .comps-grid,
    .live-comps-section .products,
    .live-comps-section ul.products {
        grid-template-columns: 1fr !important;
        justify-items: center !important;
        padding: 0 20px !important;
    }

    .comp-card,
    .live-comps-section .product,
    .live-comps-section .prize-card {
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 auto !important;
    }

    /* MOBILE FIX: CTA buttons full width */
    .cta-row {
        flex-direction: column !important;
        width: 100% !important;
        padding: 0 20px !important;
    }

    .cta-row .btn-primary,
    .cta-row .btn-ghost {
        width: 100% !important;
    }

    /* MOBILE FIX: Container padding */
    .container {
        padding: 0 20px !important;
    }

    /* MOBILE FIX: Winners section */
    .winners-section {
        padding: 60px 0 !important;
    }

    .winners-grid {
        padding: 0 !important;
    }
}

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

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

    .cta-row {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-ghost {
        width: 100%;
    }
}

/* --- FINAL FOOTER FIXES --- */
/* Force all footer widgets to be transparent */
.site-footer .widget,
.site-footer .widget_block,
.site-footer .widget_text,
.site-footer .wp-block-group,
.site-footer .wp-block-columns,
.site-footer .wp-block-column,
.site-footer .elementor-widget,
.site-footer .elementor-column,
.site-footer .ast-builder-grid-row {
    background-color: transparent !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

/* Ensure text is visible on transparent background */
.site-footer p,
.site-footer li,
.site-footer a,
.site-footer h2,
.site-footer h3,
.site-footer h4 {
    color: #777 !important;
}

.site-footer a:hover {
    color: var(--primary-red) !important;
}

/* --- FIX: Reduce Spacing for Live Competitions --- */
.live-comps-section {
    padding-top: 20px !important;
    /* Reduced from default 100px */
    padding-bottom: 20px !important;
    /* Further reduced bottom spacing */
}

/* --- FIX: Footer Backgrounds (Aggressive) --- */
/* Force every possible footer wrapper to be black or transparent */
.site-footer,
.site-primary-footer-wrap,
.site-below-footer-wrap,
.ast-builder-grid-row-container,
.ast-builder-grid-row,
.ast-footer-copyright,
.ast-small-footer-section,
.ast-builder-footer-grid-columns,
.ast-builder-footer-row {
    background-color: #000000 !important;
    background: #000000 !important;
}

/* Remove any grey borders between rows */
.site-footer div,
.site-footer span,
.site-footer section {
    border: none !important;
}

/* Ensure text remains visible */
.site-footer p,
.site-footer li,
.site-footer a,
.site-footer h3,
.site-footer h4,
.ast-footer-copyright p {
    color: #777777 !important;
}

.site-footer a:hover {
    color: var(--primary-red) !important;
}

/* --- NUCLEAR GAP FIX: LIVE COMPETITIONS --- */

/* 1. Pull the section itself up */
.live-comps-section {
    padding-top: 0 !important;
    margin-top: -30px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    /* Center the entire section */
}

/* 2. Kill bottom margin on the title */
.live-comps-section h2,
.live-comps-section .section-head {
    margin-bottom: 20px !important;
    /* Reduced from default */
    padding-bottom: 0 !important;
    text-align: center !important;
    width: 100% !important;
}

/* 3. Target Ultimate Raffle / WooCommerce Wrappers */
.live-comps-section .woocommerce,
.live-comps-section .products,
.live-comps-section ul.products {
    margin-top: 0 !important;
    padding-top: 0 !important;
    display: flex !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    width: 100% !important;
    max-width: var(--container-width) !important;
}

/* 4. Fix potential paragraph injections */
.live-comps-section p:empty {
    display: none !important;
}

/* ===== WOOCOMMERCE PRODUCT CARDS - FORCE MOCKUP DESIGN ===== */
/* Target WooCommerce products in Live Competitions section */
.live-comps-section .product,
.live-comps-section li.product,
.live-comps-section .woocommerce ul.products li.product {
    position: relative !important;
    background: #0b0e11 !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: var(--radius-md) !important;
    overflow: hidden !important;
    transition: all 0.3s var(--ease-kinetic) !important;
    display: flex !important;
    flex-direction: column !important;
    margin: 0 15px 30px !important;
    max-width: 380px !important;
    width: 100% !important;
}

.live-comps-section .product:hover,
.live-comps-section li.product:hover {
    transform: translateY(-5px) !important;
    border-color: var(--volt-cyan) !important;
    box-shadow: 0 10px 30px rgba(0, 245, 255, 0.1) !important;
}

/* Product Image Wrapper */
.live-comps-section .product .woocommerce-loop-product__link,
.live-comps-section .product a.woocommerce-LoopProduct-link,
.live-comps-section .product>a:first-child {
    position: relative !important;
    width: 100% !important;
    aspect-ratio: 16/10 !important;
    overflow: hidden !important;
    background: #000 !important;
    display: block !important;
    order: 1 !important;
}

/* Product Image */
.live-comps-section .product img,
.live-comps-section .product .attachment-woocommerce_thumbnail {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.5s ease !important;
    display: block !important;
}

.live-comps-section .product:hover img {
    transform: scale(1.05) !important;
}

/* Badge - Add via Elementor or shortcode */
.live-comps-section .product .onsale,
.live-comps-section .product .badge,
.live-comps-section .product .product-badge {
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    padding: 6px 12px !important;
    background: var(--primary-red) !important;
    color: white !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    z-index: 2 !important;
    border-radius: 2px !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3) !important;
}

/* Product Title */
.live-comps-section .product .woocommerce-loop-product__title,
.live-comps-section .product h2,
.live-comps-section .product h3 {
    font-family: 'Anton', sans-serif !important;
    font-size: 24px !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
    color: white !important;
    margin: 20px 20px 15px !important;
    padding: 0 !important;
    order: 2 !important;
}

/* Price */
.live-comps-section .product .price {
    display: none !important;
    /* Hide default price, we'll show it in the button */
}

/* Add to Cart Button */
.live-comps-section .product .button,
.live-comps-section .product .add_to_cart_button,
.live-comps-section .product a.button {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: calc(100% - 40px) !important;
    padding: 14px 0 !important;
    margin: 0 20px 20px !important;
    background: linear-gradient(180deg, #b30000 0%, #800000 100%) !important;
    color: white !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    border-radius: var(--radius-sm) !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border: none !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5) !important;
    order: 5 !important;
}

.live-comps-section .product .button:hover,
.live-comps-section .product .add_to_cart_button:hover {
    background: linear-gradient(180deg, #cc0000 0%, #990000 100%) !important;
    box-shadow: 0 0 15px rgba(226, 27, 27, 0.4) !important;
    transform: translateY(-1px) !important;
}

/* Meta Info Container - You'll need to add this via Elementor/shortcode */
.live-comps-section .product .product-meta,
.live-comps-section .product .raffle-meta {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    font-size: 11px !important;
    color: #889096 !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    margin: 0 20px 15px !important;
    letter-spacing: 0.5px !important;
    order: 3 !important;
}

.live-comps-section .product .product-meta i {
    margin-right: 5px !important;
}

.live-comps-section .product .meta-sold,
.live-comps-section .product .meta-time {
    display: flex !important;
    align-items: center !important;
}

.live-comps-section .product .card-highlight-blue {
    color: var(--volt-cyan) !important;
}

/* Progress Bar - You'll need to add this via Elementor/shortcode */
.live-comps-section .product .progress-container,
.live-comps-section .product .raffle-progress {
    width: calc(100% - 40px) !important;
    height: 4px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 2px !important;
    margin: 0 20px 20px !important;
    overflow: hidden !important;
    order: 4 !important;
}

.live-comps-section .product .progress-bar {
    height: 100% !important;
    background: var(--hero-gradient) !important;
    border-radius: 2px !important;
    box-shadow: 0 0 10px rgba(160, 34, 35, 0.5) !important;
    transition: width 0.3s ease !important;
}

/* --- FINAL FIXES: HEADER & MOBILE --- */





/* 2. MOBILE FIXES FOR CATEGORIES + HERO (tablet/small desktop) */
@media (max-width: 768px) {

    /* Hero – smaller title and ensure no clipping */
    .hero-title {
        font-size: 46px !important;
    }

    .hero .prize-card {
        transform: none !important;
    }

    /* Unwrap the grid to be single column */
    .bento-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }

    .bento-card {
        width: 100% !important;
        min-height: 120px !important;
        /* Reduce height from vertical strips */
        height: auto !important;
        grid-column: auto !important;
        grid-row: auto !important;
        flex-direction: row !important;
        /* Ensure content flows horizontally */
        align-items: center !important;
        padding: 20px !important;
    }

    /* Fix the text direction */
    .bento-card h3,
    .bento-card .vertical-text {
        writing-mode: horizontal-tb !important;
        text-orientation: mixed !important;
        transform: none !important;
        white-space: normal !important;
        width: auto !important;
        margin: 0 !important;
        text-align: left !important;
        font-size: 24px !important;
        letter-spacing: 1px !important;
    }

    /* Fix image positioning on mobile cards */
    .bento-card img {
        position: absolute;
        right: -20px;
        top: 50%;
        transform: translateY(-50%);
        width: 120px !important;
        height: auto !important;
        opacity: 0.6;
    }

    /* Button only: red bg, no outline; icon from theme settings */
    .ast-button-wrap .menu-toggle,
    .menu-toggle.main-header-menu-toggle,
    .ast-mobile-menu-buttons .menu-toggle,
    .menu-toggle.toggled,
    body.ast-mobile-popup-drawer-active .menu-toggle,
    body.ast-mobile-popup-drawer-active .ast-button-wrap .menu-toggle {
        background: var(--primary-red) !important;
        background-color: var(--primary-red) !important;
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
    }
}

/* When menu is open: keep toggle button identical to closed (red bg, no dotted outline) */
body.ast-mobile-popup-drawer-active .menu-toggle,
body.ast-mobile-popup-drawer-active .ast-button-wrap .menu-toggle,
body.ast-mobile-popup-drawer-active .ast-mobile-menu-buttons .menu-toggle {
    background: var(--primary-red) !important;
    background-color: var(--primary-red) !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Remove focus outline/dotted border so button looks same as second screenshot when open or focused */
.menu-toggle:focus,
.menu-toggle.toggled:focus,
.ast-button-wrap .menu-toggle:focus,
.ast-mobile-menu-buttons .menu-toggle:focus {
    outline: none !important;
    outline-width: 0 !important;
    border: none !important;
    background: var(--primary-red) !important;
    background-color: var(--primary-red) !important;
}

/* Mobile only: prevent glow on off-canvas/popup containers */
.ast-mobile-popup-drawer,
#ast-mobile-popup {
    background-image: none !important;
    box-shadow: none !important;
}

/* ===== OFF-CANVAS MENU: dark bg, white text (match mockup), no underline ===== */
.ast-mobile-popup-drawer,
.ast-mobile-popup-content,
.ast-mobile-popup-inner,
#ast-mobile-popup,
body.ast-mobile-popup-drawer-active .ast-mobile-popup-drawer,
.ast-mobile-popup-drawer .ast-mobile-popup-content,
.ast-mobile-popup-drawer .ast-mobile-popup-inner,
.ast-mobile-popup-drawer .ast-builder-grid-row,
.ast-mobile-popup-drawer .main-navigation,
.ast-mobile-popup-drawer #ast-hf-mobile-menu,
#ast-mobile-popup .ast-mobile-popup-content,
#ast-mobile-popup .ast-mobile-popup-inner,
.ast-mobile-popup-drawer .ast-builder-section,
.ast-mobile-popup-drawer [data-section],
#ast-mobile-popup .ast-builder-section,
#ast-mobile-popup [data-section],
.ast-mobile-popup-drawer .site-header-section,
#ast-mobile-popup .site-header-section {
    background: #050608 !important;
    background-color: #050608 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.ast-mobile-popup-drawer .main-header-menu,
.ast-mobile-popup-drawer .main-header-menu .menu-item,
#ast-mobile-popup .main-header-menu .menu-item a,
.ast-mobile-popup-drawer .menu-link {
    color: #FFFFFF !important;
    border-bottom: none !important;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.15);
    box-shadow: none !important;
}

/* Override Astra Customizer white: force no white background on menu links (fixes a.menu-link contrast) */
#ast-mobile-popup a.menu-link,
#ast-mobile-popup .main-header-menu .menu-item a,
.ast-mobile-popup-drawer a.menu-link,
.ast-mobile-popup-drawer .main-header-menu .menu-item a,
#ast-hf-mobile-menu a.menu-link,
#ast-hf-mobile-menu .main-header-menu .menu-item a,
.ast-mobile-popup-drawer .main-header-menu .menu-link,
#ast-mobile-popup .main-header-menu .menu-link {
    background: transparent !important;
    background-color: transparent !important;
}

/* Force mobile menu list and items to dark (override Astra Customizer background) */
ul#ast-hf-mobile-menu.main-header-menu,
#ast-hf-mobile-menu.main-header-menu,
.ast-mobile-popup-drawer ul.main-header-menu,
#ast-mobile-popup ul.main-header-menu,
.ast-mobile-popup-drawer .main-header-menu .menu-item,
#ast-mobile-popup .main-header-menu .menu-item {
    background: transparent !important;
    background-color: transparent !important;
}

/* Mobile menu: active/current/clicked link – red background + text glow (global so it applies in popup) */
#ast-mobile-popup .main-header-menu .menu-item.current-menu-item a,
#ast-mobile-popup .main-header-menu .menu-item a:active,
#ast-mobile-popup .main-header-menu .menu-item a:focus,
.ast-mobile-popup-drawer .main-header-menu .menu-item.current-menu-item a,
.ast-mobile-popup-drawer .main-header-menu .menu-item a:active,
.ast-mobile-popup-drawer .main-header-menu .menu-item a:focus,
#ast-hf-mobile-menu .main-header-menu .menu-item.current-menu-item a,
#ast-hf-mobile-menu .main-header-menu .menu-item a:active {
    color: #FFFFFF !important;
    background: rgba(160, 34, 35, 0.5) !important;
    background-color: rgba(160, 34, 35, 0.5) !important;
    text-shadow: 0 0 14px rgba(225, 6, 0, 0.8), 0 0 8px rgba(160, 34, 35, 0.6) !important;
}

/* ===== PAGE TITLE / LIVE DRAWS BANNER: Dark bar + white text (fix light strip + faded text) ===== */
.entry-header,
.ast-single-ast-separate-container .entry-header,
.page .entry-header,
.archive .entry-header,
.ast-archive-description,
.ast-single-ast-separate-container .entry-header .entry-title,
.entry-header .entry-title,
.page-title,
.ast-archive-title,
body .entry-header .entry-title {
    background: #050608 !important;
    background-color: #050608 !important;
    color: #FFFFFF !important;
}
.entry-header .entry-title,
.page-title,
.ast-archive-title,
.ast-archive-description {
    color: #FFFFFF !important;
}

/* ===== LIVE DRAWS & WALL OF WINNERS: match Your Cart title (Anton, spacing, no line) ===== */
.page-header.live-draws-header,
.page-header.winners-header {
    padding: 48px 0 36px !important;
    text-align: center !important;
    background: transparent !important;
    border: none !important;
    border-bottom: none !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    left: auto !important;
    right: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
}

/* Title – same as Your Cart: Anton, white, uppercase, no outline */
.page-header.live-draws-header .page-title,
.page-header.winners-header .page-title {
    font-family: 'Anton', sans-serif !important;
    font-size: 28px !important;
    line-height: 1.2 !important;
    letter-spacing: 0.02em !important;
    color: #fff !important;
    text-transform: uppercase !important;
    text-align: center !important;
    border: none !important;
    border-bottom: none !important;
    margin-bottom: 12px !important;
}

/* Remove outline/hollow style so LIVE DRAWS / WALL OF WINNERS look solid like YOUR CART */
.page-header.live-draws-header .page-title .highlight,
.page-header.winners-header .page-title .highlight {
    color: #fff !important;
    -webkit-text-stroke: 0 !important;
    font-weight: inherit !important;
}

.page-header.live-draws-header .breadcrumb,
.page-header.winners-header .breadcrumb {
    justify-content: center !important;
    display: flex !important;
}

/* Subtitle under WALL OF WINNERS – keep muted, centered */
.page-header.winners-header p {
    color: var(--text-muted) !important;
    font-size: 18px !important;
    margin: 0 auto !important;
}

/* When Live Draws/Winners use .entry-header (e.g. theme default) – match cart, no black box */
body.page-slug-live-draws .entry-header,
body.page-slug-winners .entry-header {
    padding: 48px 0 36px !important;
    text-align: center !important;
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    border-bottom: none !important;
}

/* Remove black box behind title/subtitle – keep header area transparent */
body.page-slug-live-draws .entry-header .entry-title,
body.page-slug-live-draws .entry-header .page-title,
body.page-slug-live-draws .entry-header .ast-archive-description,
body.page-slug-winners .entry-header .entry-title,
body.page-slug-winners .entry-header .page-title,
body.page-slug-winners .entry-header .ast-archive-description,
body.page-slug-winners .entry-header p {
    background: transparent !important;
    background-color: transparent !important;
}

body.page-slug-live-draws .entry-header .entry-title,
body.page-slug-live-draws .page-title,
body.page-slug-winners .entry-header .entry-title,
body.page-slug-winners .page-title {
    font-family: 'Anton', sans-serif !important;
    font-size: 28px !important;
    line-height: 1.2 !important;
    letter-spacing: 0.02em !important;
    color: #fff !important;
    text-transform: uppercase !important;
    text-align: center !important;
    border: none !important;
}

.winners-section {
    padding-top: 32px !important;
}

@media (max-width: 768px) {
    .page-header.live-draws-header,
    .page-header.winners-header {
        padding: 36px 0 24px !important;
    }
    .page-header.live-draws-header .page-title,
    .page-header.winners-header .page-title {
        font-size: 24px !important;
    }
    body.page-slug-live-draws .entry-header,
    body.page-slug-winners .entry-header {
        padding: 36px 0 24px !important;
    }
    body.page-slug-live-draws .entry-title,
    body.page-slug-live-draws .page-title,
    body.page-slug-winners .entry-title,
    body.page-slug-winners .page-title {
        font-size: 24px !important;
    }
}

/* ===== CONTACT US & INTERNAL PAGES: layout, hierarchy, alignment (mockup) ===== */
.page-section {
    padding: 48px 0 64px !important;
}

.page-section .container {
    max-width: var(--container-width, 1200px);
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* Two-column layout – form left, contact info + FAQ right */
.page-section .grid-2 {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 32px !important;
    align-items: start !important;
}

/* Section headings (SEND US A MESSAGE, DIRECT CONTACT, FAQ) – 28px, clear hierarchy */
.page-section h2,
.page-section .elementor-heading-title {
    font-size: 28px !important;
    font-family: 'Anton', sans-serif !important;
    color: #fff !important;
    margin-bottom: 20px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

/* Contact Us only: smaller section headings (e.g. GET IN TOUCH) and centred */
body.page-slug-contact-us .page-section h2,
body.page-slug-contact .page-section h2,
body.page-slug-contact-us .page-section .elementor-heading-title,
body.page-slug-contact .page-section .elementor-heading-title {
    font-size: 22px !important;
    text-align: center !important;
}

/* Form – tighter spacing */
.page-section .form-group {
    margin-bottom: 16px !important;
}

.page-section .form-label,
.page-section label {
    display: block !important;
    font-size: 12px !important;
    color: var(--text-muted) !important;
    margin-bottom: 6px !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
}

.page-section .form-input,
.page-section input[type="text"],
.page-section input[type="email"],
.page-section input[type="tel"],
.page-section select,
.page-section textarea {
    width: 100% !important;
    background: #151a21 !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    padding: 12px 14px !important;
    border-radius: 6px !important;
    color: #fff !important;
}

/* Form block + contact/FAQ blocks – dark panel, subtle teal border */
.page-section .contact-info-card,
.page-section .contact-info,
.page-section form {
    background: #0f1216 !important;
    border: 1px solid rgba(0, 245, 255, 0.15) !important;
    border-radius: 8px !important;
    padding: 24px !important;
}

.page-section .contact-info-card,
.page-section .contact-info {
    margin-bottom: 24px !important;
}

.page-section .contact-info-card:last-child,
.page-section .contact-info:last-child {
    margin-bottom: 0 !important;
}

.page-section .contact-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 16px !important;
    margin-bottom: 20px !important;
}

.page-section .contact-item:last-child {
    margin-bottom: 0 !important;
}

.page-section .contact-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(160, 34, 35, 0.2) !important;
    color: var(--primary-red) !important;
    border-radius: 6px !important;
}

.page-section .contact-item h4 {
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    color: #fff !important;
    margin-bottom: 4px !important;
}

.page-section .contact-item p {
    color: var(--text-muted) !important;
    font-size: 14px !important;
    margin: 0 !important;
}

/* Remove stray bullets/circles in contact items */
.page-section .contact-item::before,
.page-section .contact-item::after {
    display: none !important;
}

/* FAQ block – same card style, Q&A layout */
.page-section .faq-block,
.page-section [class*="faq"] {
    background: #0f1216 !important;
    border: 1px solid rgba(0, 245, 255, 0.15) !important;
    border-radius: 8px !important;
    padding: 24px !important;
    margin-top: 0 !important;
}

.page-section .faq-item,
.page-section [class*="faq"] h3,
.page-section [class*="faq"] h4 {
    font-size: 14px !important;
    color: #fff !important;
    margin-bottom: 8px !important;
}

.page-section .faq-item p,
.page-section [class*="faq"] p {
    color: var(--text-muted) !important;
    font-size: 14px !important;
    margin-bottom: 16px !important;
}

/* Contact / internal pages: remove excessive left margin on second column */
.page-section .grid-2 > *:last-child {
    margin-left: 0 !important;
}

/* Form column: keep title close to form (no big gap) */
.page-section .grid-2 > *:first-child h2 {
    margin-bottom: 16px !important;
}

@media (max-width: 768px) {
    .page-section {
        padding: 32px 0 48px !important;
    }
    .page-section .grid-2 {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    .page-section h2,
    .page-section .elementor-heading-title {
        font-size: 24px !important;
        margin-bottom: 16px !important;
    }
    .page-section .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    /* FAQ: stack Q&A vertically on mobile if two-column */
    .page-section [class*="faq"] {
        display: block !important;
    }
    .page-section [class*="faq"] > div {
        display: block !important;
        width: 100% !important;
    }
}