:root {
    --bg-color: #0d0d0d;
    --card-bg: #151515;
    --card-border: #222222;
    --text-color: #f1f1f1;
    --text-muted: #888888;
    --primary-pink: #ff2e9f;
    --primary-green: #0ad17e;
    --font-main: 'Inter', sans-serif;
}

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

html, body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.5;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: center;
    padding: 24px 0;
    background: transparent;
    width: 100%;
}
.nav-container {
    width: 90%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1a1a1a;
    padding: 12px 32px;
    border-radius: 999px;
    border: 1px solid var(--card-border);
}

.logo img {
    height: 18px;
    display: block;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-pink);
}

.btn-primary-nav {
    background-color: var(--primary-pink);
    color: #fff;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    transition: opacity 0.3s, filter 0.3s;
}

.btn-primary-nav:hover {
    opacity: 0.9;
    filter: drop-shadow(0 0 8px rgba(255, 46, 159, 0.5));
}

.lang-switcher {
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 10px;
    font-weight: 700;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-btn:hover {
    opacity: 0.8;
}

.lang-btn.active {
    background: var(--primary-pink);
    color: #fff;
    opacity: 1;
    box-shadow: 0 0 15px rgba(255, 46, 159, 0.4);
}

/* COMMON SECTION STYLES */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.two-col {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.sportsbook-section .btn-primary {
    margin: 0 auto;
}

@media (max-width: 768px) {
    .sportsbook-section .sportsbook-content {
        text-align: center;
    }
    .sportsbook-section .btn-primary {
        margin: 20px auto 0;
    }
}
.text-center {
    text-align: center;
}

h1.main-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 48px;
}

/* PILLS */
.pills-container {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 64px;
}

.pill {
    background-color: transparent;
    border: 1px solid var(--card-border);
    color: var(--text-muted);
    padding: 12px 24px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.pill:hover {
    border-color: #444;
    color: #fff;
}

.pill.active {
    border-color: var(--dynamic-color, var(--primary-pink));
    color: var(--dynamic-color, var(--primary-pink));
    box-shadow: 0 0 15px var(--dynamic-glow, rgba(255, 46, 159, 0.2));
}

/* FLOATING MOCKUPS HERO SECTION */
.floating-mockups {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.float-macbook {
    width: 90%;
    max-width: 600px;
    z-index: 1;
    animation: floatSlow 6s ease-in-out infinite;
}
.float-phone {
    position: absolute;
    width: 30%;
    max-width: 200px;
    bottom: 5%;
    right: 5%;
    z-index: 2;
    animation: floatFast 4s ease-in-out infinite;
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
@keyframes floatFast {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-25px); }
}

/* SHOWCASE BOX */
.showcase-box {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 64px;
    position: relative;
    overflow: hidden;
}

.showcase-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 64px;
}

.showcase-left {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #111;
    border: 1px solid var(--card-border);
    color: var(--text-muted);
    font-size: 16px;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    z-index: 10;
}

.nav-arrow.left {
    left: 24px;
}

.nav-arrow.right {
    right: 24px;
}

.nav-arrow:hover {
    background: var(--primary-pink);
    border-color: var(--primary-pink);
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 46, 159, 0.4);
}
.app-mockup {
    width: 100%;
    max-width: 360px;
    height: 280px;
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 16px;
    margin: 0 auto;
    position: relative;
    box-shadow: -20px 20px 60px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.app-header {
    height: 40px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 16px;
    border-bottom: 1px solid #333;
}
.app-header .dot { width: 8px; height: 8px; border-radius: 50%; background: #444; }
.app-header .bar { width: 40px; height: 6px; background: #333; border-radius: 4px; margin-left: auto; }
.app-header .bar-short { width: 20px; height: 6px; background: #333; border-radius: 4px; margin-left: 8px; }

.app-screen {
    padding: 32px;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.2s;
    width: 100%;
}

.showcase-right {
    flex: 1;
    text-align: left;
}

.tag-dynamic {
    background-color: var(--dynamic-color, var(--primary-pink));
    color: white;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: inline-block;
}

.showcase-right h2.mod-title-dynamic {
    font-size: clamp(32px, 8vw, 56px);
    margin-bottom: 16px;
    font-weight: 700;
    color: var(--dynamic-color, var(--primary-pink));
    transition: color 0.3s ease;
    word-break: break-word;
    hyphens: auto;
}

.showcase-right p {
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.6;
}

.mod-link {
    color: var(--dynamic-color, var(--primary-pink));
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 32px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: filter 0.3s;
}
.mod-link:hover {
    filter: brightness(1.2);
}

/* SECTION TWO-COL LAYOUT */
.two-col {
    display: flex;
    align-items: center;
    gap: 64px;
}
.align-start {
    align-items: flex-start;
}

.col-left {
    flex: 1;
}

.col-right {
    flex: 1;
    position: relative;
}

.title-large {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.highlight-green {
    color: var(--primary-green);
    transition: color 0.3s ease;
}

.highlight-pink {
    color: var(--primary-pink);
}

.description {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* MOCKUP COMPOSE */
.mockup-compose {
    position: relative;
    width: 100%;
    max-width: 1020px;
    height: auto;
    aspect-ratio: 16/9;
    margin: 0 auto;
    overflow: hidden; /* Prevent scaling from leaking out */
}

.desktop-mockup {
    width: 95%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 12px;
    box-shadow: 0 10px 60px rgba(0,0,0,0.9);
    transition: opacity 0.15s ease-in-out;
}

.mobile-mockup-absolute {
    width: 40%;
    position: absolute;
    right: 0;
    bottom: -10%;
    border-radius: 20px;
    box-shadow: -20px 20px 80px rgba(0,0,0,0.9);
}

.color-picker {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 8px; /* Reduced from 32px */
}

.color-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    position: relative;
    outline: none;
}
.color-dot.active::after {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border-radius: 50%;
    border: 2px solid white;
}

.color-dot.green { background-color: #10b981; }
.color-dot.blue { background-color: #3b82f6; }
.color-dot.red { background-color: #ef4444; }
.color-dot.pink { background-color: var(--primary-pink); }
.color-dot.orange { background-color: #f97316; }

.experimente-text {
    display: inline-block;
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 16px;
    opacity: 0.6;
}
.animate-pulse-soft {
    animation: pulseSoft 2s infinite ease-in-out;
}

@keyframes pulseSoft {
    0%, 100% { transform: translateY(0); opacity: 0.6; }
    50% { transform: translateY(-5px); opacity: 1; color: var(--primary-pink); }
}

/* removed redundant desktop-mockup block */

/* BENTO GRID */
.section-title {
    font-size: 40px;
    margin-bottom: 64px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, minmax(250px, auto));
    gap: 24px;
}

.bento-item {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, opacity 0.6s ease;
    opacity: 0;
    transform: translateY(30px);
}

.bento-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.bento-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.8), 0 0 15px rgba(255, 46, 159, 0.15);
    border-color: #333;
}

/* Grid Layout definitions */
.card-people {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
}

.bento-content-top {
    z-index: 5;
    position: relative;
    margin-bottom: 32px;
}

.bento-center-space {
    flex: 1; /* Consume remaining vertical void */
    display: flex;
    flex-direction: column;
    align-items: center;    /* Center horizontally */
    justify-content: center; /* Center vertically in the void */
    position: relative;
    z-index: 5;
    gap: 32px; /* space between icon and button */
}
.card-panel {
    grid-column: 2 / 4;
    grid-row: 1 / 2;
    flex-direction: row;
}
.card-mobile {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}
.card-affiliates {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

.bento-item h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}
.bento-item p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 32px;
}

.btn-primary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: var(--primary-pink);
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    z-index: 5;
    position: relative;
}

.people-icon-wrapper {
    position: relative;
    width: 200px;
    height: 160px; /* adjusted so it's a tight invisible box just for the icon */
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}
.glow-circle {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 1px solid rgba(255, 46, 159, 0.3);
    box-shadow: 0 0 80px rgba(255, 46, 159, 0.2);
}
.icon-headset {
    font-size: 48px;
    color: var(--primary-pink);
    position: relative;
    z-index: 2;
}
.sub-icon {
    position: absolute;
    bottom: -10px;
    right: -20px;
    background: #111;
    border: 1px solid #333;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
}
.glow-pink-border {
    border-color: rgba(255, 46, 159, 0.3);
    box-shadow: inset 0 0 20px rgba(255, 46, 159, 0.05);
}

.bento-item h4 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 700;
}
.card-panel .bento-text {
    width: 50%;
}
.panel-graphic {
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.graph-ui {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    width: 100%;
    height: 180px;
    padding: 16px;
    display: flex;
    flex-direction: column;
}
.g-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}
.g-dots { color: #555; }
.g-line { flex: 1; height: 6px; background: #333; border-radius: 4px; }
.g-body { display: flex; gap: 16px; flex: 1; }
.g-side { width: 30px; display: flex; flex-direction: column; gap: 8px; }
.g-link { height: 16px; width: 100%; border-radius: 4px; background: #333; }
.g-link.active { background: var(--primary-pink); }
.g-chart { flex: 1; display: flex; align-items: flex-end; justify-content: space-around; gap: 8px; }
.g-chart .bar { width: 20%; background: var(--primary-pink); border-radius: 4px 4px 0 0; box-shadow: 0 0 10px rgba(255, 46, 159, 0.4); }

.android-tag { color: var(--primary-pink); font-size: 12px; font-weight: 700; letter-spacing: 1px; }

.mobile-icon-wrapper {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-top: 32px;
}
.mobile-outline {
    width: 120px;
    height: 240px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 12px;
    box-shadow: 0 0 30px rgba(255,46,159,0.15);
    background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(0,0,0,0) 100%);
}
.m-dot {
    width: 6px;
    height: 6px;
    background: var(--text-color);
    border-radius: 50%;
}

.stats-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}
.stat-box {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.stat-box.full-width { width: 100%; }
.stat-box .lbl { font-size: 10px; color: #666; font-weight: 700; letter-spacing: 1px; display: flex; align-items: center; gap: 6px; }
.stat-box .dot-gray { width: 4px; height: 4px; background: #444; border-radius: 50%; }
.stat-box .val { font-size: 24px; font-weight: 700; }
.val.white { color: white; }
.val.green { color: var(--primary-green); display: flex; align-items: baseline; gap: 6px;}
.lbl-small { font-size: 10px; color: #666; font-weight: 400; }
.val.pink { color: var(--primary-pink); font-size: 20px;}

/* MAP SECTION */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.feature-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
    cursor: default;
}
.f-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary-pink);
    box-shadow: 0 0 8px var(--primary-pink);
    flex-shrink: 0;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.feature-card p {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-color);
    margin: 0;
    transition: color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-pink);
    box-shadow: 0 10px 25px rgba(255, 46, 159, 0.15);
}
.feature-card:hover .f-dot {
    opacity: 1;
    transform: scale(1);
}
.feature-card:hover p {
    color: #fff;
}

.map-container {
    position: relative;
    width: 100%;
}
.brazil-map {
    width: 100%;
    filter: brightness(0.8);
}
.map-marker {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transform: translate(-50%, -50%);
}
.pulse-dot {
    width: 12px;
    height: 12px;
    background: var(--primary-pink);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 10px var(--primary-pink);
}
.pulse-dot::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid var(--primary-pink);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(3); opacity: 0; }
}

.marker-label {
    background: #000;
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 4px;
    letter-spacing: 1px;
}

/* MAIN HERO SECTION */
.hero-main {
    padding-top: 80px;
    padding-bottom: 40px;
}
.align-center {
    align-items: center;
}
.hero-text-col {
    padding-right: 40px;
}
.tag-outline {
    display: inline-block;
    color: var(--primary-pink);
    border: 1px solid rgba(255, 46, 159, 0.3);
    background-color: rgba(255, 46, 159, 0.05);
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    text-transform: uppercase;
}
.main-title-large {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
}
.highlight-pink-italic {
    color: var(--primary-pink);
    font-style: italic;
    font-family: 'Playfair Display', Georgia, serif;
    letter-spacing: -1px;
    font-weight: 800;
}
.hero-images-col {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.floating-mockups {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: auto;
    aspect-ratio: 3/2;
}
.float-macbook {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%);
    animation: float1 6s ease-in-out infinite;
    z-index: 1;
}
.float-phone {
    position: absolute;
    width: 25%;
    bottom: -10%;
    right: 15%;
    transform: translate(0, 0);
    animation: float2 5s ease-in-out infinite;
    z-index: 2;
    filter: drop-shadow(-10px 10px 30px rgba(0,0,0,0.8));
}

@keyframes float1 {
    0% { transform: translate(-50%, -50%); }
    50% { transform: translate(-50%, -52%); }
    100% { transform: translate(-50%, -50%); }
}
@keyframes float2 {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

/* CASINO SECTION */
.casino-section {
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
    background-color: #0d0d0d;
}
.casino-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 800;
    color: var(--primary-pink);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.casino-logos-carousel {
    display: flex;
    overflow: hidden;
    width: 100%;
    margin-bottom: 40px;
    /* Removed mask inline to ensure compatibility */
}
.casino-logos-track {
    display: flex;
    gap: 40px;
    align-items: center;
    animation: scrollLogos 20s linear infinite;
}
@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.casino-logos-track img { 
    height: 36px; 
    object-fit: contain; 
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all 0.3s;
}
.casino-logos-track img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.casino-metrics {
    display: flex;
    gap: 24px;
}
.casino-content {
    min-width: 0;
    max-width: 100%;
}
.casino-metric-box {
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 24px;
    flex: 1;
    position: relative;
    z-index: 2; /* keep above mascots if any overlap */
}
.casino-metric-box strong,
.casino-metric-box .highlight-pink span { 
    font-size: clamp(32px, 5vw, 56px); 
    display: block; 
    margin-bottom: 8px; 
    background: linear-gradient(135deg, #ff2e9f, #ff7ab8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: none; /* remove basic shadow since we have fill color clear */
    filter: drop-shadow(0 5px 15px rgba(255, 46, 159, 0.3)); /* drop-shadow works better with transparent text backgrounds */
    line-height: 1;
}
.casino-metric-box span { font-size: 10px; font-weight: 800; color: white; display: block; margin-bottom: 12px; }
.casino-metric-box p { font-size: 12px; color: #888; line-height: 1.4; }

/* Slot Machine Container */
.slot-machine-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slot-machine-container.push-right {
    margin: 0 0 0 auto;
}
.casino-glow {
    position: absolute;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(255,46,159,0.3) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    box-shadow: 0 0 100px 50px rgba(255,46,159,0.15);
}

/* CSS SLOT MACHINE */
.slot-machine {
    position: relative;
    width: 340px;
    height: 420px;
    margin: 0 auto;
    z-index: 2;
}
.slot-body {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border: 2px solid #333;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8), inset 0 0 20px rgba(255, 46, 159, 0.1);
    display: flex;
    flex-direction: column;
    padding: 32px 24px;
    z-index: 3;
}

/* Header */
.slot-header {
    text-align: center;
    color: var(--primary-pink);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 4px;
    margin-bottom: 24px;
    text-shadow: 0 0 10px rgba(255, 46, 159, 0.5);
}

/* Screen */
.slot-screen {
    background: #000;
    border: 4px solid #222;
    border-radius: 12px;
    height: 100px;
    display: flex;
    gap: 8px;
    padding: 0 8px;
    box-shadow: inset 0 0 20px rgba(0,0,0,1);
    position: relative;
    overflow: hidden;
    align-items: flex-start;
}
.slot-screen::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 46, 159, 0.4);
    transform: translateY(-50%);
    z-index: 5;
    pointer-events: none;
    box-shadow: 0 0 5px var(--primary-pink);
}

/* Reels */
.reel {
    flex: 1;
    background: #111;
    border-radius: 4px;
    position: relative;
    height: 100%;
}
.reel-strip {
    display: flex;
    flex-direction: column;
    transform: translateY(0);
}
.reel-strip div {
    min-height: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.2));
}

/* Footer / Play button */
.slot-footer {
    margin-top: auto;
    display: flex;
    justify-content: center;
}
.slot-button {
    background: linear-gradient(145deg, #ff2e9f, #8a0b4d);
    color: white;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 12px 32px;
    border-radius: 999px;
    box-shadow: 0 10px 20px rgba(255,46,159,0.3);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    border: 1px solid #ff2e9f;
    cursor: pointer;
    transition: transform 0.1s;
}
.slot-button:active {
    transform: scale(0.95);
}

/* Gemini Images Base Styles (moved here to remove duplicates below) */
.gemini-images, .gemini-images-front {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; height: 100%;
    pointer-events: none;
}
.gemini-images {
    z-index: 1; /* Below the slot machine */
}
.gemini-images-front {
    z-index: 3; /* Above the slot machine */
}
.gem-img {
    position: absolute;
    top: 55%; left: 50%;
    width: 55%; 
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.9);
    opacity: 1; /* always visible */
}

/* Floating Plane */
.floating-plane {
    position: absolute;
    top: -50px;
    left: -80px;
    width: 250px;
    object-fit: contain;
    animation: flyPlane 5s ease-in-out infinite;
    z-index: 10;
    pointer-events: none;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
    border-radius: 12px;
}
@keyframes flyPlane {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
}

/* Removed duplicated gemini-images css block */
.gem-2 {
    transform: translate(-110%, 10%) scale(0.8) rotate(-5deg);
    z-index: 1;
    animation: floatMascot1 6s ease-in-out infinite;
}
.gem-3 {
    transform: translate(65%, -50%) scale(1.05) rotate(15deg);
    z-index: 1;
    animation: floatMascot2 7s ease-in-out infinite;
}

@keyframes floatMascot1 {
    0%, 100% { transform: translate(-110%, 10%) scale(0.8) rotate(-5deg); }
    50% { transform: translate(-110%, 0%) scale(0.8) rotate(-3deg); }
}
@keyframes floatMascot2 {
    0%, 100% { transform: translate(65%, -50%) scale(1.05) rotate(15deg); }
    50% { transform: translate(65%, -58%) scale(1.05) rotate(13deg); }
}

/* CSS Lever */
.css-lever {
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    cursor: pointer;
    width: 40px;
    height: 120px;
}
.lever-base {
    position: absolute;
    right: 0;
    top: 40px;
    width: 25px;
    height: 50px;
    background: #2a2a2a;
    border-radius: 8px;
    border: 2px solid #555;
    z-index: 2;
}
.lever-stick {
    position: absolute;
    right: 8px;
    top: 0;
    width: 10px;
    height: 60px;
    background: linear-gradient(90deg, #999, #eee, #999);
    border-radius: 5px;
    transform-origin: bottom center;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1;
}
.lever-ball {
    position: absolute;
    top: -16px;
    left: -10px;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle at 30% 30%, #ff2e9f, #8a0b4d);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(255,46,159,0.5);
}

.css-lever:hover .lever-ball {
    filter: brightness(1.2);
}

/* Lever Pull Animation */
.css-lever.pulled .lever-stick {
    transform: scaleY(-0.5);
}

/* ANIMATED SQUARES SECTION */
.grid-3-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature-square {
    background-color: #121212;
    border-radius: 24px;
    border: 1px solid #222;
    padding: 24px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1.1;
}
.ft-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 8px;
    z-index: 2;
}
.ft-title.left { text-align: left; }
.ft-sub.left { text-align: left; color: #888; font-size: 14px; margin-bottom: 24px; z-index: 2; }

/* Pix Card */
.card-pix {
    background: linear-gradient(135deg, #2a081a 0%, #111 100%);
    border-color: rgba(255, 46, 159, 0.2);
    box-shadow: inset 0 0 40px rgba(255, 46, 159, 0.05);
}
.pix-transactions {
    margin-top: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 160px;
    align-items: center;
}
.pix-item {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    transform-origin: center bottom;
}
.pix-item.faded-1 {
    transform: translateY(-90px) scale(0.9);
    opacity: 0.1;
    z-index: 1;
}
.pix-item.faded-2 {
    transform: translateY(-45px) scale(0.95);
    opacity: 0.4;
    z-index: 2;
}
.pix-item.active-pix {
    transform: translateY(0) scale(1);
    opacity: 1;
    z-index: 3;
    border-color: rgba(255, 46, 159, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.animate-slide-up {
    animation: pixPulse 3s ease-in-out infinite;
}
@keyframes pixPulse {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-3px) scale(1.02); }
}
.pix-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
}
.pix-icon.primary { opacity: 1; color: var(--primary-green); }
.pix-info strong { display: block; font-size: 14px; font-weight: 600; color: white; }
.pix-info span { display: block; font-size: 10px; color: #666; letter-spacing: 1px; margin-top: 4px; font-weight: 700; text-transform: uppercase; }
.badge-novo {
    display: inline-flex !important;
    align-items: center;
    gap: 4px;
    background: rgba(255, 46, 159, 0.2);
    color: var(--primary-pink) !important;
    padding: 2px 8px;
    border-radius: 4px;
    margin-top: 4px !important;
}
.dot-pink-small {
    width: 6px;
    height: 6px;
    background: var(--primary-pink);
    border-radius: 50%;
}

/* Support Card */
.support-anim-box {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.chat-b {
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 11px;
    max-width: 80%;
    position: relative;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    animation: chatPop 6s infinite;
    opacity: 0;
}
.chat-b.left {
    align-self: flex-start;
    background: #1a1a1a;
    border: 1px solid #333;
    color: #aaa;
    transform: translateX(-10px);
}
.chat-b.right {
    align-self: flex-end;
    background: #2a2a2a;
    border: 1px solid #444;
    color: #eee;
    transform: translateX(10px);
}
.delay-1 { animation-delay: 1.5s; }
.delay-2 { animation-delay: 3s; }

@keyframes chatPop {
    0%, 15% { opacity: 0; transform: translateY(10px); }
    20%, 90% { opacity: 1; transform: translateY(0); }
    95%, 100% { opacity: 0; }
}

/* Affiliate Card */
.affiliate-network {
    position: relative;
    height: 140px;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.net-node {
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    border: 2px solid var(--primary-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-pink);
    position: relative;
    z-index: 5;
    box-shadow: 0 0 20px rgba(255, 46, 159, 0.3);
}
.net-node.branch {
    position: absolute;
    width: 32px;
    height: 32px;
    border-color: #333;
    color: #555;
    z-index: 4;
    animation: branchPulse 4s infinite alternate ease-in-out;
}
.net-node.n1 { top: 10px; left: 20%; animation-delay: 0s; }
.net-node.n2 { bottom: 20px; right: 15%; animation-delay: 1s; }
.net-node.n3 { top: 30px; right: 25%; animation-delay: 2s; }

.com {
    position: absolute;
    top: -20px;
    font-size: 10px;
    font-weight: 800;
    white-space: nowrap;
    opacity: 0;
    animation: commFloat 4s infinite;
}
.n1 .com { animation-delay: 0.5s; }
.n2 .com { animation-delay: 1.5s; }
.n3 .com { animation-delay: 2.5s; }

@keyframes branchPulse {
    0% { transform: scale(1); border-color: #333; }
    100% { transform: scale(1.1); border-color: var(--primary-pink); }
}

@keyframes commFloat {
    0% { opacity: 0; transform: translateY(0); }
    20% { opacity: 1; transform: translateY(-10px); }
    80% { opacity: 1; transform: translateY(-10px); }
    100% { opacity: 0; transform: translateY(-20px); }
}

/* Terminal Card */
.live-feed-badge {
    position: absolute;
    top: 24px;
    left: 32px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 800;
    color: #666;
    letter-spacing: 1px;
}
.terminal-box {
    margin-top: auto;
    background: transparent;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 16px;
    font-family: monospace;
    font-size: 10px;
    color: #aaa;
    line-height: 1.6;
    height: 140px;
}
.term-content { white-space: pre-wrap; display: inline; text-align: left; }
.term-cursor { display: inline-block; color: var(--primary-pink); margin-left: 2px; }
.blink { animation: blink 1s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* Integrations Card */
.days-container {
    position: relative;
    display: flex;
    gap: 8px;
    margin-top: auto;
    margin-bottom: auto;
    justify-content: center;
}
.day-box {
    width: 30px;
    height: 30px;
    background: #1a1a1a;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: #666;
    border: 1px solid #333;
    transition: all 0.3s;
}
.cursor-anim {
    position: absolute;
    bottom: -15px;
    right: 80px;
    font-size: 20px;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
    animation: cursorHover 4s infinite ease-in-out;
    z-index: 10;
}
@keyframes cursorHover {
    0%, 10% { transform: translate(0, 0); }
    30% { transform: translate(-80px, 10px); }
    50% { transform: translate(-20px, -5px); }
    70% { transform: translate(30px, 5px); }
    80% { transform: translate(30px, -5px) scale(0.9); }
    100% { transform: translate(0, 0); }
}
.highlight-bounce {
    animation: bounceDay 4s infinite ease-in-out;
}
@keyframes bounceDay {
    0%, 75% { transform: scale(1); background: #1a1a1a; color: #666; border-color: #333; box-shadow: none; }
    80%, 100% { transform: scale(1.1); background: var(--primary-pink); color: white; border-color: var(--primary-pink); box-shadow: 0 0 15px rgba(255, 46, 159, 0.5); }
}

/* SPORTSBOOK B2B SECTION */
.sportsbook-section {
    padding: 20px 0;
    position: relative;
    background: radial-gradient(circle at right center, rgba(255, 46, 159, 0.05), transparent 50%);
    overflow: hidden; /* Prevent glows from leaking */
}

.sportsbook-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.sb-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(255, 46, 159, 0.3), transparent 70%);
    filter: blur(50px);
    z-index: 0;
    animation: sb-pulse 4s infinite alternate;
}

@keyframes sb-pulse {
    from { transform: translate(-50%, -50%) scale(0.9); opacity: 0.6; }
    to { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

.sb-player-img {
    position: relative;
    width: 100%;
    max-width: 400px;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.8));
    animation: sb-float 6s ease-in-out infinite;
}

@keyframes sb-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Benefits Grid */
.sb-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 24px; /* Reduced from 64px */
}

.sb-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 32px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.sb-card:hover {
    border-color: var(--primary-pink);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.sb-card i {
    font-size: 32px;
    color: var(--primary-pink);
}

.sb-card h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

/* Banner Final */
.sb-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 46, 159, 0.15), #111 80%);
    border: 1px solid var(--primary-pink);
    border-radius: 24px;
    padding: 48px;
    margin-top: 32px; /* Reduced from 64px */
    box-shadow: 0 0 40px rgba(255, 46, 159, 0.15);
}

.sb-banner h3 {
    font-size: 32px;
    color: #fff;
    max-width: 500px;
    letter-spacing: -1px;
}

/* FINAL CTA SECTION */
.final-cta-section {
    position: relative;
    overflow: hidden;
    padding-top: 20px;
    padding-bottom: 0;
}

.browser-mockup-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    background: #111;
    border-radius: 16px 16px 0 0;
    border: 1px solid #333;
    border-bottom: none;
    box-shadow: 0 -10px 100px rgba(255, 46, 159, 0.15);
    overflow: hidden;
    transform: translateY(20px);
}

.browser-mockup-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,46,159,0.2) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

.browser-header-top {
    display: flex;
    align-items: center;
    background: #1a1a1a;
    padding: 12px 16px;
    border-bottom: 1px solid #222;
}

.browser-dots {
    display: flex;
    gap: 8px;
}

.browser-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.browser-dot.red { background: #ff5f56; }
.browser-dot.yellow { background: #ffbd2e; }
.browser-dot.green { background: #27c93f; }

.browser-address {
    flex: 1;
    margin: 0 24px;
    background: #000;
    height: 24px;
    border-radius: 4px;
    opacity: 0.3;
}

.browser-content-img {
    width: 100%;
    display: block;
    object-fit: cover;
    object-position: top;
}

/* GLOBAL LEAD MODAL */
.lead-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

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

.lead-modal {
    background: #0d0d0d;
    border: 1px solid var(--primary-pink);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 450px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(255, 46, 159, 0.25);
    transform: scale(0.95) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lead-modal-overlay.active .lead-modal {
    transform: scale(1) translateY(0);
}

/* FOOTER */
.site-footer {
    background: #0d0d0d;
    border-top: 1px solid #222;
    padding: 40px 0;
    color: #888;
}
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 !important;
}
.footer-copy {
    font-size: 14px;
}
.footer-socials {
    display: flex;
    gap: 24px;
}
.social-link {
    color: #fff;
    font-size: 20px;
    transition: color 0.3s, transform 0.3s;
}
.social-link:hover {
    color: var(--primary-pink);
    transform: translateY(-3px);
}

/* COOKIE BANNER - INDEX IDENTITY */
.cookie-banner {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(150%);
    width: 90%;
    max-width: 1000px;
    z-index: 10000;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.cookie-banner.active {
    transform: translateX(-50%) translateY(0);
}
.cookie-container {
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 46, 159, 0.3);
    padding: 24px 40px;
    border-radius: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(255, 46, 159, 0.15);
    position: relative;
    overflow: hidden;
}

/* Subtle gradient decoration */
.cookie-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-pink);
}

.cookie-text {
    font-size: 14px;
    color: #fff;
    line-height: 1.6;
    max-width: 700px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.cookie-text i {
    color: var(--primary-pink);
    font-size: 24px;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}
.cookie-link {
    color: #888;
    font-size: 13px;
    text-decoration: none;
    border-bottom: 1px solid #333;
    transition: all 0.3s;
}
.cookie-link:hover {
    color: var(--primary-pink);
    border-color: var(--primary-pink);
}
.btn-cookie-primary {
    background: var(--primary-pink);
    color: #fff;
    border: none;
    padding: 12px 32px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 46, 159, 0.3);
}
.btn-cookie-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 46, 159, 0.5);
    filter: brightness(1.1);
}
.btn-cookie-secondary {
    background: transparent;
    color: #888;
    border: none;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: color 0.3s;
}
.btn-cookie-secondary:hover { color: #fff; }

@media (max-width: 900px) {
    .cookie-container {
        flex-direction: column;
        gap: 24px;
        text-align: center;
        padding: 32px 24px;
    }
    .cookie-text {
        flex-direction: column;
        gap: 12px;
    }
    .cookie-actions {
        width: 100%;
        justify-content: space-around;
        flex-wrap: wrap;
    }
    .footer-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

.lead-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s;
}

.lead-modal-close:hover {
    color: var(--primary-pink);
}

.lead-modal-title {
    font-size: 24px;
    color: white;
    margin-bottom: 8px;
    font-weight: 700;
}

.lead-modal-subtitle {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    color: white;
    font-family: var(--font-main);
    font-size: 15px;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 3px rgba(255, 46, 159, 0.15);
}

.form-group textarea {
    resize: vertical;
}

/* RESPONSIVE & BREAKPOINTS */

/* Global Images Rescue base */
img { max-width: 100%; height: auto; }

/* Small laptop: 769px – 1024px */
@media (max-width: 1024px) {
    .container { width: 95%; padding: 60px 0; }
    h1.main-title-large { font-size: clamp(40px, 6vw, 56px); line-height: 1.1; }
    h2.title-large { font-size: clamp(32px, 5vw, 42px); }
    .nav-links { gap: 20px; }
}

/* Tablet: 481px – 768px */
@media (max-width: 768px) {
    .two-col, .showcase-content, .casino-metrics { flex-direction: column; gap: 40px; }
    .col-right { margin-top: 20px; }
    
    .sportsbook-section .two-col { flex-direction: column-reverse; gap: 40px; }
    .sportsbook-visual { min-height: 300px; margin-top: 24px; }
    .sb-player-img { max-width: 320px; }
    .sb-benefits-grid { grid-template-columns: 1fr; }
    .sb-banner { flex-direction: column; text-align: center; gap: 32px; }
    .sb-banner h3 { font-size: 24px; }
    .sb-tech-box { flex-direction: column; align-items: center; border-radius: 24px; text-align: center; }

    .hero-text-col { 
        padding-left: 5%; /* Shifted slightly right as requested */
    }
    .hero-text-col, .left-align { 
        text-align: center !important; 
        display: flex !important; 
        flex-direction: column !important; 
        align-items: center !important; 
    }
    .hero-text-col h1, .hero-text-col p, .hero-text-col span { text-align: center !important; }
    .tag-outline { margin-left: auto; margin-right: auto; }
    p.description { margin-left: auto; margin-right: auto; text-align: center !important; }
    .btn-primary { margin-top: 24px; }
    .bento-grid { grid-template-columns: 1fr; }
    .card-people, .card-panel, .card-mobile, .card-affiliates { grid-column: 1 / 2; grid-row: auto; }
    .card-panel { flex-direction: column; gap: 24px; }
    .card-panel .bento-text, .panel-graphic { width: 100%; }
    .feature-grid { grid-template-columns: 1fr; }
    .grid-3-col { grid-template-columns: 1fr; gap: 40px; }
    .feature-square { height: auto; padding: 24px; aspect-ratio: auto; }
    
    .floating-plane { display: block; width: 150px; top: -60px; left: -20px; }
    .floating-mockups { 
        min-height: auto; 
        display: flex; 
        flex-direction: column; 
        align-items: center; 
        gap: 32px;
        margin-top: 40px;
    }
    .float-macbook { display: none !important; }
    .float-phone { 
        position: relative !important; 
        top: 0 !important; 
        left: 0 !important; 
        right: 0 !important; 
        bottom: 0 !important; 
        transform: none !important; 
        width: 100% !important; 
        max-width: 250px !important; 
        animation: none !important; 
        z-index: 5;
    }
    
    .hero-images-col { margin-top: 40px; width: 100%; }
    .casino-section { padding-top: 40px; padding-bottom: 40px; }
    .casino-visual { width: 100%; justify-content: center !important; margin-top: 40px; }
    .slot-machine-container.push-right { margin: 0 auto !important; }
    
    .slot-machine { transform: scale(0.85); transform-origin: center top; margin-bottom: -40px; }
    .gem-2 { transform: translate(25%, -2%) scale(0.6) rotate(5deg); animation: none; }
    .gem-3 { display: none !important; }
    
    .app-mockup { width: 100%; max-width: 320px; height: 250px; }
    .nav-arrow.left { left: 8px; }
    .nav-arrow.right { right: 8px; }
    .showcase-box { padding: 40px 24px; }
    .people-icon-wrapper { display: none; }

    /* Navigation Hamburger */
    .hamburger-btn { display: block !important; }
    .nav-actions .btn-primary-nav { display: none !important; }
    .nav-links {
        position: absolute;
        top: 80px;
        left: 5%;
        right: 5%;
        background: #1a1a1a;
        flex-direction: column;
        padding: 24px;
        border-radius: 16px;
        border: 1px solid var(--card-border);
        box-shadow: 0 20px 40px rgba(0,0,0,0.8);
        gap: 24px;
        align-items: center;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-20px);
        transition: all 0.3s ease;
        z-index: 100;
    }
    .nav-links.active {
        opacity: 1;
        pointer-events: all;
        transform: translateY(0);
    }
}

/* Mobile: 320px – 480px */
@media (max-width: 480px) {
    .container { padding: 40px 0; width: 92%; }
    h1.main-title-large { font-size: clamp(32px, 8vw, 40px); }
    h2.title-large { font-size: clamp(28px, 7vw, 32px); }
    
    .btn-primary { width: auto; min-width: 240px; justify-content: center; margin-left: auto; margin-right: auto; }
    .pills-container { flex-wrap: wrap; gap: 8px; }
    .pill { flex: 1 1 calc(50% - 10px); padding: 12px 10px; font-size: 12px; text-align: center; }
    
    .slot-machine { transform: scale(0.85); transform-origin: center top; margin-top: 0; margin-bottom: -40px; }
    .slot-machine-container { height: auto; padding-bottom: 20px; } 
    
    .gem-2 { transform: translate(25%, -2%) scale(0.6) rotate(5deg); }
    .gem-3 { display: none !important; }
    
    .floating-plane { width: 120px; top: -40px; left: -10px; }
    
    .casino-logos-track { gap: 20px; }
    .casino-logos-track img { height: 28px; }
    
    .showcase-box { padding: 80px 16px 32px 16px; }
    .nav-arrow.left { top: 32px; left: calc(50% - 32px); transform: translateX(-50%); }
    .nav-arrow.right { top: 32px; right: calc(50% - 32px); transform: translateX(50%); }
    
    .bento-item { padding: 24px; }
    .people-icon-wrapper { display: none; } /* Hide on smallest screens to prevent overlap entirely */
    .mockup-compose { aspect-ratio: 16/9; height: auto; }
    .desktop-mockup { width: 100%; top: 0; transform: scale(1.05); }
    .mobile-mockup-absolute { bottom: -20px; transform: scale(1.1); width: 45%; }
    
    .lead-modal { padding: 30px 20px; }
}
