:root {
    --bg: #030604;
    --surface: #0a120b;
    --surface-hover: #0d1a0f;
    --surface-border: rgba(0, 230, 91, 0.15);

    --primary: #00E65B;
    --primary-dark: #00b347;
    --primary-glow: rgba(0, 230, 91, 0.3);

    --text: #F3F4F6;
    --text-muted: #9CA3AF;

    --font: 'Outfit', sans-serif;
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    font-family: var(--font);
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Background Canvas & Mesh */
.mesh-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    background-color: var(--bg);
    overflow: hidden;
}

.mesh-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
    /* Reduced from 0.6 for a much darker background */
    animation: floatOrb 25s infinite alternate ease-in-out;
}

.orb-1 {
    width: 60vw;
    height: 60vw;
    background: rgba(0, 230, 91, 0.3);
    /* Primary Green */
    top: -20%;
    left: -10%;
}

.orb-2 {
    width: 50vw;
    height: 50vw;
    background: rgba(0, 77, 38, 0.6);
    /* Deep forest green */
    bottom: -10%;
    right: -10%;
    animation-delay: -5s;
    animation-duration: 30s;
}

.orb-3 {
    width: 45vw;
    height: 45vw;
    background: rgba(0, 179, 255, 0.2);
    /* Subtle cyan/blue touch for AI depth */
    top: 30%;
    left: 40%;
    animation-delay: -10s;
    animation-duration: 35s;
}

.orb-4 {
    width: 55vw;
    height: 55vw;
    background: rgba(10, 26, 18, 0.8);
    /* Dark base to blend */
    bottom: 20%;
    left: -20%;
    animation-delay: -15s;
    animation-duration: 28s;
}

@keyframes floatOrb {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(10vw, 15vh) scale(1.1);
    }

    66% {
        transform: translate(-5vw, -10vh) scale(0.9);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

/* Typography & Utilities */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    outline: none;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn:hover svg {
    transform: translateX(4px);
}

.btn-primary {
    background: var(--primary);
    color: #000;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 6px 30px var(--primary-glow);
    transform: translateY(-2px);
}

.btn-with-price {
    padding: 12px 32px;
    height: auto;
    min-height: 64px;
}

.btn-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    line-height: 1.1;
}

.btn-main-text {
    font-size: 1rem;
    font-weight: 800;
}

