/* ----------------------------------------------------
   COSMOPLAY PREMIUM BRIDGE PAGE STYLING SYSTEM
   ---------------------------------------------------- */

:root {
    /* Color Palette */
    --bg-deep-space: #01040a;
    --bg-cosmic-blue: #070e1c;
    --color-gold: #FFC107;
    --color-yellow: #FFEB3B;
    --color-purple: #E040FB;
    
    --text-pure: #FFFFFF;
    --text-primary: #E2E8F0;
    --text-muted: #94A3B8;
    --text-dark: #475569;
    
    /* Gradients */
    --gold-gradient: linear-gradient(135deg, #FFEB3B 0%, #FFC107 50%, #FF9800 100%);
    --dark-gradient: linear-gradient(180deg, #050d1a 0%, #01040a 100%);
    --card-gradient: linear-gradient(145deg, rgba(13, 27, 56, 0.65) 0%, rgba(5, 12, 28, 0.85) 100%);
    --glow-effect: 0 0 25px rgba(255, 193, 7, 0.35);
    
    /* Layout & Borders */
    --border-glass: 1px solid rgba(255, 255, 255, 0.08);
    --border-radius-lg: 16px;
    --border-radius-md: 10px;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Outfit', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--bg-deep-space);
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
}

/* ----------------------------------------------------
   IMMERSIVE BACKGROUND & AURORA EFFECTS
   ---------------------------------------------------- */
#stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, #040d1f 0%, #01040a 100%);
}

/* Technical Pulse Grid Overlay */
.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    animation: gridPulse 8s ease-in-out infinite alternate;
}

/* Star Layers */
#stars, #stars2, #stars3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 400px 400px;
}

#stars {
    background-image: 
        radial-gradient(1px 1px at 20px 30px, #fff, rgba(0,0,0,0)),
        radial-gradient(1.5px 1.5px at 150px 70px, #fff, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 300px 180px, #fff, rgba(0,0,0,0));
    opacity: 0.25;
    animation: spaceMove 140s linear infinite;
}

#stars2 {
    background-image: 
        radial-gradient(1.5px 1.5px at 120px 40px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 40px 280px, #fff, rgba(0,0,0,0)),
        radial-gradient(1.5px 1.5px at 340px 90px, #fff, rgba(0,0,0,0));
    opacity: 0.45;
    animation: spaceMove 90s linear infinite;
}

#stars3 {
    background-image: 
        radial-gradient(2px 2px at 90px 130px, #FFC107, rgba(0,0,0,0)),
        radial-gradient(2.5px 2.5px at 290px 40px, #fff, rgba(0,0,0,0));
    opacity: 0.6;
    animation: spaceMove 60s linear infinite;
}

/* Drifting Floating Auroras */
.aurora {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.22;
    z-index: -1;
    mix-blend-mode: screen;
    animation: floatAurora 25s ease-in-out infinite alternate;
}

.aurora-gold {
    top: -5%;
    left: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.35) 0%, transparent 70%);
    animation-duration: 32s;
}

.aurora-blue {
    bottom: -10%;
    right: 5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.28) 0%, transparent 70%);
    animation-duration: 42s;
}

.aurora-magenta {
    top: 35%;
    right: 25%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(224, 64, 251, 0.22) 0%, transparent 70%);
    animation-duration: 26s;
}

/* Shooting Star / Comet System */
.shooting-star-system {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.shooting-star {
    position: absolute;
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 235, 59, 1), rgba(255, 235, 59, 0));
    transform: rotate(-35deg);
    opacity: 0;
    animation: shoot 9s ease-in-out infinite;
}

.star-1 { top: 10%; left: 80%; animation-delay: 0s; }
.star-2 { top: 35%; left: 95%; animation-delay: 3s; animation-duration: 11s; }
.star-3 { top: 5%; left: 45%; animation-delay: 5.5s; animation-duration: 7s; }
.star-4 { top: 55%; left: 90%; animation-delay: 8s; animation-duration: 10s; }

/* ----------------------------------------------------
   KEYFRAMES FOR VISUAL EFFECTS
   ---------------------------------------------------- */
@keyframes spaceMove {
    from { transform: translateY(0px); }
    to { transform: translateY(-400px); }
}

