/* GOOGLE FONTS */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
    line-height: 1.6;
}

/* CSS VARIABLES - DESIGN TOKENS */
:root {
    --bg-dark: #0B0B0B;
    --bg-surface: rgba(20, 20, 20, 0.4);

    --neon-cyan: #00F0FF;
    --neon-purple: #B026FF;
    --neon-green: #00FA9A;
    --text-light: #F4F4F5;
    --text-muted: #A1A1AA;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    line-height: 1.2;
}

/* UTILITIES */
.neon-purple {
    color: var(--neon-purple);
    text-shadow: 0 0 15px rgba(176, 38, 255, 0.4);
}

.neon-cyan {
    color: var(--neon-cyan);
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

.neon-green {
    color: var(--neon-green);
    text-shadow: 0 0 15px rgba(0, 250, 154, 0.4);
}

.glow-cyan {
    color: var(--neon-cyan);
}


/* MESH BACKGROUND */
.mesh-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at 15% 50%, rgba(176, 38, 255, 0.08), transparent 40%),
        radial-gradient(circle at 85% 30%, rgba(0, 240, 255, 0.06), transparent 40%);
    z-index: -1;
    pointer-events: none;
}

/* GLASSMORPHISM */
.glass-effect {
    background: var(--bg-surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* FOMO BAR */
.fomo-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(11, 11, 11, 0.95);
    background: linear-gradient(90deg, rgba(11, 11, 11, 1) 0%, rgba(30, 5, 40, 1) 50%, rgba(11, 11, 11, 1) 100%);
    border-bottom: 1px solid var(--neon-purple);
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(176, 38, 255, 0.3);
}

.fomo-bar .timer-digits {
    font-size: 1rem;
    color: var(--neon-cyan);
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
    margin-left: 8px;
}

/* NAVIGATION */
.navbar {
    position: fixed;
    top: 41px;
    /* offset by missing height of fomo bar */
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    white-space: nowrap;
}

.glow-text {
    background: linear-gradient(90deg, #FFF, var(--text-muted));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-nav {
    color: var(--neon-cyan);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border: 1px solid var(--neon-cyan);
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-nav:hover {
    background: rgba(0, 240, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

/* BUTTONS */
.btn {
    display: block;
    box-sizing: border-box;
    text-align: center;
    padding: 16px 36px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.primary-btn.glow-purple {
    background: linear-gradient(135deg, var(--neon-purple), #7E1CC4);
    color: #fff;
    box-shadow: 0 10px 25px rgba(176, 38, 255, 0.3);
}

.primary-btn.glow-cyan {
    background: linear-gradient(135deg, var(--neon-cyan), #00A6B2);
    color: #000;
    box-shadow: 0 10px 25px rgba(0, 240, 255, 0.3);
}

.primary-btn:hover {
    transform: translateY(-3px) scale(1.02);
}

.primary-btn.glow-purple:hover {
    box-shadow: 0 15px 35px rgba(176, 38, 255, 0.5);
}

.secondary-btn {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.secondary-btn:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.full-width {
    width: 100%;
    margin-top: auto;
}

/* margin-top auto forces btn to bottom of the flex card */

/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 130px 20px 50px;
    position: relative;
    gap: 50px;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero .title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero .subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 40px;
    max-width: 500px;
}

.btn-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-metrics {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.metric strong {
    display: block;
    font-size: 2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
}

.metric span {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* HERO VISUAL 3D */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    perspective: 1000px;
    z-index: 2;
}

.holo-container {
    position: relative;
    width: 100%;
    max-width: 450px;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
}

.glow-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(176, 38, 255, 0.4) 0%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
    animation: pulse 4s infinite alternate;
}

.ebook-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    transform: translateZ(50px);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateZ(50px) translateY(0);
    }

    50% {
        transform: translateZ(50px) translateY(-20px);
    }

    100% {
        transform: translateZ(50px) translateY(0);
    }
}

@keyframes pulse {
    0% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* TICKER */
.ticker {
    background: rgba(0, 250, 154, 0.05);
    border-top: 1px solid rgba(0, 250, 154, 0.2);
    border-bottom: 1px solid rgba(0, 250, 154, 0.2);
    overflow: hidden;
    padding: 15px 0;
    white-space: nowrap;
    box-shadow: 0 0 30px rgba(0, 250, 154, 0.02) inset;
}

.ticker-track {
    display: inline-flex;
    animation: scroll-left 25s linear infinite;
    color: var(--neon-green);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 2px;
    white-space: nowrap;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* COMMUNITY & INFO SECTIONS GENERAL HEADERS */
.community,
.testimonials,
.pricing,
.faq-section {
    max-width: 1000px;
    margin: 120px auto;
    padding: 0 40px;
}

.community-header {
    text-align: center;
    margin-bottom: 60px;
}

.community-header h3,
.section-title {
    font-size: 3rem;
    margin-bottom: 15px;
    text-align: center;
}

.community-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* CHAT PREVIEW */
.chat-container {
    padding: 40px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    overflow: hidden;
}

.chat-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(0, 240, 255, 0.03), transparent 60%);
    pointer-events: none;
}

.chat-bubble {
    max-width: 80%;
    padding: 16px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.chat-bubble.left {
    align-self: flex-start;
    border-bottom-left-radius: 2px;
}

.chat-bubble.right {
    align-self: flex-end;
    border-bottom-right-radius: 2px;
    background: rgba(176, 38, 255, 0.08);
    border-color: rgba(176, 38, 255, 0.2);
}

.chat-bubble.neon-border-cyan {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.1) inset;
}

.chat-bubble .user {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.chat-bubble .time {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-align: right;
    margin-top: 8px;
}

/* PRO EXPERT SECTION: Testimonials Carousel */
.carousel-master {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 70px;
    /* Space for buttons */
}

.carousel-viewport {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    padding: 10px 0;
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.test-card {
    /* 3 cards minus gap spacing */
    flex: 0 0 calc(33.3333% - 20px);
    width: calc(33.3333% - 20px);
    padding: 40px 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 240, 255, 0.05);
    color: var(--neon-cyan);
    border: 1px solid rgba(0, 240, 255, 0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--neon-cyan);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
    border-color: var(--neon-cyan);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

@media (max-width: 1024px) {
    .test-card {
        flex: 0 0 calc(50% - 15px);
        width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .carousel-master {
        padding: 0 10px;
    }

    .carousel-btn {
        display: flex;
        background: #111;
        opacity: 0.8;
    }

    .test-card {
        flex: 0 0 100%;
        width: 100%;
    }
}

.test-card .stars {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.test-card p {
    font-size: 1rem;
    font-style: italic;
    color: #E4E4E5;
    flex-grow: 1;
    line-height: 1.6;
}

.test-card .author {
    display: flex;
    align-items: center;
    margin-top: 20px;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
}

.test-card .author .avatar {
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.test-card .author span {
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
}

.test-card .author small {
    color: var(--neon-cyan);
    display: block;
    font-weight: 500;
}

/* PRICING */
.section-title {
    margin-bottom: 80px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.strike-through {
    text-decoration: line-through;
    color: rgba(255, 60, 60, 0.8);
    font-size: 1.5rem;
    margin-right: 15px;
    font-weight: 500;
}

.promo-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--neon-green);
    color: #000;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 20px;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(0, 250, 154, 0.6);
    z-index: 10;
    white-space: nowrap;
}

.pricing-card {
    padding: 50px 40px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    position: relative;
    transform-style: preserve-3d;
}

.pricing-card.premium.glow-active {
    border: 1px solid var(--neon-purple);
    box-shadow: 0 0 40px rgba(176, 38, 255, 0.15) inset, 0 20px 40px -10px rgba(0, 0, 0, 0.8);
    background: rgba(20, 20, 20, 0.7);
}

.most-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--neon-purple);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    letter-spacing: 1px;
    z-index: 10;
    white-space: nowrap;
}

.card-header {
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-header h4 {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.card-header .price {
    font-size: 3rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    line-height: 1.1;
    margin-top: auto;
}

.card-header .price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
}

.features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    flex: 1;
}

.features li {
    margin-bottom: 16px;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
}

.features li.disabled {
    color: rgba(255, 255, 255, 0.2);
}

/* FAQ ACCORDION */
.faq-wrapper {
    padding: 20px 30px;
    border-radius: 20px;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    outline: none;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--neon-cyan);
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.4s ease;
    color: var(--neon-purple);
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
    color: var(--neon-green);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

.faq-answer.show {
    max-height: 800px;
}

.faq-answer p {
    margin: 0;
    padding-bottom: 25px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* FOOTER */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 100px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-bottom: none;
}

.footer-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 15px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0 15px 0;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}

.legal {
    margin-top: 40px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

/* SCROLL REVEAL ANIMATIONS */
.hidden-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.visible-animate {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        margin-top: 70px;
    }

    .hero .title {
        font-size: 3rem;
    }

    .hero .subtitle {
        margin: 0 auto 30px;
    }

    .btn-group {
        justify-content: center;
    }

    .hero-metrics {
        justify-content: center;
        flex-wrap: wrap;
    }

    .community-header h3,
    .section-title {
        font-size: 2.2rem;
    }

    .store-section {
        margin: 100px auto 50px;
    }

    .nav-links {
        display: none;
    }

    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .navbar {
        position: relative;
        top: 0;
        margin-top: 45px;
        /* prevent overlap from fomo bar */
        padding-bottom: 20px;
    }

    html,
    body {
        width: 100%;
        overflow-x: hidden;
    }

    .fomo-bar {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
}

/* STORE PAGE (ARSENAŁ) */
.store-section {
    max-width: 1400px;
    margin: 150px auto 100px;
    padding: 0 40px;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.store-card {
    padding: 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
    overflow: visible;
    /* Zmieniono z hidden by nie ucinać znaczków VIP u góry */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-cover-wrapper {
    width: 100%;
    height: 220px;
    border-radius: 12px;
    margin-bottom: 25px;
    overflow: hidden;
    position: relative;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: radial-gradient(white, black);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-cover {
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s ease;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vip-img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s ease;
}

.virtual-card {
    width: 75%;
    height: 65%;
    border-radius: 8px;
    background: rgba(10, 10, 10, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5), inset 0 0 10px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    backdrop-filter: blur(10px);
}

.virtual-card.book-style {
    width: 70%;
    max-width: 185px;
    height: 92%;
    border-radius: 3px 12px 12px 3px;
    background: linear-gradient(135deg, rgba(30, 30, 35, 0.9), rgba(10, 10, 12, 1));
    box-shadow:
        inset 5px 0 15px rgba(255, 255, 255, 0.15),
        inset -2px 0 5px rgba(255, 255, 255, 0.2),
        8px 10px 25px rgba(0, 0, 0, 0.6),
        -3px 0 8px rgba(0, 0, 0, 0.8);
    border-left: 8px solid rgba(0, 0, 0, 0.8);
    position: relative;
    transform-style: preserve-3d;
    transform: perspective(600px) rotateY(-18deg) rotateX(5deg);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.6s ease;
    overflow: visible;
}

/* Wewnętrzne elementy okładki książki (żeby załamania działały perfekcyjnie) */
.virtual-card.book-style.book-bronze {
    background: linear-gradient(135deg, #b07c50, #6b4226);
    border-left: 8px solid #4a2e1b;
}

.virtual-card.book-style.book-silver {
    background: linear-gradient(135deg, #cccccc, #7a7a7a);
    border-left: 8px solid #404040;
}

.virtual-card.book-style.book-gold {
    background: linear-gradient(135deg, #ffd700, #b8860b);
    border-left: 8px solid #8b6508;
}

.virtual-card.book-style.book-platinum {
    background: linear-gradient(135deg, #e5e4e2, #7d8b9d);
    border-left: 8px solid #4a5463;
}

.virtual-card.book-style.book-diamond {
    background: linear-gradient(135deg, #b9f2ff, #1e90ff);
    border-left: 8px solid #004b99;
}

.virtual-card.book-style.book-amethyst {
    background: linear-gradient(135deg, #d38cff, #6a00cc);
    border-left: 8px solid #330066;
}

.virtual-card.book-style .card-tier {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    font-size: 0.85rem !important;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    z-index: 5;
    padding: 6px;
    border-radius: 4px;
}

/* Efekt grubości kartek z boku (Right Edge) */
.virtual-card.book-style::before {
    content: '';
    position: absolute;
    top: 4px;
    right: -8px;
    width: 8px;
    height: calc(100% - 8px);
    background: repeating-linear-gradient(to right, #ddd, #ddd 1px, #f4f4f4 1px, #f4f4f4 2px);
    transform: rotateY(90deg) translateX(4px);
    transform-origin: right center;
    border-radius: 0 4px 4px 0;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* Dodatek ikony tradingu za pomocą ::after prosto w CSS na froncie okładki */
.virtual-card.book-style::after {
    content: '';
    position: absolute;
    top: 15%;
    left: 15%;
    width: 70%;
    height: 50%;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><polyline points='10,80 30,50 50,60 80,15' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/><circle cx='80' cy='15' r='5' fill='white'/></svg>");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.15;
    z-index: 2;
}

.store-card:hover .virtual-card.book-style {
    transform: perspective(600px) rotateY(-5deg) rotateX(0deg) scale(1.08) translateY(-5px);
    box-shadow:
        inset 5px 0 15px rgba(255, 255, 255, 0.2),
        15px 20px 35px rgba(0, 0, 0, 0.8),
        -5px 0 15px rgba(0, 0, 0, 0.9);
}

.chip {
    width: 35px;
    height: 25px;
    border-radius: 4px;
    background: linear-gradient(135deg, #FFD700, #B8860B, #FFD700);
    border: 1px solid #FFF8DC;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5), 0 0 10px rgba(255, 215, 0, 0.2);
    position: relative;
}

.chip::after {
    content: '';
    position: absolute;
    top: 45%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(0, 0, 0, 0.5);
}

.card-tier {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
    letter-spacing: 2px;
    white-space: nowrap;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.neon-cyan-cover {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(0, 166, 178, 0.2));
    border: 1px solid var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1) inset;
}

.neon-purple-cover {
    background: linear-gradient(135deg, rgba(176, 38, 255, 0.1), rgba(126, 28, 196, 0.2));
    border: 1px solid var(--neon-purple);
    box-shadow: 0 0 20px rgba(176, 38, 255, 0.1) inset;
}

.neon-green-cover {
    background: linear-gradient(135deg, rgba(0, 250, 154, 0.1), rgba(0, 166, 178, 0.2));
    border: 1px solid var(--neon-green);
    box-shadow: 0 0 20px rgba(0, 250, 154, 0.1) inset;
}

.neon-magenta-cover {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.1), rgba(170, 0, 170, 0.2));
    border: 1px solid #FF00FF;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.1) inset;
}

.neon-gold-cover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(218, 165, 32, 0.2));
    border: 1px solid #FFD700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.1) inset;
}

.store-card:hover .placeholder-cover,
.store-card:hover .vip-img-cover {
    transform: scale(1.1);
}

.card-expand-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
}

.store-card.expanded .card-expand-content {
    max-height: 600px;
    opacity: 1;
    margin-top: 15px;
}

.store-card.expanded .placeholder-cover,
.store-card.expanded .vip-img-cover,
.store-card.expanded .virtual-card.book-style {
    filter: blur(2px) brightness(0.6);
    transform: perspective(600px) rotateY(0deg) rotateX(0deg) scale(1.12);
}

img.ruby-card {
    filter: hue-rotate(60deg) saturate(1.5) brightness(1.2);
}

.store-card.expanded img.ruby-card {
    filter: hue-rotate(60deg) saturate(1.5) brightness(0.6) blur(2px) !important;
}

.store-card.expanded {
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.05);
    background: rgba(30, 30, 30, 0.6);
}

.expand-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    outline: none;
    margin-top: auto;
    padding-top: 15px;
    transition: color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.expand-btn:hover {
    color: #fff;
}

.store-card.expanded .expand-btn span {
    transform: rotate(180deg);
}

.expand-btn span {
    transition: transform 0.4s ease;
}

/* REGULAMIN (LEGAL PAGE) */
.legal-section {
    max-width: 1400px;
    margin: 150px auto 100px;
    padding: 0 40px;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 50px;
    border-radius: 20px;
    background: rgba(10, 10, 10, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    text-align: left;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--text-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.legal-container p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.legal-container strong {
    color: var(--text-light);
    font-weight: 700;
}

.legal-highlight {
    background: rgba(255, 0, 0, 0.05);
    border-left: 4px solid var(--neon-purple);
    padding: 20px 30px;
    border-radius: 0 10px 10px 0;
    margin: 30px 0;
}

.legal-highlight p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.legal-highlight p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .legal-container {
        padding: 40px 20px;
    }

    .legal-container h2 {
        font-size: 1.5rem;
    }
}

/* SUPPORT CARD / KONTAKT */
.support-card {
    max-width: 600px;
    width: 100%;
    padding: 60px 50px;
    border-radius: 20px;
    background: rgba(15, 15, 15, 0.85);
    border: 1px solid rgba(176, 38, 255, 0.2);
    box-shadow: 0 0 50px rgba(176, 38, 255, 0.15), inset 0 0 20px rgba(0, 0, 0, 0.8);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.discord-icon-wrapper {
    width: 100px;
    height: 100px;
    background: rgba(176, 38, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 30px;
    box-shadow: 0 0 20px rgba(176, 38, 255, 0.4);
    animation: pulse-glow-purple 3s infinite alternate;
}

.support-card h1 {
    font-size: 2.2rem;
    letter-spacing: 2px;
    white-space: nowrap;
    margin-bottom: 5px;
}

.support-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 5px;
    margin-bottom: 40px;
}

.support-info-box {
    background: rgba(0, 0, 0, 0.6);
    padding: 30px 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ccc;
}

@keyframes pulse-glow-purple {
    0% {
        box-shadow: 0 0 10px rgba(176, 38, 255, 0.2);
    }

    100% {
        box-shadow: 0 0 40px rgba(176, 38, 255, 0.6);
    }
}


/* VALUE PROPOSITION / BENEFITS GRID */
.value-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.benefit-card {
    padding: 40px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
}

.icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
}

.neon-purple-icon {
    background: rgba(176, 38, 255, 0.1);
    color: var(--neon-purple);
    border: 1px solid rgba(176, 38, 255, 0.3);
}

.neon-cyan-icon {
    background: rgba(0, 240, 255, 0.1);
    color: var(--neon-cyan);
    border: 1px solid rgba(0, 240, 255, 0.3);
}

.neon-green-icon {
    background: rgba(0, 250, 154, 0.1);
    color: var(--neon-green);
    border: 1px solid rgba(0, 250, 154, 0.3);
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* =========================================
   GLOBAL MOBILE RESPONSIVENESS
   ========================================= */
@media (max-width: 768px) {
    /* Prevent Horizontal Scrolling */
    html, body {
        overflow-x: hidden;
        width: 100%;
    }

    /* Navbar */
    .nav-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding: 5px 10px;
    }

    .logo {
        font-size: 1rem; /* BARDZO małe logo */
        letter-spacing: 1px;
    }

    .nav-links {
        width: 100%;
        order: 3;
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 15px;
        margin-top: 5px;
        padding-bottom: 5px;
    }

    .nav-links::-webkit-scrollbar {
        display: none; /* Ukryty pasek przewijania dla nowoczesnego wyglądu swipe */
    }

    .nav-link {
        font-size: 0.7rem;
        letter-spacing: 0px;
    }

    .cart-icon-nav {
        font-size: 1.2rem;
        margin-right: 5px !important;
    }

    .cta-nav {
        display: none;
    }

    .fomo-bar {
        font-size: 0.55rem;
        padding: 5px;
    }

    .fomo-bar .timer-digits {
        display: block;
        margin-top: 3px;
    }

    /* Hero Section */
    .hero {
        flex-direction: column;
        padding-top: 110px;
        text-align: center;
        gap: 15px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .hero .title {
        font-size: 1.6rem; /* Kompaktowy tytuł */
        margin-bottom: 10px;
    }

    .hero .subtitle {
        font-size: 0.75rem;
        margin: 0 auto 15px;
    }

    .hero-desc {
        font-size: 0.8rem;
        margin-bottom: 20px !important;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.8rem; /* Małe przyciski */
    }

    .btn-group {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        width: 100%;
        margin-bottom: 20px;
    }

    .hero-metrics {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        border-top: none;
        padding-top: 5px;
    }

    .metric strong {
        font-size: 1.2rem;
    }

    .metric span {
        font-size: 0.65rem;
    }

    .holo-container {
        max-width: 180px; /* Bardzo mały obrazek */
    }

    .glow-orb {
        width: 150px;
        height: 200px;
    }

    /* Titles & Sections */
    .section-title, .community-header h3 {
        font-size: 1.4rem; /* Mniejsze tytuły sekcji */
    }

    .community-header p {
        font-size: 0.85rem;
    }

    .community, .testimonials, .pricing, .faq-section, .value-section {
        margin: 40px auto;
        padding: 0 10px;
    }

    /* Cards padding shrinkage */
    .benefit-card, .test-card, .chat-container, .support-card, .legal-container {
        padding: 20px 15px;
    }

    .benefit-card h3 {
        font-size: 1.2rem;
    }

    .benefit-card p, .test-card p {
        font-size: 0.85rem;
    }

    /* Store Grid - Poziomy Slider (Swipe) */
    .store-grid {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        gap: 20px; 
        padding: 10px;
        padding-bottom: 25px; /* miejsce na ewentualny pasek */
    }

    .store-grid::-webkit-scrollbar {
        display: none; /* Czysty wygląd bez systemowego paska */
    }

    .store-card {
        min-width: 85%;
        max-width: 85%;
        scroll-snap-align: center;
        margin: 0;
        padding: 20px 15px;
    }

    .card-header h4 {
        font-size: 1.1rem;
    }

    .store-card .price {
        font-size: 1.3rem;
    }

    .features li {
        font-size: 0.8rem;
    }

    /* Testimonial Slider Fix */
    .carousel-viewport {
        overflow-x: hidden;
        width: 100%;
    }

    .test-card {
        min-width: 100%;
        max-width: 100%;
        margin-right: 0;
    }

    .carousel-btn {
        display: none;
    }

    .legal-section {
        padding: 0 10px;
        margin-top: 100px;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .footer-links a {
        font-size: 0.8rem;
    }

    .footer-bottom {
        font-size: 0.7rem;
    }

    .support-card h1 {
        font-size: 1.4rem;
        white-space: normal;
    }
}