.btn-sub-text {
    font-size: 0.65rem;
    opacity: 0.8;
    font-family: var(--font-mono);
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.btn-gradient-gray {
    background: linear-gradient(135deg, #2a2e2c 0%, #151815 100%);
    color: var(--text);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-gradient-gray:hover {
    background: linear-gradient(135deg, #333835 0%, #1e221e 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--surface-border);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    color: var(--primary);
}

.btn-sm {
    padding: 12px 24px;
    font-size: 0.85rem;
    background: rgba(0, 230, 91, 0.1);
    color: var(--primary);
    border-radius: 100px;
    font-family: var(--font);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.btn-sm:hover {
    background: var(--primary);
    color: #000;
}

.btn-login {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    white-space: nowrap;
}

.btn-login:hover {
    background: rgba(0, 230, 91, 0.1);
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 230, 91, 0.2);
    transform: translateY(-2px);
}

.full-width {
    width: 100%;
}

/* Navbar */
.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    background: rgba(4, 8, 4, 0.4);
    backdrop-filter: blur(24px) saturate(150%);
    -webkit-backdrop-filter: blur(24px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    padding: 12px 24px;
    z-index: 100;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: var(--font);
}

.floating-nav.scrolled {
    background: rgba(2, 4, 2, 0.85);
    border-color: rgba(0, 230, 91, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 230, 91, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    height: 44px;
    background: linear-gradient(135deg, #00E65B 0%, #007A33 100%);
    border-radius: 12px;
    color: #000;
    box-shadow: 0 4px 15px rgba(0, 230, 91, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.3);
    font-family: var(--font);
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -1px;
    font-style: italic;
    text-transform: uppercase;
}

.logo-text {
    font-family: var(--font);
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -1px;
    color: var(--text);
    text-transform: uppercase;
    font-style: italic;
    line-height: 1;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links a:not(.btn-sm):not(.btn-login) {
    font-family: var(--font);
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 4px 0;
}

.nav-links a:not(.btn-sm):not(.btn-login):hover {
    color: var(--text);
}

/* Ultimate Horizontal Layout - Premium Refinement */
.ultimate-horizontal-card {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    background: rgba(13, 14, 13, 0.5);
    backdrop-filter: blur(35px);
    border: 1px solid rgba(235, 27, 39, 0.25);
    border-radius: 48px;
    padding: 60px 50px;
    gap: 50px;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
    box-shadow: 
        0 40px 100px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(235, 27, 39, 0.05);
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.ultimate-horizontal-card:hover {
    border-color: rgba(235, 27, 39, 0.4);
    box-shadow: 
        0 50px 120px rgba(0, 0, 0, 0.7),
        0 0 80px rgba(235, 27, 39, 0.1);
}

.u-title-red {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 35px;
    font-weight: 900;
    letter-spacing: -1.5px;
}

.red-checks .check-delicate {
    background: rgba(235, 27, 39, 0.1) !important;
    color: #eb1b27 !important;
    border-color: rgba(235, 27, 39, 0.3) !important;
}

.btn-red-solid {
    background: linear-gradient(135deg, #eb1b27 0%, #ff1f2d 100%);
    color: #fff;
    padding: 22px 45px;
    border-radius: 18px;
    font-size: 1rem;
    font-weight: 800;
    border: none;
    cursor: pointer;
    margin-top: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    width: fit-content;
    box-shadow: 0 10px 25px rgba(235, 27, 39, 0.3);
}

.btn-red-solid:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(235, 27, 39, 0.5);
}

/* Ultimate Inner Card */
.ultimate-inner-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    backdrop-filter: blur(15px);
}

.u-inner-label {
    color: #eb1b27;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.u-inner-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
}

.u-price-box {
    display: flex;
    flex-direction: column;
    margin: 10px 0;
}

.u-old-price {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.2);
    font-size: 1.6rem;
    font-family: var(--font-mono);
}

.u-new-price {
    font-size: 6.5rem;
    font-weight: 900;
    color: #eb1b27;
    line-height: 1;
    text-shadow: 0 0 40px rgba(235, 27, 39, 0.3);
    letter-spacing: -3px;
}

.u-superbet-box {
    background: rgba(235, 27, 39, 0.1);
    border: 1px solid rgba(235, 27, 39, 0.2);
    padding: 15px 40px;
    border-radius: 16px;
    margin: 25px 0 15px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.u-superbet-box img {
    height: 35px;
    filter: brightness(0) invert(1);
}

.u-limit-box {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
px var(--primary-glow);
    transform: translateY(-2px);
}

.btn-with-price {
    padding: 12px 32px;
    height: auto;
    min-height: 64px;
}

.btn-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    line-height: 1.1;
}

.btn-main-text {
    font-size: 1rem;
    font-weight: 800;
}

.btn-sub-text {
    font-size: 0.65rem;
    opacity: 0.8;
    font-family: var(--font-mono);
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.btn-gradient-gray {
    background: linear-gradient(135deg, #2a2e2c 0%, #151815 100%);
    color: var(--text);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-gradient-gray:hover {
    background: linear-gradient(135deg, #333835 0%, #1e221e 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--surface-border);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    color: var(--primary);
}

.btn-sm {
    padding: 12px 24px;
    font-size: 0.85rem;
    background: rgba(0, 230, 91, 0.1);
    color: var(--primary);
    border-radius: 100px;
    font-family: var(--font);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.btn-sm:hover {
    background: var(--primary);
    color: #000;
}

.btn-login {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    white-space: nowrap;
}

.btn-login:hover {
    background: rgba(0, 230, 91, 0.1);
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 230, 91, 0.2);
    transform: translateY(-2px);
}

.full-width {
    width: 100%;
}

/* Navbar */
.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    background: rgba(4, 8, 4, 0.4);
    backdrop-filter: blur(24px) saturate(150%);
    -webkit-backdrop-filter: blur(24px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    padding: 12px 24px;
    z-index: 100;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: var(--font);
}

.floating-nav.scrolled {
    background: rgba(2, 4, 2, 0.85);
    border-color: rgba(0, 230, 91, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 230, 91, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    height: 44px;
    background: linear-gradient(135deg, #00E65B 0%, #007A33 100%);
    border-radius: 12px;
    color: #000;
    box-shadow: 0 4px 15px rgba(0, 230, 91, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.3);
    font-family: var(--font);
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -1px;
    font-style: italic;
    text-transform: uppercase;
}

.logo-text {
    font-family: var(--font);
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -1px;
    color: var(--text);
    text-transform: uppercase;
    font-style: italic;
    line-height: 1;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links a:not(.btn-sm):not(.btn-login) {
    font-family: var(--font);
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 4px 0;
}

.nav-links a:not(.btn-sm):not(.btn-login):hover {
    color: var(--text);
}

.nav-links a:not(.btn-sm)::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 2px;
    box-shadow: 0 0 8px var(--primary);
}

.nav-links a:not(.btn-sm):hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .nav-links a:not(.btn-sm):not(.btn-login) {
        display: none;
    }

    .logo-text {
        display: none;
    }

    .floating-nav {
        top: 10px;
        width: 95%;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 140px 0 80px;
    position: relative;
}

.hero-bg-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 230, 91, 0.15) 0%, rgba(0, 0, 0, 0) 60%);
    opacity:0.5;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

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

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

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 80px;
        text-align: center;
    }

    .hero-left {
        align-items: center;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-right {
        order: -1;
        /* Video on top on mobile */
        margin-bottom: 40px;
    }
}

.badge-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(0, 230, 91, 0.05);
    border: 1px solid var(--surface-border);
    border-radius: 100px;
    margin-bottom: 30px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--primary);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hero-title {
    font-size: clamp(2.6rem, 5.5vw, 4.6rem);
    line-height: 1.15;
    margin-bottom: 24px;
    white-space: nowrap;
}

.hero-desc {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* Hero Video – GIF style */
/* Nowoczesny Mockup Wideo */
.video-mockup-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    perspective: 2000px;
    z-index: 5;
}

.mockup-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(0, 230, 91, 0.2) 0%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
    animation: pulseGlow 8s infinite alternate ease-in-out;
}

.device-frame {
    position: relative;
    background: #080a09;
    border: 8px solid #1a1f1c;
    border-radius: 40px;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 0 20px rgba(0, 230, 91, 0.05);
    overflow: hidden;
    transform: rotateY(-15deg) rotateX(5deg);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    animation: floatDevice 6s infinite ease-in-out;
}

.video-mockup-wrapper:hover .device-frame {
    transform: rotateY(-5deg) rotateX(2deg) scale(1.02);
}

.device-screen {
    position: relative;
    width: 100%;
    padding-bottom: 177.77%;
    /* 16:9 Aspect Ratio (9/16 for vertical) */
    background: #000;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.device-reflection {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 2;
}

@keyframes pulseGlow {

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

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

@keyframes floatDevice {

    0%,
    100% {
        transform: rotateY(-15deg) rotateX(5deg) translateY(0);
    }

    50% {
        transform: rotateY(-15deg) rotateX(5deg) translateY(-15px);
    }
}

@media (max-width: 480px) {
    .video-mockup-wrapper {
        max-width: 280px;
    }
}

.app-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px 8px;
    background: #111;
}

.app-time {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.app-icons {
    display: flex;
    align-items: center;
    gap: 6px;
}

.app-header-dark {
    background: linear-gradient(180deg, #1a0000 0%, #0d0d0d 100%);
    padding: 12px 20px 18px;
}

.app-nav-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.app-header-right-icons {
    display: flex;
    gap: 10px;
}

.app-icon-btn {
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-superbet-logo-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.app-quick-nav {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.app-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    flex: 1;
}

.app-nav-icon {
    width: 54px;
    height: 54px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.app-nav-item span {
    font-size: 10px;
    color: #aaa;
    text-align: center;
    line-height: 1.3;
}

.app-account-section {
    background: #1a1a1a;
    padding: 18px 20px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.app-menu-list {
    background: #111;
    padding: 0;
}

.app-menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: background 0.2s;
}

.app-menu-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.app-menu-left {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    color: #ddd;
    font-weight: 500;
}

.app-arrow {
    color: #555;
    font-size: 20px;
}

/* Superbet Style Wrapper */
.super-wrapper {
    margin-top: 0;
    width: 100%;
    max-width: 350px;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    animation: fadeIn 1s ease forwards;
    background: #18191a;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
    padding-bottom: 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.super-profile {
    padding: 20px 0 12px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: transparent;
}

.superbet-logo-unity {
    width: 170px;
    margin: 0 auto;
}

@keyframes floatingLogo {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-8px) rotate(-1deg);
    }
}

.sb-svg-logo {
    width: 100%;
    height: auto;
    overflow: visible;
}

.sb-text {
    font-family: var(--font);
    font-weight: 900;
    font-style: italic;
    font-size: 60px;
    fill: #ffffff;
    letter-spacing: -3px;
}

.super-card {
    background: transparent;
    border-radius: 0;
    padding: 12px;
    box-shadow: none;
    border: none;
}

.super-label {
    font-size: 11px;
    color: #9aa0a6;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.super-balance {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    display: flex;
    align-items: baseline;
    gap: 6px;
    transition: color 0.3s ease;
}

.super-balance .currency {
    font-size: 18px;
    font-weight: 400;
}

.super-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 0;
}

.super-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 0;
    border-radius: 100px;
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    color: #fff;
    transition: transform 0.2s ease;
}

.super-btn:hover {
    transform: scale(1.02);
}

.btn-red {
    background: #d92424;
    box-shadow: 0 4px 15px rgba(217, 36, 36, 0.3);
}

.btn-gray {
    background: #3a3b3c;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.super-history {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
}

.super-history:hover {
    color: var(--primary);
}

.hist-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.super-history .arrow {
    color: #9aa0a6;
    font-size: 1.5rem;
    line-height: 1;
}

/* Split Layout Section */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

@media (max-width: 992px) {
    .split-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

.pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 16px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
}

.pill-badge svg {
    width: 14px;
    height: 14px;
}

.split-col h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 32px;
}

.split-col p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.split-col .highlight {
    color: var(--primary);
    font-weight: 600;
}

/* Community Card */
.community-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 230, 91, 0.15);
    border-radius: 24px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.community-visual {
    position: relative;
    flex-shrink: 0;
}

.avatar-stack {
    display: flex;
    align-items: center;
}

.stack-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid #0a120b;
    margin-left: -15px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.stack-avatar:first-child {
    margin-left: 0;
}

.stack-avatar:hover {
    transform: translateY(-5px);
    z-index: 10;
}

.stack-count {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    border: 3px solid #0a120b;
    margin-left: -15px;
    box-shadow: 0 0 15px var(--primary-glow);
}

.stat-ping {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 14px;
    height: 14px;
    background: #00E65B;
    border-radius: 50%;
    border: 2px solid #0a120b;
}

.stat-ping::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00E65B;
    border-radius: 50%;
    animation: ping 1.5s infinite;
}

@keyframes ping {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

.stat-details h4 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 6px;
    font-weight: 700;
}

.stat-details p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Vertical Steps */
.vertical-steps {
    position: relative;
    padding-left: 0;
}

.vertical-steps::before {
    display: none;
}

.step-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 40px;
}

.step-item:last-child {
    padding-bottom: 0;
}

.step-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 42px;
    bottom: -10px;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.step-number {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: #000;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    z-index: 1;
    transition: all 0.3s ease;
}

.step-item.active .step-number {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
}

.step-content h3 {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 8px;
    color: #fff;
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.section-heading.centered {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-heading h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-heading p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

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

@media (max-width: 960px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.bento-card {
    background: var(--surface);
    border: 1px solid rgba(0, 230, 91, 0.15);
    border-radius: 40px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.bento-card:hover {
    border-color: rgba(0, 230, 91, 0.4);
    transform: translateY(-5px);
}

.bento-card.span-2 {
    grid-column: span 2;
}

@media (max-width: 600px) {
    .bento-card.span-2 {
        grid-column: span 1;
    }
}

.card-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 230, 91, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

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

.icon-box {
    width: 56px;
    height: 56px;
    background: rgba(0, 230, 91, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 1px solid rgba(0, 230, 91, 0.3);
}

.icon-box svg {
    width: 24px;
    height: 24px;
}

.bento-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.bento-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Row content for span-2 card */
.row-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    height: 100%;
}

@media (max-width: 768px) {
    .row-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

.text-part {
    flex: 1;
}

.live-ticker-container {
    flex: 1;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 30px;
    padding: 24px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 230, 91, 0.2);
}

.ticker-track {
    display: flex;
    flex-direction: column;
    gap: 12px;
    animation: scrollTicker 10s linear infinite;
}

.ticket {
    background: rgba(0, 230, 91, 0.05);
    border: 1px solid rgba(0, 230, 91, 0.2);
    padding: 14px 20px;
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    white-space: nowrap;
}

.ticket .win {
    color: var(--primary);
    font-weight: 700;
    margin-right: 8px;
}

@keyframes scrollTicker {
    0% {
        transform: translateY(0);
    }

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

/* Results Section & Bet Slip */
.results-section {
    padding: 60px 0;
    position: relative;
    background: linear-gradient(to bottom, transparent, rgba(0, 230, 91, 0.02) 50%, transparent);
}

.results-showcase {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 40px;
}

@media (max-width: 960px) {
    .results-showcase {
        flex-direction: column;
    }
}

.bet-slip-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    padding: 20px;
}

.bookmaker-accent {
    position: absolute;
    width: 60px;
    height: 60px;
    z-index: 1;
}

.green-accent {
    top: 0;
    left: 10%;
    background: #00b347;
    transform: rotate(45deg);
}

.red-accent {
    bottom: 0;
    right: 10%;
    background: #ff0000;
    transform: rotate(45deg);
}

.bet-slip-card {
    background: #141517;
    width: 100%;
    max-width: 420px;
    border-radius: 24px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 2;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.slip-header {
    background: rgba(255, 255, 255, 0.03);
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.slip-date {
    font-size: 0.85rem;
    color: #9aa0a6;
    display: flex;
    align-items: center;
    gap: 10px;
}

.slip-badge-count {
    background: var(--primary);
    color: #000;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.75rem;
}

.slip-events {
    padding: 24px;
}

.event-item {
    margin-bottom: 24px;
}

.event-item:last-child {
    margin-bottom: 0;
}

.event-match {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 8px;
    display: block;
}

.event-details {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: #9aa0a6;
}

.event-details svg {
    color: var(--primary);
    margin-top: 3px;
    flex-shrink: 0;
}

.event-details .bet-val {
    color: #fff;
    font-weight: 600;
}

.slip-footer {
    padding: 20px 24px;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.footer-summary {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

.sum-item .label {
    display: block;
    font-size: 0.8rem;
    color: #9aa0a6;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.sum-item .val {
    font-size: 1.3rem;
    font-weight: 800;
}

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

.payout-box {
    background: #202124;
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.payout-label {
    font-weight: 900;
    font-size: 1.4rem;
    letter-spacing: -0.5px;
}

.payout-val {
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
}

.total-value small {
    font-size: 0.9rem;
}

.results-text {
    flex: 1;
}

.results-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.results-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.roi-stats {
    display: flex;
    gap: 24px;
}

.roi-box {
    background: var(--surface);
    border: 1px solid rgba(0, 230, 91, 0.2);
    padding: 24px;
    border-radius: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.roi-box.highlight {
    border-color: var(--primary);
    background: rgba(0, 230, 91, 0.05);
    box-shadow: 0 0 30px rgba(0, 230, 91, 0.1);
}

.roi-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.roi-val {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
}

.roi-box.highlight .roi-val {
    color: var(--primary);
}

/* Pricing Section */
.pricing-section {
    padding: 120px 0;
}

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

.pricing-card.promo-wide {
    grid-column: span 2;
}

@media (max-width: 960px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .pricing-card.promo-wide {
        grid-column: span 1;
    }

    .pricing-card.promo-wide .features-list {
        grid-template-columns: 1fr !important;
    }
}

.pricing-card {
    background: var(--surface);
    border: 1px solid rgba(0, 230, 91, 0.15);
    border-radius: 40px;
    padding: 48px 32px;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.pricing-card.premium {
    background: #0c160e;
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 230, 91, 0.1);
}

@media (max-width: 960px) {
    .pricing-card.premium {
        transform: scale(1);
    }
}

.card-glow-strong {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100px;
    background: radial-gradient(ellipse, rgba(0, 230, 91, 0.2) 0%, transparent 70%);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #000;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.pricing-card h4 {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #fff;
    line-height: 1;
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 32px;
    min-height: 45px;
}

.features-list {
    list-style: none;
    margin-bottom: 40px;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text);
    font-size: 0.95rem;
}

.features-list span {
    color: var(--primary);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    margin-top: 2px;
}

.features-list svg {
    width: 18px;
    height: 18px;
}

/* Footer */
.guarantee-note {
    background: #020402;
    border-top: 1px solid var(--surface-border);
    padding: 24px 0;
}
.guarantee-note p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    line-height: 1.6;
    margin: 0;
}
.guarantee-note strong {
    color: rgba(255,255,255,0.55);
}

footer {
    border-top: 1px solid var(--surface-border);
    padding: 80px 0 30px;
    background: #020402;
}

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

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.brand-col p {
    color: var(--text-muted);
    margin-top: 20px;
    max-width: 300px;
}

.links-col h4,
.contact-col h4 {
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.links-col a,
.contact-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 12px;
    transition: var(--transition);
}

.links-col a:hover,
.contact-col a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* Unified Section Header */
.section-header-wide {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-wide .pill-badge {
    margin-bottom: 20px;
}

.centered-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    max-width: 800px;
    margin: 0 auto;
}


/* Red Step for Special Offer */
.step-item.red-step {
    align-items: flex-start;
}

.step-item.red-step .step-number {
    background: #eb1b27;
    color: white;
    box-shadow: 0 0 15px rgba(235, 27, 39, 0.4);
    font-size: 1rem;
    border-color: rgba(255, 255, 255, 0.2);
    margin-top: 4px;
}

/* Improved Superbet Button */
.btn-superbet {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #eb1b27 0%, #a3121b 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.75rem;
    width: 100%;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(235, 27, 39, 0.4);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-superbet:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(235, 27, 39, 0.6);
    filter: brightness(1.1);
}

.btn-superbet svg {
    width: 18px;
    height: 18px;
}


.highlight-red {
    color: #eb1b27;
    font-weight: 800;
}

.save-badge {
    display: inline-block;
    background: rgba(235, 27, 39, 0.15);
    color: #eb1b27;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-left: 4px;
    border: 1px solid rgba(235, 27, 39, 0.3);
}


/* Improved Readability for System Section */
#system {
    padding: 30px 0;
}

#system .container {
    background: rgba(15, 20, 17, 0.7);
    /* Deep grey/green tint */
    backdrop-filter: blur(20px);
    padding: 80px 60px;
    border-radius: 48px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.6),
        inset 0 0 40px rgba(255, 255, 255, 0.02);
}

@media (max-width: 768px) {
    #system .container {
        padding: 40px 24px;
        border-radius: 32px;
    }
}


.highlight-price {
    color: var(--primary) !important;
    font-weight: 800 !important;
    text-shadow: 0 0 10px rgba(0, 230, 91, 0.4);
}

.highlight-green {
    color: var(--primary) !important;
}


.btn-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.btn-main-text {
    font-size: 1.1rem;
    font-weight: 700;
}

.btn-sub-text {
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0.9;
}

/* Kupony Grid Layout */
.results-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

@media (max-width: 1024px) {
    .results-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.kupon-placeholder {
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    aspect-ratio: 9 / 16;
    /* Standard vertical screenshot aspect ratio */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.kupon-placeholder:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 230, 91, 0.1);
    transform: translateY(-5px);
}

.kupon-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    /* Hidden until image is added */
}

.placeholder-text {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
    font-size: 1.1rem;
    z-index: 1;
}


/* Coupons Grid Layout for Results */
.results-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 960px) {
    .results-split-layout {
        grid-template-columns: 1fr;
    }
}

.coupons-stack {
    display: flex;
    flex-direction: row;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
}

.coupons-stack .bet-slip-wrapper {
    flex: 0 0 320px;
    transform: scale(0.9);
    transition: all 0.3s ease;
    opacity: 0.8;
}

.coupons-stack .bet-slip-wrapper:hover {
    transform: scale(1);
    opacity: 1;
    z-index: 10;
}

.results-info-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    order: -1;
    /* Move text to the left */
}


.results-split-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    /* Right side (coupons) takes more space */
    gap: 40px;
    align-items: center;
}

@media (max-width: 960px) {
    .results-split-layout {
        grid-template-columns: 1fr;
    }

    .section-heading,
    .results-info-col {
        text-align: center;
    }
}


.coupons-carousel-wrapper {
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.coupons-stack-track {
    width: max-content;
}

.coupons-stack-track:hover {
    animation-play-state: paused !important;
}

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

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

    /* 50% because we duplicated the items, -10px for half the gap */
}

/* 3D Stack Coupons Interaction */
.cards-3d-stack {
    position: relative;
    height: 540px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
}

.card-3d-item {
    position: absolute;
    width: 280px;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    transform-origin: bottom center;
}

/* Base positioning */
.card-left {
    transform: translateX(-40px) translateY(20px) rotate(-10deg) scale(0.9);
    z-index: 1;
    opacity: 0.8;
}

.card-center {
    transform: translateX(0) translateY(0) rotate(0deg) scale(1);
    z-index: 3;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(0, 230, 91, 0.3);
}

.card-right {
    transform: translateX(40px) translateY(20px) rotate(10deg) scale(0.9);
    z-index: 2;
    opacity: 0.8;
}

/* Hover effects - Fan out */
.cards-3d-stack:hover .card-left {
    transform: translateX(-160px) translateY(0) rotate(-15deg) scale(0.95);
    opacity: 1;
    z-index: 4;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(0, 230, 91, 0.2);
}

.cards-3d-stack:hover .card-center {
    transform: translateX(0) translateY(-30px) scale(1.05);
    z-index: 5;
    box-shadow: 0 40px 80px rgba(0, 230, 91, 0.2), 0 0 0 1px rgba(0, 230, 91, 0.5);
}

.cards-3d-stack:hover .card-right {
    transform: translateX(160px) translateY(0) rotate(15deg) scale(0.95);
    opacity: 1;
    z-index: 4;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(0, 230, 91, 0.2);
}

@media (max-width: 960px) {
    .cards-3d-stack {
        height: 480px;
    }

    .cards-3d-stack:hover .card-left {
        transform: translateX(-100px) translateY(0) rotate(-15deg) scale(0.95);
    }

    .cards-3d-stack:hover .card-right {
        transform: translateX(100px) translateY(0) rotate(15deg) scale(0.95);
    }
}

@media (max-width: 600px) {
    .cards-3d-stack {
        height: 400px;
    }

    .card-3d-item {
        width: 220px;
    }

    .cards-3d-stack:hover .card-left {
        transform: translateX(-60px) translateY(0) rotate(-15deg) scale(0.95);
    }

    .cards-3d-stack:hover .card-right {
        transform: translateX(60px) translateY(0) rotate(15deg) scale(0.95);
    }
}

/* Dashboard Panel on Left */
.results-dashboard-panel {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.dashboard-header .badge-pulse {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 230, 91, 0.1);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    border: 1px solid rgba(0, 230, 91, 0.2);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 230, 91, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 230, 91, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 230, 91, 0);
    }
}

.dashboard-header h2 {
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 12px;
}

.dashboard-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.dashboard-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 230, 91, 0.3);
}

.stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(0, 230, 91, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.stat-icon svg {
    width: 20px;
    height: 20px;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.stat-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
}

.highlight-profit-box {
    background: linear-gradient(135deg, rgba(0, 230, 91, 0.03) 0%, rgba(0, 230, 91, 0.1) 100%);
    border: 1px solid rgba(0, 230, 91, 0.2);
    border-radius: 16px;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.profit-header {
    font-size: 0.85rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    font-weight: 600;
}

.profit-numbers {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.p-col {
    display: flex;
    flex-direction: column;
}

.p-col span {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.p-col strong {
    font-size: 1.8rem;
    color: white;
}

.p-col.green strong {
    color: var(--primary);
    text-shadow: 0 0 20px rgba(0, 230, 91, 0.4);
}

.p-arrow {
    color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

    .p-col strong {
        font-size: 1.4rem;
    }
}

/* Premium Features Panel */
.premium-features-panel {
    display: flex;
    flex-direction: column;
}

.feature-rows {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
}

.feature-row-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 18px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature-row-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 230, 91, 0.2);
    transform: translateX(4px);
}

.feature-row-item .f-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 230, 91, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-row-item .f-icon svg {
    width: 24px;
    height: 24px;
}

.feature-row-item .f-text {
    display: flex;
    flex-direction: column;
}

.feature-row-item .f-text h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 4px;
    font-weight: 600;
}

.feature-row-item .f-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 0;
}