@keyframes gridPulse {
    0% { opacity: 0.5; }
    100% { opacity: 1.1; }
}

@keyframes floatAurora {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    50% { transform: translate(60px, -50px) scale(1.15) rotate(180deg); }
    100% { transform: translate(-40px, 70px) scale(0.9) rotate(360deg); }
}

@keyframes shoot {
    0% { transform: translate(0, 0) rotate(-35deg) scale(0.6); opacity: 0; }
    4% { opacity: 0.9; }
    12% { transform: translate(-400px, 280px) rotate(-35deg) scale(1.3); opacity: 0; }
    100% { transform: translate(-400px, 280px) rotate(-35deg) scale(1.3); opacity: 0; }
}

@keyframes pulseGreen {
    0%, 100% { transform: scale(0.95); opacity: 0.5; }
    50% { transform: scale(1.25); opacity: 1; box-shadow: 0 0 10px #4CAF50; }
}

@keyframes rotateBorder {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

@keyframes ctaPulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.55), 0 0 15px rgba(255, 193, 7, 0.3); }
    70% { box-shadow: 0 0 0 18px rgba(255, 193, 7, 0), 0 0 25px rgba(255, 193, 7, 0.45); }
    100% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0), 0 0 15px rgba(255, 193, 7, 0.3); }
}

@keyframes shine {
    0% { left: -150%; }
    18%, 100% { left: 150%; }
}

/* ----------------------------------------------------
   LAYOUTS & COMPONENTS
   ---------------------------------------------------- */
.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Floating Glassmorphic Header (z-index bug fixed) */
.main-header {
    position: sticky;
    top: 15px;
    z-index: 9999 !important; /* Forces header stack above all scrolling elements */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    background: rgba(4, 9, 20, 0.88); /* Higher opacity for solid shielding */
    border: var(--border-glass);
    border-radius: 40px;
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 193, 7, 0.04);
    margin-top: 15px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 38px;
    height: 38px;
}

.logo-text {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 1.5px;
    color: var(--text-pure);
}

.logo-text .highlight {
    color: var(--color-yellow);
    text-shadow: 0 0 15px rgba(255, 235, 59, 0.4);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.live-counter {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(13, 27, 56, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
}

.pulse-dot {
    width: 7px;
    height: 7px;
    background-color: #4CAF50;
    border-radius: 50%;
    display: inline-block;
    animation: pulseGreen 2.5s infinite;
}

.counter-text {
    color: var(--text-muted);
}

.counter-text strong {
    color: var(--text-pure);
}

.header-cta {
    background: var(--gold-gradient);
    color: #000;
    border: none;
    border-radius: 20px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.35);
    transition: var(--transition-smooth);
}

.header-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.55);
}

/* Content Layout */
.main-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 0 30px; /* Increased top padding to clear sticky header */
}

/* Hero Section */
.hero-section {
    width: 100%;
    max-width: 1100px;
    margin-bottom: 40px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    text-align: left;
}

.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge-container {
    margin-bottom: 16px;
}

.portal-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 193, 7, 0.08);
    border: 1px solid rgba(255, 193, 7, 0.25);
    color: var(--color-gold);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 5px 12px;
    border-radius: 30px;
}

.main-title {
    font-weight: 900;
    font-size: 46px;
    line-height: 1.1;
    letter-spacing: -0.5px;
    color: var(--text-pure);
    margin-bottom: 14px;
}

.text-gradient {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 193, 7, 0.25);
}

.subtitle {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
    max-width: 520px;
}

/* Compact Trust Pill Row */
.trust-pills-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.trust-pill {
    background: rgba(13, 27, 56, 0.4);
    border: var(--border-glass);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-pure);
}

/* Hero CTA Button Layout (Relocated) */
.hero-cta-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
}

.hero-cta-subtext {
    font-size: 11px;
    color: var(--text-dark);
    padding-left: 8px;
}

/* Hero Right Image with 3D Tilt Hover */
.hero-right-img {
    display: flex;
    justify-content: center;
    position: relative;
    perspective: 1000px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 360px;
}

.image-back-glow {
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.28) 0%, rgba(224, 64, 251, 0.15) 60%, transparent 100%);
    filter: blur(50px);
    z-index: 0;
    transition: var(--transition-smooth);
}

