/* =========================================
   VARIABLES & SETUP
========================================= */
:root {
    /* Colors */
    --bg-dark: #0a0a0a;
    --bg-navy: #0a192f;
    --color-text: #ffffff;
    --color-text-muted: #a0aec0;

    --neon-red: #ff003c;
    --neon-red-glow: rgba(255, 0, 60, 0.6);
    --gold: #ffd700;
    --gold-glow: rgba(255, 215, 0, 0.4);

    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);

    /* Fonts */
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    background-image: linear-gradient(rgba(10, 10, 10, 0.4), rgba(10, 10, 10, 0.6)), url('./assets/bg_field.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--color-text);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
    max-width: 480px;
    /* Mobile First, cap at mobile size for landing page feel */
}

.usp-section .container {
    max-width: 960px;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.highlight-gold {
    color: var(--gold);
}

.highlight-red {
    color: var(--neon-red);
}

/* =========================================
   BUTTONS
========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--neon-red), #c4002d);
    color: white;
    box-shadow: 0 4px 15px var(--neon-red-glow);
}

.btn-primary:active {
    transform: scale(0.98);
}

.pulse-effect {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 var(--neon-red-glow);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 0, 60, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 60, 0);
    }
}

/* =========================================
   SOCIAL PROOF TICKER
========================================= */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background-color: var(--neon-red);
    color: white;
    padding: 8px 0;
    white-space: nowrap;
}

.ticker {
    display: inline-block;
    white-space: nowrap;
    padding-right: 100%;
    animation: ticker 15s linear infinite;
}

.ticker-item {
    display: inline-block;
    padding: 0 20px;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: var(--font-heading);
}

.ticker-item i {
    margin-right: 5px;
    color: var(--gold);
}

@keyframes ticker {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

/* =========================================
   HERO SECTION
========================================= */
.hero-section {
    position: relative;
    padding: 40px 0 60px;
    background: transparent;
    text-align: center;
}

.subtitle {
    font-size: 0.9rem;
    color: var(--gold);
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.main-title {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 30px;
}

.hero-image-wrapper {
    position: relative;
    margin: 0 auto 40px;
    width: 80%;
    max-width: 300px;
}

.magazine-cover {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 2;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: var(--gold);
    filter: blur(60px);
    opacity: 0.3;
    z-index: 1;
    border-radius: 50%;
}

.cta-wrapper {
    position: relative;
    z-index: 3;
}

/* =========================================
   USP SECTION
========================================= */
.usp-section {

    padding: 50px 0;

    background-color: transparent;

}



.section-title {

    text-align: center;

    font-size: 1.8rem;

    margin-bottom: 30px;

}



.usp-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}



.usp-card {
    flex: 1 1 0;
    min-width: 0;
    max-width: calc(33.333% - 14px);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 14px 10px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 90% 100%, 0 100%);
}



.usp-card::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    width: 4px;

    height: 100%;

    background: var(--gold);

}



.usp-card:nth-child(2)::before {

    background: var(--neon-red);

}



.card-icon {

    font-size: 2rem;

    color: var(--gold);

    margin-bottom: 15px;

}



.usp-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    line-height: 1.5;
}



.usp-card p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* =========================================
   AUDIENCE SECTION
========================================= */
.audience-section {
    padding: 50px 0;
}

.audience-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.audience-card {
    display: flex;
    align-items: center;
    gap: 16px;

    background: var(--glass-bg);
    border: 1px solid var(--glass-border);

    padding: 20px;
    border-radius: 12px;

    transition: transform 0.3s ease,
        border-color 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-3px);
    border-color: var(--gold);
}

.audience-icon {
    width: 52px;
    height: 52px;

    min-width: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 215, 0, 0.1);

    color: var(--gold);

    font-size: 1.3rem;
}

.audience-card p {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--color-text);
}

/* =========================================
   INTERACTIVE MAGAZINE SLIDER
========================================= */
.magazine-inside {
    padding: 50px 0;
    background: transparent;
}

.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.slider {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.slide {
    width: 100%;
    flex-shrink: 0;
    object-fit: cover;
}

.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 10px;
}

.control-btn {
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(4px);
}

/* =========================================
   OFFER & SCARCITY
========================================= */
.offer-section {
    padding: 50px 0;
    text-align: center;
}

.offer-box {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 30px 20px;
    border-radius: 12px;
}

.offer-title {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.price-tag {
    font-size: 2.8rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--neon-red);
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(255, 0, 60, 0.3);
}