/* Image-Inspired Pricing Design */
.card-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.h-left h4 {
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    margin: 5px 0;
    letter-spacing: -1px;
}

.label-tiny {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
}

.sub-label-tiny {
    font-size: 0.85rem;
    color: #fff;
    font-weight: 500;
}

.price-val {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
}

.divider-line {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.features-list-image {
    list-style: none;
    margin-bottom: 40px;
}

.features-list-image li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    font-size: 0.95rem;
    color: #fff;
}

.features-list-image li strong {
    color: var(--primary);
}

.check-circle {
    width: 24px;
    height: 24px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-circle svg {
    width: 14px;
    height: 14px;
    color: var(--primary);
}

.btn-yellow-solid {
    background: var(--primary);
    color: #000;
    width: 100%;
    padding: 20px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(248, 231, 28, 0.2);
    transition: var(--transition);
}

.btn-yellow-solid:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(248, 231, 28, 0.4);
    filter: brightness(1.1);
}

/* Delicate & Modern Pricing Design */
.pricing-section {
    padding: 140px 0;
    background: #030604;
    background-image:
        radial-gradient(circle at 0% 0%, rgba(0, 230, 91, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 100% 100%, rgba(0, 230, 91, 0.08) 0%, transparent 40%);
    position: relative;
    overflow: hidden;
}

.pricing-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(0, 230, 91, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54.826 10.558c1.026 1.312 1.594 2.977 1.594 4.747V31.02c0 1.77-.568 3.435-1.594 4.747m-30.48 20.274c-1.312 1.026-2.977 1.594-4.747 1.594H4.72c-1.77 0-3.435-.568-4.747-1.594m20.274-30.48c1.026-1.312 1.594-2.977 1.594-4.747V4.72c0-1.77-.568-3.435-1.594-4.747' fill='%2300e65b' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.pricing-section .container {
    max-width: 1400px;
}

.pricing-grid-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 100%;
    margin: 0 auto;
}

.delicate-card {
    background: rgba(17, 18, 17, 0.4);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    padding: 60px 45px;
    position: relative;
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.delicate-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    z-index: 1;
}

.delicate-card:hover {
    background: rgba(22, 24, 22, 0.6);
    border-color: rgba(0, 230, 91, 0.2);
    transform: translateY(-12px) scale(1.01);
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(0, 230, 91, 0.05);
}

.delicate-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.label-delicate {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.delicate-card h4 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin: 8px 0;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.sub-label-delicate {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.price-delicate {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
    text-align: right;
    letter-spacing: -1px;
}

.sub-label-delicate {
    display: block;
    text-align: right;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: -2px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.divider-delicate {
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent);
    margin: 35px 0;
}

/* Corner Badges - Sleeker Style */
.corner-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary);
    color: #000;
    padding: 10px 45px;
    font-size: 0.65rem;
    font-weight: 900;
    transform: rotate(45deg) translate(30%, -100%);
    z-index: 10;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.badge-red {
    background: linear-gradient(135deg, #eb1b27, #ff3d48);
    color: #fff;
}

/* Green Theme Pricing */
.premium-delicate-green {
    border-color: rgba(0, 230, 91, 0.4) !important;
    background: rgba(0, 230, 91, 0.03) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 50px rgba(0, 230, 91, 0.05) !important;
}

.green-checks .check-delicate {
    background: rgba(0, 230, 91, 0.1) !important;
    color: var(--primary) !important;
    border-color: rgba(0, 230, 91, 0.3) !important;
}

.btn-green-solid {
    background: linear-gradient(135deg, var(--primary) 0%, #00c44d 100%);
    color: #000;
    width: 100%;
    padding: 22px;
    border-radius: 18px;
    font-size: 0.95rem;
    font-weight: 800;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: auto;
}

.btn-green-solid:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 230, 91, 0.3);
}

/* Ultimate Horizontal Layout - Premium Refinement */
.ultimate-horizontal-card {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    background: rgba(13, 14, 13, 0.5);
    backdrop-filter: blur(35px);
    border: 1px solid rgba(235, 27, 39, 0.25);
    border-radius: 48px;
    padding: 60px 50px;
    gap: 50px;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
    box-shadow: 
        0 40px 100px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(235, 27, 39, 0.05);
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.ultimate-horizontal-card:hover {
    border-color: rgba(235, 27, 39, 0.4);
    box-shadow: 
        0 50px 120px rgba(0, 0, 0, 0.7),
        0 0 80px rgba(235, 27, 39, 0.1);
}

.u-title-red {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 35px;
    font-weight: 900;
    letter-spacing: -1.5px;
}

.red-checks .check-delicate {
    background: rgba(235, 27, 39, 0.1) !important;
    color: #eb1b27 !important;
    border-color: rgba(235, 27, 39, 0.3) !important;
}

.btn-red-solid {
    background: linear-gradient(135deg, #eb1b27 0%, #ff1f2d 100%);
    color: #fff;
    padding: 22px 45px;
    border-radius: 18px;
    font-size: 1rem;
    font-weight: 800;
    border: none;
    cursor: pointer;
    margin-top: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    width: fit-content;
    box-shadow: 0 10px 25px rgba(235, 27, 39, 0.3);
}

.btn-red-solid:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(235, 27, 39, 0.5);
}

/* Ultimate Inner Card */
.ultimate-inner-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    backdrop-filter: blur(15px);
}

.u-inner-label {
    color: #eb1b27;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.u-inner-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
}

.u-price-box {
    display: flex;
    flex-direction: column;
    margin: 10px 0;
}

.u-old-price {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.2);
    font-size: 1.6rem;
    font-family: var(--font-mono);
}

.u-new-price {
    font-size: 6.5rem;
    font-weight: 900;
    color: #eb1b27;
    line-height: 1;
    text-shadow: 0 0 40px rgba(235, 27, 39, 0.3);
    letter-spacing: -3px;
}