.hero-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    z-index: 1;
    position: relative;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.6));
}

/* Smooth 3D tilt interaction on hover */
.tilt-image {
    transition: var(--transition-smooth);
    transform-style: preserve-3d;
    will-change: transform, filter;
}

.hero-image-wrapper:hover .tilt-image,
.offer-teaser-img:hover .tilt-image {
    transform: perspective(800px) rotateX(10deg) rotateY(-8deg) scale(1.05);
    filter: drop-shadow(0 0 35px rgba(255, 193, 7, 0.55)) drop-shadow(0 15px 40px rgba(0, 0, 0, 0.75));
}

.hero-image-wrapper:hover .image-back-glow {
    filter: blur(65px);
    opacity: 1.3;
}

/* Path Selector Section */
.selection-section {
    width: 100%;
    max-width: 1100px;
    margin-bottom: 30px;
    text-align: center;
}

.section-title {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 16px;
    text-transform: uppercase;
}

/* Turning Glow Border Grid */
.paths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.path-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    cursor: pointer;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.path-content {
    background: var(--card-gradient);
    margin: 1.5px;
    padding: 22px 18px;
    border-radius: calc(var(--border-radius-lg) - 1.5px);
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition-smooth);
    background-color: var(--bg-cosmic-blue);
    height: calc(100% - 3px);
}

/* Conic Gradient Animated Border */
.turning-glow-border {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent 0%,
        transparent 35%,
        var(--color-yellow) 50%,
        var(--color-purple) 75%,
        transparent 90%,
        transparent 100%
    );
    animation: rotateBorder 5s linear infinite;
    z-index: 1;
    opacity: 1; /* Always visible and running on all three boxes */
    transition: opacity 0.3s ease;
}

.path-card.active .turning-glow-border {
    animation-duration: 3.5s; /* Spins slightly faster when active */
}

.path-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.path-card.active {
    box-shadow: var(--glow-effect), 0 12px 30px rgba(0, 0, 0, 0.5);
}

.path-card.active .path-content {
    background: linear-gradient(145deg, rgba(16, 32, 66, 0.85) 0%, rgba(4, 9, 22, 0.98) 100%);
}

.path-icon-container {
    font-size: 30px;
    margin-bottom: 12px;
    transition: var(--transition-smooth);
}

.path-card:hover .path-icon-container {
    transform: scale(1.15) rotate(5deg);
}

.path-title {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 8px;
    transition: var(--transition-smooth);
}

.path-card.active .path-title {
    color: var(--color-yellow);
}

.path-bonus {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-pure);
    margin-bottom: 2px;
}

.path-extra {
    font-size: 12px;
    color: var(--text-muted);
}

.path-card.active .path-extra {
    color: var(--text-pure);
}

/* Offer Section */
.offer-section {
    width: 100%;
    max-width: 800px;
    margin-bottom: 30px;
}

.offer-box-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.offer-box-wrapper .turning-glow-border {
    opacity: 1;
    animation-duration: 7s;
}

.offer-box {
    background: var(--bg-cosmic-blue);
    margin: 2px;
    border-radius: calc(var(--border-radius-lg) - 2px);
    padding: 30px;
    position: relative;
    z-index: 2;
}

.offer-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
    align-items: center;
}

.offer-text-area {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.offer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 16px;
}

.offer-tag {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--color-yellow);
    background: rgba(255, 235, 59, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid rgba(255, 235, 59, 0.2);
}

.offer-status {
    font-size: 11px;
    font-weight: 800;
    color: #4CAF50;
}

.offer-title {
    font-size: 28px;
    font-weight: 900;
    color: var(--text-pure);
    margin-bottom: 8px;
    line-height: 1.15;
}

.offer-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5;
}

/* ----------------------------------------------------
   PREMIUM CTA GLOW & SHINE SWEEP
   ---------------------------------------------------- */
.cta-btn {
    background: var(--gold-gradient);
    color: #000;
    border: none;
    border-radius: 40px;
    padding: 18px 45px; /* Restored/increased premium sizing */
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-smooth);
    animation: ctaPulse 2s infinite;
}

/* Shine sweep effect container */
.shiny-cta {
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(255, 193, 7, 0.4), 0 0 15px rgba(255, 235, 59, 0.25);
}

