:root {
    --primary: #f59e0b;
    --primary-glow: rgba(245, 158, 11, 0.5);
    --bg-dark: #120d0b;
    --sidebar-bg: #1c1412;
    --card-bg: #2a1f1c;
    --text-main: #fef3c7;
    --text-muted: #a8a29e;
    --border: rgba(245, 158, 11, 0.1);
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    user-select: none;
}

.glow-bg {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% -20%, #3d2b26 0%, #120d0b 80%);
    z-index: -1;
    pointer-events: none;
}

.content-area {
    position: relative; z-index: 10;
    max-width: 1200px; margin: 0 auto; padding: 80px 20px;
}

/* HERO */
.hero-section { text-align: center; margin-bottom: 60px; }
.tagline { font-size: 0.7rem; font-weight: 800; letter-spacing: 4px; color: var(--primary); margin-bottom: 15px; }
h1 { font-size: clamp(2.5rem, 8vw, 5rem); font-weight: 800; color: #fff; letter-spacing: -2px; line-height: 1.1; }
.hero-subtitle { color: var(--text-muted); font-size: 1.1rem; margin-top: 20px; max-width: 700px; margin-inline: auto; }

/* MARQUEE */
.marquee-container {
    margin: 80px 0;
    display: flex; flex-direction: column; gap: 20px;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.marquee-row { display: flex; overflow: hidden; width: 100%; }
.marquee-content { display: flex; gap: 20px; animation: scroll 40s linear infinite; }
.reverse .marquee-content { animation: scroll-reverse 40s linear infinite; }
.topic-card {
    background: var(--sidebar-bg); border: 1px solid var(--border);
    padding: 20px 45px; border-radius: 12px;
    white-space: nowrap; font-weight: 700; font-size: 1.1rem;
    color: var(--text-main); box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes scroll-reverse { from { transform: translateX(-50%); } to { transform: translateX(0); } }

/* STRATEGIJA */
.guide-section {
    background: var(--sidebar-bg); border: 1px solid var(--border);
    border-radius: 24px; padding: 50px; margin: 80px 0;
}
.guide-content { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: center; }
.guide-text h2 { font-size: 2.5rem; color: #fff; margin-bottom: 15px; }
.guide-text p { color: var(--text-muted); margin-bottom: 15px; }
.guide-visual { display: flex; align-items: center; gap: 15px; }
.visual-box {
    background: var(--card-bg); border: 1px solid var(--primary);
    padding: 25px; border-radius: 12px; font-weight: 800; color: var(--primary);
    flex: 1; text-align: center;
}
.visual-box.plus { background: transparent; border: none; font-size: 2rem; flex: 0; padding: 0; }

/* FREE CTA BOX */
.player-wrapper {
    background: var(--sidebar-bg); padding: 60px 40px; border-radius: 24px;
    border: 1px dashed var(--primary); margin-bottom: 100px; text-align: center;
}
.free-cta-box h2 { font-size: 2.2rem; color: #fff; margin: 15px 0; }
.free-cta-box p { color: var(--text-muted); margin-bottom: 30px; font-size: 1.1rem; }

/* PRICING GRID */
.pricing-section { position: relative; padding: 40px 0; }
.section-title { font-size: 2.8rem; text-align: center; margin-bottom: 50px; color: #fff; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; align-items: stretch; }

.pricing-card {
    background: rgba(42, 31, 28, 0.4); backdrop-filter: blur(10px);
    border: 1px solid var(--border); border-radius: 24px; 
    display: flex; flex-direction: column;
}
.card-inner { padding: 45px 35px; text-align: center; flex-grow: 1; display: flex; flex-direction: column; }
.p-card-header { flex-grow: 1; }
.p-card-action { margin-top: auto; padding-top: 20px; }

.pricing-card.featured { border: 2px solid var(--primary); background: rgba(28, 20, 18, 0.9); transform: scale(1.05); z-index: 5; }

/* DUGMAD */
.btn-glow, .button { transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); display: block; width: 100%; text-decoration: none; }
.btn-glow {
    padding: 18px; background: transparent; color: #fff; border: none;
    position: relative; font-weight: 800; cursor: pointer; text-align: center;
}
.btn-glow::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; padding: 2px;
    background: linear-gradient(90deg, #fee084, #f59e0b);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude; border-radius: 4px;
}
.btn-glow:hover { transform: scale(1.05); box-shadow: 0 0 35px var(--primary-glow); }

.button {
    background: linear-gradient(135deg, #ffcf23, #ff8d3a);
    padding: 1.5px; border: none; cursor: pointer; border-radius: 4px;
}
.button_text { background: #1c1412; color: #fff; display: block; padding: 16px; font-weight: 700; border-radius: 3px; }
.button:hover { transform: scale(1.05); box-shadow: 0 0 25px rgba(245, 158, 11, 0.2); }

.price { font-size: 3.2rem; font-weight: 800; color: #fff; margin: 10px 0; }
.price span { font-size: 1rem; color: var(--text-muted); }

/* PARCIJALNE KARTICE - FIX */
.partial-pricing { margin-top: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.partial-card { 
    background: rgba(28, 20, 18, 0.6); border: 1px solid var(--border); 
    padding: 30px; border-radius: 20px; display: flex; flex-direction: column; gap: 20px;
}
.p-header { display: flex; justify-content: space-between; align-items: flex-start; }
.p-header h4 { font-size: 1.2rem; color: #fff; }
.p-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(245, 158, 11, 0.1); padding-top: 15px; }
.p-price { color: #fff; font-size: 1.3rem; font-weight: 800; }

.btn-preorder { 
    color: var(--primary) !important; text-decoration: none; font-weight: 800; 
    border-bottom: 2px solid var(--primary); font-size: 0.8rem; transition: 0.3s;
}
.btn-preorder:hover { color: #fff !important; border-bottom-color: #fff; }

/* MODAL */
.modal-overlay {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.9); z-index: 9999; backdrop-filter: blur(8px);
    align-items: center; justify-content: center;
}
.modal-container { position: relative; max-width: 500px; width: 90%; text-align: center; }
.modal-img { width: 100%; border-radius: 10px; box-shadow: 0 0 30px rgba(0,0,0,0.5); }
.close-modal { position: absolute; top: -50px; right: 0; color: #fff; font-size: 40px; cursor: pointer; }

/* BADGES */
.small-badge { color: var(--primary); font-size: 0.7rem; font-weight: 800; letter-spacing: 2px; margin-bottom: 10px; display: block; }
.preorder-badge { background: var(--primary); color: #000; font-size: 0.65rem; font-weight: 800; padding: 4px 12px; border-radius: 20px; margin-bottom: 15px; display: inline-block; }
.status-badge { color: var(--primary); font-size: 0.65rem; font-weight: 800; border: 1px solid var(--border); padding: 4px 12px; border-radius: 20px; display: inline-block; }

/* Nova, moderna zelena boja za tvoj dizajn */
:root {
    --wa-green: #22c55e;
    --wa-green-soft: rgba(34, 197, 94, 0.1);
}

.wa-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    color: var(--wa-green); /* Čista, moderna zelena */
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    padding: 12px 24px;
    border: 1.5px solid var(--wa-green-soft);
    background: var(--wa-green-soft);
    border-radius: 4px; /* Prati tvoj oštri stil */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.wa-link i {
    font-size: 1.3rem;
}

.wa-link:hover {
    background: var(--wa-green);
    color: #120d0b; /* Tekst postaje taman na zelenoj pozadini */
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
    transform: translateY(-2px);
}

.wa-link:active {
    transform: translateY(0);
}

@media (max-width: 900px) {
    .partial-pricing { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
}

.reveal { opacity: 1; transform: translateY(0); transition: 0.8s ease-out; }
.main-footer { margin-top: 100px; padding: 40px; text-align: center; color: #444; border-top: 1px solid var(--border); }

@media (max-width: 768px) {
    /* Menjamo raspored cele sekcije da tekst bude iznad, a vizual ispod */
    .guide-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    /* Redjamo kutije jednu ispod druge */
    .guide-visual {
        flex-direction: column;
        width: 100%;
    }

    /* Širimo kutije da zauzmu punu širinu na mobilnom */
    .visual-box {
        width: 100%;
        padding: 20px;
    }

    /* Smanjujemo razmak oko plusića */
    .visual-box.plus {
        padding: 5px;
        font-size: 1.5rem;
    }
}