.u-superbet-box {
    background: rgba(235, 27, 39, 0.1);
    border: 1px solid rgba(235, 27, 39, 0.2);
    padding: 15px 40px;
    border-radius: 16px;
    margin: 25px 0 15px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.u-superbet-box img {
    height: 35px;
    filter: brightness(0) invert(1);
}

.u-limit-box {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Ultimate Horizontal Layout - High Impact Glass */
.ultimate-horizontal-card {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    background: rgba(13, 15, 14, 0.5);
    backdrop-filter: blur(32px);
    border: 1px solid rgba(235, 27, 39, 0.2);
    border-radius: 56px;
    padding: 70px 80px;
    gap: 60px;
    position: relative;
    overflow: hidden;
    margin-top: 30px;
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(235, 27, 39, 0.03);
    transition: all 0.5s ease;
}

.ultimate-horizontal-card:hover {
    border-color: rgba(235, 27, 39, 0.4);
    box-shadow:
        0 50px 120px rgba(0, 0, 0, 0.7),
        0 0 80px rgba(235, 27, 39, 0.08);
}

@media (max-width: 1100px) {
    .ultimate-horizontal-card {
        grid-template-columns: 1fr;
        padding: 40px 30px;
    }
}

.u-title-red {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 35px;
    font-weight: 900;
    letter-spacing: -1px;
}

.red-checks .check-delicate {
    background: rgba(235, 27, 39, 0.1) !important;
    color: #eb1b27 !important;
    border-color: rgba(235, 27, 39, 0.3) !important;
}

.btn-red-solid {
    background: linear-gradient(135deg, #eb1b27 0%, #ff1f2d 100%);
    color: #fff;
    padding: 24px 50px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 800;
    border: none;
    cursor: pointer;
    margin-top: 35px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 2px;
    width: fit-content;
    box-shadow: 0 8px 25px rgba(235, 27, 39, 0.3);
}

.btn-red-solid:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(235, 27, 39, 0.5);
}

/* Ultimate Inner Card - Premium Refinement */
.ultimate-inner-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    padding: 60px 45px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.u-inner-label {
    color: #eb1b27;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.u-inner-desc {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 20px;
}

.u-price-box {
    display: flex;
    flex-direction: column;
    margin: 15px 0;
}

.u-old-price {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.5rem;
    margin-bottom: -5px;
}

.u-new-price {
    font-size: 5rem;
    font-weight: 900;
    color: #eb1b27;
    line-height: 1;
    text-shadow: 0 0 30px rgba(235, 27, 39, 0.3);
}

.u-superbet-box {
    background: #eb1b27;
    padding: 15px 40px;
    border-radius: 12px;
    margin: 25px 0 15px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.u-superbet-box img {
    height: 35px;
    filter: brightness(0) invert(1);
}

.u-limit-box {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    font-weight: 600;
}

.divider-delicate {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    margin: 24px 0 32px;
}

.features-delicate {
    list-style: none;
    margin-bottom: 40px;
    flex: 1;
}

.features-delicate li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    animation: fadeInRight 0.5s ease forwards;
    opacity: 0;
    letter-spacing: 0.3px;
}

.features-delicate li:nth-child(1) {
    animation-delay: 0.1s;
}

.features-delicate li:nth-child(2) {
    animation-delay: 0.2s;
}

.features-delicate li:nth-child(3) {
    animation-delay: 0.3s;
}

.features-delicate li:nth-child(4) {
    animation-delay: 0.4s;
}

.features-delicate li:nth-child(5) {
    animation-delay: 0.5s;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.check-delicate {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.check-delicate svg {
    width: 14px;
    height: 14px;
    stroke-width: 3.5;
}

.btn-delicate {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 18px;
    border-radius: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: var(--font-mono);
    cursor: pointer;
}

.btn-delicate:hover {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
    box-shadow: 0 15px 30px var(--primary-glow);
    transform: scale(1.02);
}

.premium-delicate {
    border-color: var(--primary);
    background: rgba(0, 230, 91, 0.04);
    box-shadow: 0 0 50px rgba(0, 230, 91, 0.1);
    transform: scale(1.02);
    z-index: 2;
}

.premium-delicate:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(0, 230, 91, 0.2);
}

.premium-delicate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(0, 230, 91, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.premium-delicate .price-delicate {
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary-glow);
}

.premium-delicate .btn-delicate {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
}

.badge-delicate {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #000;
    padding: 4px 16px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 1px;
}

/* Guarantee Section Redesign */
.guarantee-section-card {
    grid-column: span 3;
    background: linear-gradient(135deg, rgba(235, 27, 39, 0.1) 0%, rgba(10, 10, 10, 0.8) 100%);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(235, 27, 39, 0.3);
    border-radius: 40px;
    padding: 20px 40px;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), 0 0 40px rgba(235, 27, 39, 0.1);
}

.guarantee-section-card .pricing-bg-glow {
    background: radial-gradient(circle, rgba(235, 27, 39, 0.15) 0%, transparent 70%);
}

.guarantee-section-card .featured-title {
    background: linear-gradient(135deg, #fff 0%, #eb1b27 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.guarantee-section-card .check-delicate {
    background: rgba(235, 27, 39, 0.1);
    border-color: rgba(235, 27, 39, 0.4);
    color: #eb1b27;
}

.guarantee-section-card .btn-delicate:hover {
    background: #eb1b27;
    border-color: #eb1b27;
    box-shadow: 0 15px 30px rgba(235, 27, 39, 0.4);
}

.guarantee-section-card::before {
    content: 'VIP OFFER';
    position: absolute;
    top: 40px;
    right: -40px;
    background: var(--primary);
    color: #000;
    padding: 8px 100px;
    transform: rotate(45deg);
    font-weight: 900;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 20px;
    margin-top: 15px;
}

.ultimate-card-mini {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(235, 27, 39, 0.3);
    border-radius: 32px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    position: relative;
}

.ultimate-card-mini::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 32px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent, rgba(235, 27, 39, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.ultimate-card-mini h4 {
    color: #eb1b27 !important;
    text-shadow: 0 0 20px rgba(235, 27, 39, 0.4);
}

.featured-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    line-height: 1;
    text-align: left;
}

.featured-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0;
    text-align: left;
}

.text-gradient-red {
    background: linear-gradient(135deg, #fff 0%, #eb1b27 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.premium-red-card {
    border-color: #eb1b27 !important;
    background: rgba(235, 27, 39, 0.05) !important;
    box-shadow: 0 20px 50px rgba(235, 27, 39, 0.2) !important;
    transform: scale(1.05);
}

.u-price-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 5px 0;
}

.price-old {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
    font-family: var(--font-mono);
    margin-bottom: -5px;
}

.superbet-integration {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(235, 27, 39, 0.2);
}

.superbet-logo-placeholder {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    color: #eb1b27;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(235, 27, 39, 0.3);
    margin-bottom: 5px;
}

.superbet-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-style: italic;
    opacity: 0.8;
}

.u-price {
    font-size: 2.5rem;
    font-weight: 900;
    margin: 5px 0;
}

@media (max-width: 1100px) {
    .pricing-grid-v2 {
        grid-template-columns: 1fr;
    }
}
/* ============================================================
   JMM CHILD — EXTRA STYLES (dodane do oryginalnego CSS)
   ============================================================ */

/* --- 1. Przycisk: podkreślona cena 59 PLN --- */
.btn-sub-text strong {
    font-size: 0.8rem;
    font-weight: 900;
    color: #000;
    background: rgba(0,0,0,0.15);
    padding: 1px 5px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

/* --- 2. Koszyk w nawigacji --- */
.btn-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    flex-shrink: 0;
}
.btn-cart:hover {
    background: rgba(0,230,91,0.12);
    border-color: var(--primary);
    box-shadow: 0 0 16px rgba(0,230,91,0.2);
    transform: translateY(-2px);
}
.btn-cart svg {
    color: rgba(255,255,255,0.85);
    display: block;
}

/* --- 3. Panel klienta (lightbox) --- */
.panel-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.82);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.panel-overlay.active {
    display: flex;
}
.panel-modal {
    position: relative;
    max-width: 520px;
    width: 100%;
    animation: panelIn 0.35s cubic-bezier(0.16,1,0.3,1) forwards;
}
@keyframes panelIn {
    from { opacity:0; transform: scale(0.92) translateY(20px); }
    to   { opacity:1; transform: scale(1)    translateY(0);    }
}
.panel-img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.8);
    display: block;
}
.panel-close {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 2;
}
.panel-close:hover { background: rgba(235,27,39,0.7); }

/* --- 4. Sekcja wyniki — nowy układ --- */
.results-heading {
    text-align: center;
    margin-bottom: 60px;
}
.results-heading h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; }
.results-heading p  { color: var(--text-muted); font-size: 1.1rem; }

/* Trzy cechy pod kuponami w rzędzie */
.results-features-row {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-top: 60px;
}
@media (max-width: 768px) {
    .results-features-row { grid-template-columns: 1fr; }
}

/* --- 5. Opinie --- */
.opinions-section {
    margin-top: 80px;
}
.opinions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    align-items: start;
}
@media (max-width: 900px) {
    .opinions-grid { grid-template-columns: 1fr; }
}
.opinion-card {
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.opinion-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.opinion-img {
    width: 100%;
    display: block;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.07);
}
/* Tekstowa karta opinii */
.opinion-text-card {
    background: rgba(17,18,17,0.6);
    border: 1px solid rgba(0,230,91,0.2);
    backdrop-filter: blur(20px);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.opinion-stars {
    color: #f5c518;
    font-size: 1.2rem;
    letter-spacing: 2px;
}
.opinion-text-card blockquote {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    font-style: italic;
    margin: 0;
    border-left: 3px solid var(--primary);
    padding-left: 16px;
}
.opinion-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
}
.opinion-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, #007a33 100%);
    color: #000;
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.opinion-author strong {
    display: block;
    color: #fff;
    font-size: 0.95rem;
}
.opinion-author span {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* --- 6. Screenshot pakietów --- */
.packages-screenshot-wrapper {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    margin-bottom: 16px;
}
.packages-screenshot {
    width: 100%;
    display: block;
}

/* ============================================================
   RESPONSYWNOŚĆ MOBILNA
   ============================================================ */

/* Nawigacja */
@media (max-width: 768px) {
    .floating-nav { top: 10px; width: 95%; padding: 10px 16px; }
    .logo-text    { display: none; }
    .nav-links    { gap: 10px; }
}

/* Hero */
@media (max-width: 992px) {
    .hero { padding: 120px 0 60px; }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    .hero-left { align-items: center; text-align: center; }
    .hero-actions { justify-content: center; flex-wrap: wrap; }
    .hero-right { order: -1; }
    .hero-title { white-space: normal; font-size: clamp(2rem, 7vw, 3.5rem); }
}
@media (max-width: 480px) {
    .hero { padding: 100px 0 40px; }
    .hero-title { font-size: clamp(1.8rem, 8vw, 2.8rem); }
    .hero-desc  { font-size: 1rem; }
    .btn { padding: 14px 24px; font-size: 0.85rem; }
    .btn-with-price { min-height: 56px; }
    .video-mockup-wrapper { max-width: 260px; }
}

/* System / Kroki */
@media (max-width: 992px) {
    .split-layout { grid-template-columns: 1fr; gap: 50px; }
    #system .container { padding: 40px 20px; border-radius: 32px; }
    .split-col h2 { font-size: 2rem; }
}
@media (max-width: 480px) {
    .split-col h2 { font-size: 1.6rem; }
    .step-number { width: 36px; height: 36px; font-size: 0.9rem; }
    .community-card { flex-direction: column; align-items: flex-start; }
}

/* Kupony 3D */
@media (max-width: 768px) {
    .cards-3d-stack { height: 380px; }
    .card-3d-item { width: 230px; }
    .cards-3d-stack:hover .card-left  { transform: translateX(-80px)  translateY(0) rotate(-15deg) scale(0.95); }
    .cards-3d-stack:hover .card-right { transform: translateX(80px)   translateY(0) rotate(15deg)  scale(0.95); }
}
@media (max-width: 480px) {
    .cards-3d-stack { height: 320px; }
    .card-3d-item { width: 190px; }
    .cards-3d-stack:hover .card-left  { transform: translateX(-55px)  translateY(0) rotate(-12deg) scale(0.95); }
    .cards-3d-stack:hover .card-right { transform: translateX(55px)   translateY(0) rotate(12deg)  scale(0.95); }
    .slip-events { padding: 14px; }
    .event-match { font-size: 0.85rem; }
}

/* Opinie */
@media (max-width: 900px) {
    .opinions-grid { grid-template-columns: 1fr; }
    .opinion-text-card { padding: 24px; }
}

/* Pakiety */
@media (max-width: 1100px) {
    .pricing-grid-v2 { grid-template-columns: 1fr; }
    .ultimate-horizontal-card {
        grid-template-columns: 1fr;
        padding: 40px 24px;
    }
}
@media (max-width: 600px) {
    .delicate-card { padding: 36px 20px; border-radius: 28px; }
    .delicate-card h4 { font-size: 1.7rem; }
    .price-delicate { font-size: 2rem; }
    .u-title-red { font-size: 2rem; }
    .u-new-price { font-size: 4rem; }
    .ultimate-inner-card { padding: 36px 20px; border-radius: 28px; }
}

/* Footer */
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
@media (max-width: 480px) {
    footer { padding: 50px 0 24px; }
    .footer-bottom { font-size: 0.8rem; }
}

/* Panel overlay mobile */
@media (max-width: 480px) {
    .panel-modal { max-width: 100%; }
    .panel-img { border-radius: 16px; }
    .panel-close { top: -12px; right: -12px; }
}

/* Wyniki sekcja — ogólna */
@media (max-width: 768px) {
    .results-section { padding: 80px 0; }
    .results-features-row { margin-top: 40px; }
    .opinions-section { margin-top: 60px; }
}

/* ============================================================
   PAKIETY — nowy design wg screena
   ============================================================ */

.pkg-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
}