.shiny-cta::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -150%;
    width: 150%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.28) 30%,
        rgba(255, 255, 255, 0.7) 50%,
        rgba(255, 255, 255, 0.28) 70%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(25deg);
    transition: none;
    animation: shine 4.8s ease-in-out infinite;
}

.shiny-cta:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 30px rgba(255, 193, 7, 0.75), 0 0 30px rgba(255, 235, 59, 0.45);
}

.cta-arrow svg {
    transition: var(--transition-smooth);
}

.cta-btn:hover .cta-arrow svg {
    transform: translateX(5px);
}

/* Offer Teaser Image */
.offer-teaser-img {
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.teaser-img {
    width: 100%;
    max-width: 240px;
    height: auto;
    object-fit: contain;
    border-radius: var(--border-radius-md);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
    animation: float 8s ease-in-out infinite;
}

/* Live Winners Section */
.live-activity-section {
    width: 100%;
    max-width: 800px;
    background: rgba(8, 17, 37, 0.35);
    border: var(--border-glass);
    border-radius: var(--border-radius-md);
    padding: 12px 18px;
    backdrop-filter: blur(8px);
}

.activity-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.live-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-purple);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--color-purple);
}

.activity-header h3 {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}

.ticker-viewport {
    height: 40px;
    overflow: hidden;
}

.ticker-track {
    display: flex;
    flex-direction: column;
    transition: transform 0.5s ease-in-out;
}

.ticker-item {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12.5px;
}

.winner-user {
    color: var(--text-pure);
    font-weight: 600;
}

.winner-amount {
    color: var(--color-yellow);
    font-weight: 800;
    background: rgba(255, 235, 59, 0.08);
    padding: 1px 7px;
    border-radius: 4px;
    border: 1px solid rgba(255, 235, 59, 0.15);
}

.winner-game {
    color: var(--text-muted);
}

.winner-time {
    color: var(--text-dark);
}

/* Footer Styling with Legal List */
.main-footer {
    text-align: center;
    padding: 30px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 700;
    width: 28px;
    height: 28px;
    border-radius: 50%;
}

.footer-badge.text-badge {
    width: auto;
    height: auto;
    border-radius: 4px;
    padding: 3px 8px;
    font-size: 9px;
}

/* Footer Legal Links Grid */
.footer-links-grid {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-link {
    color: var(--text-muted);
    font-size: 12px;
    text-decoration: none;
    transition: var(--transition-smooth);
    border-bottom: 1px dashed transparent;
}

.footer-link:hover {
    color: var(--color-yellow);
    border-bottom-color: var(--color-yellow);
}

.disclaimer {
    font-size: 10px;
    color: var(--text-dark);
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto 12px;
}

.copyright {
    font-size: 10px;
    color: var(--text-dark);
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
    .main-header {
        top: 10px;
        padding: 8px 16px;
    }
    
    .logo-text {
        font-size: 17px;
    }
    
    .live-counter {
        display: none;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .hero-left {
        align-items: center;
    }
    
    .main-title {
        font-size: 32px;
    }
    
    .subtitle {
        font-size: 14px;
    }
    
    .hero-image-wrapper {
        max-width: 260px;
    }
    
    .hero-cta-container {
        align-items: center;
        margin-top: 24px;
    }
    
    .hero-cta-subtext {
        padding-left: 0;
    }
    
    .paths-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .path-card {
        border-radius: var(--border-radius-md);
    }
    
    .path-content {
        padding: 14px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        border-radius: calc(var(--border-radius-md) - 1.5px);
    }
    
    .path-icon-container {
        font-size: 24px;
        margin-bottom: 0;
    }
    
    .path-title {
        margin-bottom: 0;
        font-size: 13px;
        flex-grow: 1;
        text-align: left;
        margin-left: 12px;
    }
    
    .path-bonus {
        font-size: 15px;
        margin-bottom: 0;
        text-align: right;
    }
    
    .path-extra {
        font-size: 11px;
        text-align: right;
        margin-left: 6px;
    }
    
    .offer-content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .offer-text-area {
        align-items: center;
    }
    
    .offer-title {
        font-size: 20px;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
    
    .offer-teaser-img {
        display: none;
    }
    
    .footer-links-grid {
        gap: 10px 14px;
    }
}