.shipping-note {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.scarcity-box {
    background: rgba(0, 0, 0, 0.4);
    padding: 20px;
    border-radius: 8px;
    border-top: 2px solid var(--gold);
}

.scarcity-box p {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-value {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    background: #1a1a1a;
    padding: 8px 12px;
    border-radius: 6px;
    min-width: 50px;
    border: 1px solid #333;
}

.time-label {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    margin-top: 5px;
    text-transform: uppercase;
}

.colon {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

/* =========================================
   FAQ
========================================= */
.faq-section {
    padding: 50px 0 80px;
    /* extra bottom padding for sticky footer */
    background-color: transparent;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    overflow: hidden;
}

.faq-item summary {
    padding: 16px 20px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    list-style: none;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '\f067';
    /* FontAwesome Plus */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item[open] summary {
    border-bottom: 1px solid var(--glass-border);
}

.faq-content {
    padding: 16px 20px;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.payment-partners {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 2.5rem;
    color: var(--color-text-muted);
}

.contact-info {
    margin-top: 30px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 10px;
    text-align: center;
}

.contact-info p {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.contact-info p i {
    color: var(--gold);
    margin-right: 6px;
}

.contact-info a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.contact-info a:hover {
    color: #fff;
}

/* =========================================
   STICKY FOOTER
========================================= */
.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--glass-border);
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.sticky-footer.visible {
    transform: translateY(0);
}

.sticky-price .s-price {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 700;
}

.sticky-footer .btn {
    width: auto;
    padding: 12px 24px;
    font-size: 1rem;
}

.sticky-hotline {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
}

.sticky-hotline a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.25s ease;
}

.sticky-hotline a:hover {
    color: var(--neon-red);
}

.sticky-hotline i {
    color: var(--gold);
    margin-right: 2px;
}


@media (max-width: 480px) {
    .sticky-footer {
        padding: 10px 12px;
        gap: 8px;
    }
    .sticky-price .s-price {
        font-size: 1.05rem;
    }
    .sticky-hotline {
        font-size: 0.85rem;
        gap: 4px;
    }
    .sticky-footer .btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}


/* Media Query for slightly larger screens (tablets) */
@media (min-width: 481px) {
    .container {
        max-width: 600px;
    }
}

/* =========================================
   ORDER FORM
========================================= */
.order-form-section {
    padding: 20px 0 50px;
}

.form-box {
    background: rgba(10, 25, 47, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 30px 20px;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-row {
    display: flex;
    gap: 15px;
}

.half-width {
    flex: 1;
}

.form-group label {
    font-size: 0.9rem;
    color: var(--gold);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--neon-red);
    box-shadow: 0 0 8px var(--neon-red-glow);
}

.form-group select option {
    background: var(--bg-navy);
    color: white;
}

/* =========================================
   PAYMENT INFO BOX
========================================= */
.payment-info-box {
    margin: 20px 0;
    background: rgba(0, 30, 60, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 12px;
    overflow: hidden;
}

.payment-qr-only {
    margin: 20px 0;
    display: flex;
    justify-content: center;
}

.payment-qr-only img {
    width: min(260px, 90%);
    height: auto;
    display: block;
    border-radius: 10px;
    background: #fff;
    padding: 10px;
    border: 3px solid rgba(212, 175, 55, 0.6);
    object-fit: contain;
}

.payment-info-title {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 1rem;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    letter-spacing: 0.5px;
}

.payment-info-title i {
    margin-right: 8px;
}

.payment-info-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 16px;
}

.payment-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.payment-text p {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.payment-text p span {
    color: var(--gold);
    font-weight: 600;
}

.payment-note {
    margin-top: 6px;
    padding: 8px 10px;
    background: rgba(255, 0, 60, 0.1);
    border-left: 3px solid var(--neon-red);
    border-radius: 4px;
    color: var(--color-text) !important;
    font-size: 0.85rem !important;
}

.payment-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.payment-qr img {
    width: min(220px, 80%);
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    border: 3px solid rgba(212, 175, 55, 0.6);
    background: #fff;
    padding: 8px;
    display: block;
}

.payment-qr p {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    text-align: center;
}

/* =========================================
   PAYMENT STATUS RADIO
========================================= */
.payment-status-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 4px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
    font-size: 1rem;
    color: var(--color-text-muted);
    position: relative;
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.35);
    background: transparent;
    transition: border-color 0.25s, background 0.25s;
    display: inline-block;
    position: relative;
}

.radio-custom::after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--neon-red);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.radio-option input[type="radio"]:checked ~ .radio-custom {
    border-color: var(--neon-red);
}

.radio-option input[type="radio"]:checked ~ .radio-custom::after {
    transform: translate(-50%, -50%) scale(1);
}

/* Paid option */
#paid:checked ~ .radio-custom { border-color: #22c55e; }
#paid:checked ~ .radio-custom::after { background: #22c55e; }

.radio-option:has(#paid:checked) {
    border-color: #22c55e;
    background: rgba(34, 197, 94, 0.08);
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.radio-option:has(#paid:checked) i {
    color: #22c55e;
}

/* Not paid option */
.radio-option:has(#notPaid:checked) {
    border-color: var(--gold);
    background: rgba(255, 215, 0, 0.07);
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.15);
    color: var(--gold);
}

.radio-option:has(#notPaid:checked) i {
    color: var(--gold);
}

#notPaid:checked ~ .radio-custom { border-color: var(--gold); }
#notPaid:checked ~ .radio-custom::after { background: var(--gold); }

.radio-option:hover {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.05);
}

.radio-option i {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    transition: color 0.25s;
}