/* ---- Wspólna karta ---- */
.pkg-card {
    background: #0d0f0e;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 32px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pkg-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}

/* ---- Header ---- */
.pkg-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 4px;
}
.pkg-name {
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 16px;
}

/* ---- Cena ---- */
.pkg-price-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 20px;
}
.pkg-price {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -1px;
    line-height: 1;
}
.pkg-period {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ---- Divider ---- */
.pkg-divider {
    height: 1px;
    background: rgba(255,255,255,0.07);
    margin: 4px 0 20px;
}

/* ---- Lista cech ---- */
.pkg-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    flex: 1;
}
.pkg-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
}
.pkg-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(0,230,91,0.12);
    border: 1px solid rgba(0,230,91,0.35);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pkg-check svg { width: 12px; height: 12px; }
.pkg-check-red {
    background: rgba(235,27,39,0.12) !important;
    border-color: rgba(235,27,39,0.35) !important;
    color: #eb1b27 !important;
}

/* ---- Limit miejsc ---- */
.pkg-limit {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    padding: 10px 14px;
    margin-bottom: 18px;
}
.pkg-limit strong { color: var(--primary); }
.pkg-limit svg { flex-shrink: 0; color: var(--primary); }
.pkg-limit-red strong { color: #eb1b27 !important; }
.pkg-limit-red svg   { color: #eb1b27 !important; }

/* ---- Przyciski ---- */
.pkg-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: var(--font);
}
.pkg-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.pkg-btn-green {
    background: var(--primary);
    color: #000;
    box-shadow: 0 6px 20px rgba(0,230,91,0.25);
}
.pkg-btn-green:hover {
    background: #00c44d;
    box-shadow: 0 10px 30px rgba(0,230,91,0.4);
    transform: translateY(-2px);
    color: #000;
}
.pkg-btn-red {
    background: #eb1b27;
    color: #fff;
    box-shadow: 0 6px 20px rgba(235,27,39,0.3);
}
.pkg-btn-red:hover {
    background: #ff2030;
    box-shadow: 0 10px 30px rgba(235,27,39,0.5);
    transform: translateY(-2px);
    color: #fff;
}
.pkg-btn-full { width: 100%; margin-top: 0; }

/* ---- Platinium — wyróżniony ---- */
.pkg-platinium {
    border-color: var(--primary);
    background: rgba(0,230,91,0.03);
    box-shadow: 0 0 40px rgba(0,230,91,0.08);
}
.pkg-popular-badge {
    position: absolute;
    top: -1px;
    right: 24px;
    background: var(--primary);
    color: #000;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: 0 0 10px 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
}

/* ---- ULTIMATE — pełna szerokość ---- */
.pkg-ultimate {
    grid-column: span 2;
    border-color: rgba(235,27,39,0.3);
    background: rgba(10,8,8,0.7);
    padding: 32px 28px 28px;
    gap: 20px;
}
.pkg-ultimate:hover {
    border-color: rgba(235,27,39,0.55);
    box-shadow: 0 24px 60px rgba(235,27,39,0.1);
}
.pkg-ultimate-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
    margin-bottom: 24px;
}
.pkg-ult-left {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.pkg-label-red  { color: #eb1b27 !important; }
.pkg-name-white { color: #fff; margin-bottom: 20px; }
.pkg-features-red { margin-bottom: 20px; }

.pkg-ult-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
}
.pkg-ult-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 6px;
}
.pkg-ult-old-price {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.3);
    text-decoration: line-through;
    font-family: var(--font-mono);
    line-height: 1;
}
.pkg-ult-new-price {
    font-size: 5rem;
    font-weight: 900;
    color: #eb1b27;
    line-height: 1;
    letter-spacing: -2px;
    text-shadow: 0 0 30px rgba(235,27,39,0.35);
    margin: 6px 0;
}
.pkg-ult-superbet {
    background: #eb1b27;
    color: #fff;
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: 3px;
    padding: 10px 32px;
    border-radius: 8px;
    margin: 8px 0 16px;
    text-transform: uppercase;
}

/* ---- Responsywność ---- */
@media (max-width: 700px) {
    .pkg-grid { grid-template-columns: 1fr; }
    .pkg-ultimate { grid-column: span 1; }
    .pkg-ultimate-inner { grid-template-columns: 1fr; gap: 20px; }
    .pkg-ult-right { align-items: flex-start; text-align: left; }
    .pkg-ult-new-price { font-size: 3.5rem; }
    .pkg-name { font-size: 1.8rem; }
    .pkg-price { font-size: 2rem; }
}
@media (max-width: 480px) {
    .pkg-card { padding: 24px 18px 20px; }
    .pkg-popular-badge { font-size: 0.65rem; padding: 5px 10px; right: 14px; }
}

/* Licznik produktów w koszyku */
.btn-cart {
    position: relative;
}
.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--primary);
    color: #000;
    font-size: 0.65rem;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border: 2px solid #030604;
}

/* ============================================================
   MOBILE FIXES v2 — pełna responsywność mobilna
   ============================================================ */

/* =========================================================
   HERO — kompaktowy na mobile, wideo pod tekstem lub ukryte
   ========================================================= */
@media (max-width: 992px) {
    /* Brak min-height, kompaktowy padding */
    .hero {
        min-height: auto;
        padding: 100px 0 50px;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    .hero-left {
        align-items: center;
        text-align: center;
        order: 1;
    }
    /* Wideo POD tekstem, nie nad */
    .hero-right {
        order: 2;
        margin-bottom: 0;
    }
    .hero-title {
        white-space: normal;
        font-size: clamp(2rem, 7vw, 3rem);
    }
    .hero-desc { max-width: 100%; }
    .hero-actions { justify-content: center; flex-wrap: wrap; }
    /* Wyłącz 3D rotation na mobile — wygląda źle */
    .device-frame {
        transform: none !important;
        animation: none !important;
    }
    .video-mockup-wrapper {
        max-width: 280px;
        margin: 0 auto;
    }
    /* Wytłumij glowy tła */
    .mockup-bg-glow { opacity: 0.3; }
    .hero-bg-glow   { opacity: 0.5; }
}

@media (max-width: 768px) {
    .hero {
        padding: 90px 0 40px;
        min-height: 100dvh; /* dvh accounts for mobile browser chrome */
        min-height: 100vh;  /* fallback for older browsers */
    }
    .hero-grid { gap: 24px; }
    .hero-title { font-size: clamp(1.8rem, 8vw, 2.6rem); }
    .hero-desc  { font-size: 1rem; }
    /* Ukryj wideo na małych ekranach — dominuje za bardzo */
    .hero-right { display: none; }
}

@media (max-width: 480px) {
    .hero { padding: 80px 0 32px; }
    .hero-title { font-size: clamp(1.7rem, 9vw, 2.2rem); }
    .badge-wrapper { font-size: 0.72rem; padding: 5px 12px; }
    /* Przyciski pionowo */
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 12px;
    }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .btn { padding: 14px 20px; font-size: 0.85rem; }
    .btn-with-price { min-height: 52px; }
}

/* =========================================================
   SEKCJE — padding
   ========================================================= */
@media (max-width: 768px) {
    #system           { padding: 50px 0; }
    .results-section  { padding: 50px 0; }
    .pricing-section  { padding: 50px 0; }
}
@media (max-width: 480px) {
    #system           { padding: 36px 0; }
    .results-section  { padding: 36px 0; }
    .pricing-section  { padding: 36px 0; }
}

/* =========================================================
   SYSTEM — #system container
   ========================================================= */
@media (max-width: 768px) {
    #system .container {
        padding: 36px 20px;
        border-radius: 28px;
    }
    .split-layout { grid-template-columns: 1fr; gap: 40px; }
    .split-col h2 { font-size: 1.9rem; }
    .split-col p  { font-size: 1rem; }
}
@media (max-width: 480px) {
    #system .container { padding: 24px 14px; border-radius: 20px; }
    .split-col h2 { font-size: 1.6rem; }
    .step-number { width: 36px; height: 36px; font-size: 0.9rem; }
    .community-card { flex-direction: column; align-items: flex-start; gap: 16px; }
    .btn-superbet { width: 100%; justify-content: center; }
}

/* =========================================================
   KUPONY 3D
   ========================================================= */
@media (max-width: 768px) {
    .cards-3d-stack { height: 360px; }
    .card-3d-item   { width: 220px; }
    .cards-3d-stack:hover .card-left  { transform: translateX(-75px)  translateY(0) rotate(-15deg) scale(0.95); }
    .cards-3d-stack:hover .card-right { transform: translateX(75px)   translateY(0) rotate(15deg)  scale(0.95); }
}
@media (max-width: 480px) {
    .cards-3d-stack { height: 300px; }
    .card-3d-item   { width: 185px; }
    .cards-3d-stack:hover .card-left  { transform: translateX(-50px) translateY(0) rotate(-12deg) scale(0.95); }
    .cards-3d-stack:hover .card-right { transform: translateX(50px)  translateY(0) rotate(12deg)  scale(0.95); }
    .slip-events { padding: 12px; }
    .event-match { font-size: 0.82rem; }
    .payout-val  { font-size: 1rem; }
}

/* =========================================================
   WYNIKI — cechy pod kuponami
   ========================================================= */
@media (max-width: 768px) {
    .results-features-row { margin-top: 36px; }
    .feature-row-item { padding: 20px 16px; }
    .feature-row-item .f-text h4 { font-size: 1rem; }
    .feature-row-item .f-text p  { font-size: 0.9rem; }
    .opinions-section { margin-top: 50px; }
}

/* =========================================================
   PAKIETY — pkg-grid
   ========================================================= */
@media (max-width: 700px) {
    .pkg-grid { grid-template-columns: 1fr; }
    .pkg-ultimate { grid-column: span 1; }
    .pkg-ultimate-inner { grid-template-columns: 1fr; gap: 16px; }
    .pkg-ult-right { align-items: flex-start; text-align: left; }
    .pkg-ult-new-price { font-size: 3.5rem; }
    .pkg-name  { font-size: 1.8rem; }
    .pkg-price { font-size: 2rem; }
}
@media (max-width: 480px) {
    .pkg-card { padding: 22px 16px 18px; }
    .pkg-popular-badge { font-size: 0.62rem; padding: 5px 10px; right: 14px; }
    .pkg-ult-new-price { font-size: 3rem; }
}
@media (max-width: 380px) {
    .pkg-grid { gap: 12px; }
    .pkg-card { padding: 18px 12px 16px; }
    .pkg-name  { font-size: 1.6rem; }
    .pkg-price { font-size: 1.8rem; }
    .pkg-btn   { font-size: 0.85rem; padding: 13px 14px; }
}

/* =========================================================
   NAWIGACJA
   ========================================================= */
@media (max-width: 768px) {
    .floating-nav { top: 10px; width: 95%; padding: 10px 16px; }
    .logo-text    { display: none; }
    .nav-links    { gap: 10px; }
}
@media (max-width: 380px) {
    .floating-nav { padding: 8px 12px; }
    .btn-login    { padding: 8px 14px; font-size: 0.82rem; }
    .logo-mark    { height: 36px; font-size: 1rem; padding: 0 12px; }
}

/* =========================================================
   FOOTER
   ========================================================= */
@media (max-width: 768px) {
    .footer-grid   { grid-template-columns: 1fr; gap: 28px; margin-bottom: 40px; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}
@media (max-width: 480px) {
    footer         { padding: 48px 0 24px; }
    .footer-bottom { font-size: 0.78rem; }
    .links-col h4, .contact-col h4 { margin-bottom: 12px; }
}

/* =========================================================
   PANEL LIGHTBOX
   ========================================================= */
@media (max-width: 480px) {
    .panel-modal  { max-width: 100%; }
    .panel-img    { border-radius: 14px; }
    .panel-close  { top: -10px; right: -10px; }
}

/* =========================================================
   TŁO — orby mniej intensywne na mobile (za dużo zieleni)
   ========================================================= */
@media (max-width: 768px) {
    .mesh-orb { opacity: 0.12 !important; filter: blur(80px); }
    .hero-bg-glow { opacity: 0.4; width: 400px; height: 400px; }
    .mockup-bg-glow { display: none; }
}

/* =========================================================
   GLOBAL container padding na mobile
   ========================================================= */
@media (max-width: 480px) {
    .container { padding: 0 16px; }
}

/* Kupony — zdjęcia */
.kupon-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.pkg-ult-explain {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
    margin: 4px 0 8px;
}
.pkg-ult-explain strong {
    color: #fff;
}

.opinions-grid--two {
    grid-template-columns: 1fr 1fr;
}

/* Mobile: move "Dołącz do społeczności" below kupony/opinie */
@media (max-width: 992px) {
    .jmm-landing main {
        display: flex;
        flex-direction: column;
    }
    .jmm-landing main > * { order: 0; }
    .section-wyniki  { order: 1; }
    .section-pakiety { order: 2; }
    .section-system  { order: 3; }
}

/* ── Package ULTIMATE v2 ── */
.pkg-ultimate--v2 {
    background: #0a0a0a;
    border: 1px solid rgba(235, 27, 39, 0.4);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
}

.pkg-ult2-body {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    padding: 48px;
}

.pkg-ult2-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-right: 48px;
}

.pkg-ult2-name {
    font-size: 56px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -2px;
    line-height: 1;
}

.pkg-ult2-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.pkg-ult2-features li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 17px;
    font-weight: 500;
    color: #fff;
}

.pkg-ult2-check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(235, 27, 39, 0.15);
    border: 1.5px solid rgba(235, 27, 39, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #eb1b27;
}

.pkg-ult2-check svg {
    width: 14px;
    height: 14px;
    stroke: #eb1b27;
}

.pkg-ult2-divider {
    width: 1px;
    background: rgba(235, 27, 39, 0.2);
    margin: 0;
    align-self: stretch;
}

.pkg-ult2-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding-left: 48px;
    text-align: center;
}

.pkg-ult2-free-label {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

.pkg-ult2-free-accent {
    color: #eb1b27;
    font-weight: 900;
}

.pkg-ult2-old-price {
    font-size: 22px;
    font-weight: 600;
    color: #666;
    text-decoration: line-through;
}

.pkg-ult2-price {
    font-size: 80px;
    font-weight: 900;
    color: #eb1b27;
    line-height: 1;
    letter-spacing: -3px;
}

.pkg-ult2-superbet-btn {
    background: #eb1b27;
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 1px;
    padding: 14px 40px;
    border-radius: 10px;
    width: 100%;
    text-align: center;
}

.pkg-ult2-explain {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
    max-width: 300px;
    margin: 0;
}

.pkg-ult2-explain strong {
    color: #fff;
}

.pkg-ult2-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: #eb1b27;
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 26px 40px;
    border-radius: 0 0 20px 20px;
    transition: background 0.2s;
    width: 100%;
}

.pkg-ult2-cta:hover {
    background: #c8151f;
    color: #fff;
}

@media (max-width: 900px) {
    .pkg-ult2-body {
        grid-template-columns: 1fr;
        padding: 32px;
        gap: 32px;
    }
    .pkg-ult2-left { padding-right: 0; }
    .pkg-ult2-right { padding-left: 0; }
    .pkg-ult2-divider { width: 100%; height: 1px; }
    .pkg-ult2-name { font-size: 40px; }
    .pkg-ult2-price { font-size: 60px; }
}

/* ============================================================
   NOWE PAKIETY — układ wg projektu
   ============================================================ */

/* Rząd 1: 2 karty obok siebie */
.pkg-grid-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 768px) {
    .pkg-grid-top { grid-template-columns: 1fr; }
}

/* Badge "ZA REJESTRACJĘ" — górny prawy róg */
.pkg-platinum-free {
    position: relative;
    background: #0d0f0e;
    border: 1px solid rgba(235,27,39,0.35);
    border-radius: 24px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: border-color 0.3s;
}
.pkg-platinum-free:hover { border-color: rgba(235,27,39,0.6); }

.pkg-reg-badge {
    position: absolute;
    top: -1px;
    right: -1px;
    background: #eb1b27;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: 0 23px 0 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Cena przekreślona + 0 zł */
.pkg-price-row--free {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin: 4px 0 2px;
}
.pkg-price-old {
    font-size: 1.4rem;
    font-weight: 700;
    color: rgba(255,255,255,0.3);
    text-decoration: line-through;
}
.pkg-price--red {
    font-size: 2.6rem !important;
    font-weight: 900 !important;
    color: #eb1b27 !important;
    line-height: 1;
}
.pkg-free-desc {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    margin: 0 0 12px;
}

/* Czerwony check */
.pkg-check--red {
    background: rgba(235,27,39,0.12) !important;
    color: #eb1b27 !important;
    border: 1px solid rgba(235,27,39,0.3) !important;
}

/* Czerwony przycisk */
.pkg-btn-red {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #eb1b27 0%, #c0111b 100%);
    color: #fff !important;
    border-radius: 12px;
    padding: 16px 24px;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(235,27,39,0.35);
    transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
    margin-top: auto;
}
.pkg-btn-red svg { width: 18px; height: 18px; flex-shrink: 0; }
.pkg-btn-red:hover {
    background: linear-gradient(135deg, #ff2233 0%, #d4141f 100%);
    box-shadow: 0 10px 30px rgba(235,27,39,0.5);
    transform: translateY(-2px);
}

/* Rząd 2: ULTIMATE — split layout pełna szerokość */
.pkg-ultimate-row {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    background: #0d0f0e;
    border: 1px solid rgba(235,27,39,0.3);
    border-radius: 24px;
    overflow: hidden;
    transition: border-color 0.3s;
    max-width: 960px;
    margin: 0 auto;
}
.pkg-ultimate-row:hover { border-color: rgba(235,27,39,0.55); }
@media (max-width: 768px) {
    .pkg-ultimate-row { grid-template-columns: 1fr; }
}

.pkg-ult-left {
    padding: 36px 32px;
    border-right: 1px solid rgba(255,255,255,0.06);
    display: flex;
    flex-direction: column;
    gap: 0;
}
@media (max-width: 768px) {
    .pkg-ult-left { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
}

.pkg-ult-name {
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px;
    margin: 4px 0 20px;
}

/* Features ciemniejsze (biały check) dla Ultimate */
.pkg-features--dark { margin-bottom: 20px; }
.pkg-features--dark .pkg-check--red {
    background: rgba(235,27,39,0.12) !important;
    color: #eb1b27 !important;
}

.pkg-ult-right {
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.pkg-ult-price-old {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255,255,255,0.25);
    text-decoration: line-through;
    line-height: 1;
}
.pkg-ult-price {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 900;
    color: #eb1b27;
    letter-spacing: -2px;
    line-height: 1;
}

.pkg-ult-guarantee {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 16px 20px;
    text-align: center;
}
.pkg-ult-guarantee strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}
.pkg-ult-guarantee span {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
}

/* ============================================================
   PRZYCISK KUPONY w nawigacji
   ============================================================ */
.btn-kupony {
    background: rgba(0,230,91,0.08) !important;
    border-color: rgba(0,230,91,0.3) !important;
    color: var(--primary) !important;
    font-weight: 700;
}
.btn-kupony:hover {
    background: var(--primary) !important;
    color: #000 !important;
}

/* ============================================================
   RESULTS SECTION — mniejsze odstępy
   ============================================================ */
.results-section { padding: 60px 0 80px; }
.results-heading { margin-bottom: 32px !important; }
.section-wyniki .cards-3d-stack { height: 420px; }
.section-wyniki .card-3d-item { width: 320px; }
@media (max-width: 768px) {
    .section-wyniki .cards-3d-stack { height: 340px; }
    .section-wyniki .card-3d-item { width: 250px; }
    .cards-3d-stack:hover .card-left { transform: translateX(-70px) translateY(0) rotate(-12deg) scale(0.95); }
    .cards-3d-stack:hover .card-right { transform: translateX(70px) translateY(0) rotate(12deg) scale(0.95); }
}

/* Zmniejszenie odstępu sekcji system -> wyniki na PC */
.section-system { padding-bottom: 40px; }

/* ============================================================
   OPINIE — SLIDER
   ============================================================ */
.opinions-slider {
    position: relative;
    margin-top: 24px;
}
.opinions-track-wrap {
    width: 100%;
}
.opinions-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 16px 0;
    scrollbar-width: none;
}
.opinions-track::-webkit-scrollbar {
    display: none;
}
.opinion-slide {
    flex: 0 0 calc((100% - 40px) / 3);
    scroll-snap-align: start;
    flex-shrink: 0;
}
.opinion-slide .opinion-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: top;
    border-radius: 16px;
    display: block;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.opinions-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(20,20,20,0.85);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}
.opinions-arrow--prev { left: -22px; }
.opinions-arrow--next { right: -22px; }
.opinions-arrow:hover {
    background: rgba(0,230,91,0.15);
    border-color: var(--primary);
    color: var(--primary);
}
@media (max-width: 768px) {
    .opinion-slide {
        flex: 0 0 85%;
    }
    .opinion-slide .opinion-img {
        height: 340px;
    }
    .opinions-arrow--prev { left: 4px; }
    .opinions-arrow--next { right: 4px; }
}
.opinions-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}
.opinions-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.opinions-dots .dot.active {
    background: var(--primary);
    transform: scale(1.3);
}

/* ============================================================
   HERO — tekst mobilny
   ============================================================ */
@media (max-width: 768px) {
    .hero-title { white-space: normal; font-size: clamp(2rem, 7vw, 3rem); }
    .hero-desc { font-size: 1rem; }
    .hero-desc .hero-desc-desktop { display: none; }
    .hero-desc .hero-desc-mobile { display: inline; }
}
@media (min-width: 769px) {
    .hero-desc .hero-desc-mobile { display: none; }
    .hero-desc .hero-desc-desktop { display: inline; }
}

/* ============================================================
   PAKIETY v2 — nowy design
   ============================================================ */

.pkg2-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
}

/* ---- Karta bazowa ---- */
.pkg2-card {
    background: #0d0f0e;
    border-radius: 20px;
    padding: 32px 28px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}
.pkg2-card:hover {
    transform: translateY(-4px);
}

/* BASIC — zielony border */
.pkg2-basic {
    border: 1.5px solid rgba(0,230,91,0.4);
}
.pkg2-basic:hover {
    box-shadow: 0 20px 50px rgba(0,230,91,0.1);
    border-color: rgba(0,230,91,0.6);
}

/* PLATINUM — czerwony border */
.pkg2-platinum {
    border: 1.5px solid rgba(235,27,39,0.5);
}
.pkg2-platinum:hover {
    box-shadow: 0 20px 50px rgba(235,27,39,0.12);
    border-color: rgba(235,27,39,0.7);
}

/* ULTIMATE — pełna szerokość */
.pkg2-ultimate {
    grid-column: span 2;
    border: 1.5px solid rgba(0,230,91,0.4);
    padding: 32px 28px;
}
.pkg2-ultimate:hover {
    box-shadow: 0 20px 50px rgba(0,230,91,0.1);
    border-color: rgba(0,230,91,0.6);
}

/* ---- Badge "ZA REJESTRACJĘ" ---- */
.pkg2-badge-reg {
    position: absolute;
    top: 0;
    right: 0;
    background: #eb1b27;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 7px 14px;
    border-radius: 0 18px 0 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font);
}

/* ---- Nazwa pakietu ---- */
.pkg2-name {
    font-size: 2.4rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 16px;
    font-family: var(--font);
}
.pkg2-name--white { color: #fff; }

/* ---- Cena ---- */
.pkg2-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}
.pkg2-price {
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -1px;
    line-height: 1;
    font-family: var(--font);
}
.pkg2-price--red {
    color: #eb1b27 !important;
}
.pkg2-price-old {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.3);
    text-decoration: line-through;
    font-family: var(--font);
    line-height: 1;
}
.pkg2-period {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    font-family: var(--font);
}
.pkg2-period--center {
    text-align: center;
    display: block;
    margin-bottom: 4px;
}

/* ---- Label Superbet ---- */
.pkg2-superbet-label {
    display: block;
    margin-bottom: 8px;
    width: fit-content;
}
.pkg2-superbet-logo {
    height: 44px;
    width: auto;
    display: block;
    border-radius: 4px;
}
.pkg2-superbet-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    margin: 0 0 16px;
    line-height: 1.5;
    font-family: var(--font);
}

/* ---- Divider ---- */
.pkg2-divider {
    height: 1px;
    background: rgba(255,255,255,0.07);
    margin: 4px 0 20px;
}

/* ---- Lista cech ---- */
.pkg2-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-bottom: 20px;
    padding: 0;
}
.pkg2-features li {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    font-family: var(--font);
    white-space: pre-wrap;
    .pkg2-check{
        margin-right:12px;
    }
}
.pkg2-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pkg2-check svg { width: 12px; height: 12px; }
.pkg2-check--green {
    background: rgba(0,230,91,0.12);
    border: 1px solid rgba(0,230,91,0.35);
    color: var(--primary);
}
.pkg2-check--red {
    background: rgba(235,27,39,0.12);
    border: 1px solid rgba(235,27,39,0.35);
    color: #eb1b27;
}
.pkg2-num {
    color: var(--primary);
    font-weight: 700;
    font-style: normal;
}
.pkg2-num--red {
    color: #eb1b27;
}

/* ---- Ramka "Pakiet za 0 zł" ---- */
.pkg2-free-box {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(235,27,39,0.07);
    border: 1px solid rgba(235,27,39,0.25);
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 16px;
}
.pkg2-free-box__icon {
    color: #eb1b27;
    flex-shrink: 0;
    display: flex;
}
.pkg2-free-box strong {
    display: block;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 800;
    font-family: var(--font);
    margin-bottom: 2px;
}
.pkg2-free-box span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    font-family: var(--font);
}

/* ---- Spacer wypycha limit+btn na dół ---- */
.pkg2-spacer { flex: 1; }

/* ---- Limit miejsc ---- */
.pkg2-limit {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    padding: 10px 14px;
    margin-bottom: 18px;
    font-family: var(--font);
}
.pkg2-limit strong { color: var(--primary); }
.pkg2-limit svg { flex-shrink: 0; color: rgba(255,255,255,0.4); }
.pkg2-limit--red strong { color: #eb1b27 !important; }
.pkg2-limit--green strong { color: var(--primary) !important; }

/* ---- Przyciski ---- */
.pkg2-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
    font-family: var(--font);
    width: 100%;
}
.pkg2-btn--green {
    background: var(--primary);
    color: #000;
    box-shadow: 0 6px 20px rgba(0,230,91,0.25);
}
.pkg2-btn--green:hover {
    background: #00d655;
    box-shadow: 0 10px 30px rgba(0,230,91,0.4);
    transform: translateY(-2px);
    color: #000;
}
.pkg2-btn--red {
    background: #eb1b27;
    color: #fff;
    box-shadow: 0 6px 20px rgba(235,27,39,0.3);
}
.pkg2-btn--red:hover {
    background: #ff2533;
    box-shadow: 0 10px 30px rgba(235,27,39,0.5);
    transform: translateY(-2px);
    color: #fff;
}

/* ---- ULTIMATE inner layout ---- */
.pkg2-ult-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
}
.pkg2-ult-left {
    display: flex;
    flex-direction: column;
}
.pkg2-ult-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
}
.pkg2-ult-price {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -2px;
    line-height: 1;
    font-family: var(--font);
}
.pkg2-guarantee {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 10px 0 16px;
}
.pkg2-guarantee strong {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    font-family: var(--font);
}
.pkg2-guarantee span {
    color: rgba(255,255,255,0.35);
    font-size: 0.78rem;
    font-family: var(--font);
}
.pkg2-lowest-price {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.4);
    text-align: center;
    margin: -8px 0 12px;
}

/* ---- Responsywność ---- */
@media (max-width: 700px) {
    .pkg2-grid { grid-template-columns: 1fr; }
    .pkg2-ultimate { grid-column: span 1; }
    .pkg2-ult-inner { grid-template-columns: 1fr; gap: 24px; }
    .pkg2-ult-right { align-items: flex-start; text-align: left; }
    .pkg2-ult-price { font-size: 3rem; }
    .pkg2-name { font-size: 2rem; }
    .pkg2-price { font-size: 2.2rem; }
    .pkg2-btn { font-size: 0.85rem; }
}
@media (max-width: 480px) {
    .pkg2-card { padding: 24px 18px 22px; }
    .pkg2-badge-reg { font-size: 0.6rem; padding: 6px 10px; }
}
