@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    font-family: 'Poppins', sans-serif;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    background-color: black;
    color: white;
}

span {
    color: #ffa44b;
}

.aero-ultra {
    color: #ffe553;
}

/* ---------- Mini Header ---------- */
.gs-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 6%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    border-bottom: 1px solid #1a1a1a;
}

.gs-header .logo img {
    height: 45px;
    cursor: pointer;
    transition: 0.5s ease;
}

.gs-header .logo img:hover {
    transform: scale(1.08);
}

.gs-header-right {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.gs-home-link {
    font-size: 1.4rem;
    color: #a0aabf;
    font-weight: 500;
    transition: 0.3s ease;
}

.gs-home-link:hover {
    color: #ffa44b;
}

/* ---------- Layout ---------- */
.gs-main {
    min-height: 100vh;
    padding: 13rem 9% 6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gs-container {
    max-width: 880px;
    width: 100%;
    text-align: center;
}

.gs-kicker {
    display: inline-block;
    font-size: 1.3rem;
    letter-spacing: 0.3rem;
    font-weight: 600;
    color: #ffa44b;
    background: rgba(255, 164, 75, 0.1);
    border: 1px solid rgba(255, 164, 75, 0.4);
    padding: 0.6rem 1.8rem;
    border-radius: 4rem;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
}

.gs-container h1 {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 2.5rem;
}

.gs-lead {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 1.8rem;
    color: white;
}

.gs-body {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #c3cadb;
    max-width: 720px;
    margin: 0 auto 1.8rem;
}

/* ---------- Video embed ---------- */
.video-frame {
    width: 100%;
    max-width: 640px;
    aspect-ratio: 16 / 9;
    margin: 3rem auto;
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
    background: #0a0a0a;
    border: 2px solid var(--glow-color, #ffa44b);
    animation: videoGlow 3s ease-in-out infinite;
}

.video-frame iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    background: radial-gradient(circle at center, #161616, #0a0a0a);
}

.video-placeholder i {
    font-size: 5rem;
    color: var(--glow-color, #ffa44b);
    opacity: 0.9;
}

.video-placeholder span {
    font-size: 1.3rem;
    letter-spacing: 0.1rem;
    color: #7a8296;
    text-transform: uppercase;
    text-align: center;
    padding: 0 2rem;
}

@keyframes videoGlow {
    0%, 100% {
        box-shadow: 0 0 25px var(--glow-color, #ffa44b), 0 0 55px var(--glow-shadow, rgba(255, 164, 75, 0.35));
    }
    50% {
        box-shadow: 0 0 40px var(--glow-color, #ffa44b), 0 0 85px var(--glow-shadow, rgba(255, 164, 75, 0.5));
    }
}

body.theme-light .video-placeholder {
    background: radial-gradient(circle at center, #eee, #ddd);
}

/* ---------- Progress ---------- */
.progress-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 3.5rem 0;
}

.progress-dot {
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    background-color: #2a2a2a;
    border: 2px solid #333;
    transition: 0.3s ease;
}

.progress-line {
    width: 3.5rem;
    height: 2px;
    background-color: #2a2a2a;
}

.progress-dot.done {
    background-color: #ffa44b;
    border-color: #ffa44b;
}

.progress-line.done {
    background-color: #ffa44b;
}

.progress-dot.active {
    background-color: black;
    border-color: #ffa44b;
    box-shadow: 0 0 12px #ffa44b;
    transform: scale(1.3);
}

.progress-caption {
    font-size: 1.3rem;
    color: #7a8296;
    letter-spacing: 0.1rem;
    margin-bottom: 4rem;
}

/* ---------- Stat cards ---------- */
.stat-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 3.5rem 0;
}

.stat-card {
    background: #111;
    border: 1px solid #262626;
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    width: 220px;
    transition: 0.3s ease;
}

.stat-card:hover {
    border-color: var(--stat-color, #0ed36f);
    box-shadow: 0 0 20px var(--stat-shadow, rgba(14, 211, 111, 0.2));
    transform: translateY(-6px);
}

.stat-card .stat-number {
    font-size: 3.4rem;
    font-weight: 700;
    color: var(--stat-color, #0ed36f);
    margin-bottom: 0.6rem;
}

.stat-card .stat-label {
    font-size: 1.4rem;
    color: #a0aabf;
    line-height: 1.5;
}

/* ---------- Review / testimonial boxes ---------- */
.gs-review-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin: 3rem 0;
    text-align: left;
}

.review-box {
    background: #161616;
    padding: 2.2rem 2.5rem;
    border-radius: 1rem;
    border-left: 4px solid #ffa44b;
    max-width: 380px;
    flex: 1 1 320px;
}

.review-author {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffa44b;
    margin-bottom: 0.6rem;
}

.review-text {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #c3cadb;
}

/* ---------- Steps list (redeem page) ---------- */
.steps-list {
    text-align: left;
    max-width: 720px;
    margin: 3.5rem auto;
}

.step-item {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid #1e1e1e;
}

.step-item:last-child {
    border-bottom: none;
}

.step-num {
    flex-shrink: 0;
    width: 4.4rem;
    height: 4.4rem;
    border-radius: 50%;
    background: rgba(72, 209, 204, 0.1);
    border: 2px solid #48d1cc;
    color: #48d1cc;
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-content h3 {
    font-size: 1.9rem;
    margin-bottom: 0.6rem;
    color: white;
}

.step-content p {
    font-size: 1.5rem;
    line-height: 1.7;
    color: #a0aabf;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: black;
    border-radius: 4rem;
    font-size: 1.6rem;
    color: #ffa44b;
    letter-spacing: 0.2rem;
    font-weight: 600;
    border: 2px solid #ffa44b;
    transition: 0.3s ease;
    cursor: pointer;
}

.btn:hover {
    transform: scale3d(1.03, 1.03, 1.03);
    background-color: #ffa44b;
    color: black;
    box-shadow: 0 0 25px #ffa44b;
}

.btn-ghost {
    background: transparent;
    color: #7a8296;
    border-color: #333;
}

.btn-ghost:hover {
    background: transparent;
    color: white;
    border-color: #666;
    box-shadow: none;
    transform: none;
}

.btn-discord {
    color: white;
    border-color: #5865F2;
}

.btn-discord:hover {
    background-color: #4752c4;
    border-color: #4752c4;
    color: white;
    box-shadow: 0 0 25px rgba(88, 101, 242, 0.5);
}

#keep-going-btn {
    border-color: #0ed36f;
    color: #0ed36f;
}

#keep-going-btn:hover {
    background-color: #0ed36f !important;
    color: white !important;
    box-shadow: 0 0 25px #0ed36f !important;
}

.btn-subtle-home {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #666666;
    font-size: 1.3rem;
    padding: 0.6rem 1.6rem;
    border-radius: 4rem;
    text-decoration: none;
    display: inline-block;
    transition: color 0.2s ease, border-color 0.2s ease;
    margin-top: 0.8rem;
}

.btn-subtle-home:hover {
    color: #888888;
    border-color: rgba(255, 255, 255, 0.3);
}

body.theme-light .btn-subtle-home {
    border-color: rgba(0, 0, 0, 0.15);
    color: #999999;
}

body.theme-light .btn-subtle-home:hover {
    color: #666666;
    border-color: rgba(0, 0, 0, 0.3);
}


.cta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.gs-nav-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

/* ---------- Pricing cards (reused pattern) ---------- */
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
    margin: 3.5rem 0;
}

.card {
    background: #111;
    border: 1px solid var(--card-color, #ffa44b);
    border-radius: 1.5rem;
    padding: 3rem;
    width: 280px;
    text-align: center;
    box-shadow: 0 0 10px var(--card-shadow, rgba(255, 177, 75, 0.2));
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s ease;
}

.card h3 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: var(--card-color, #ffa44b);
}

.card .price {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--card-color, #ffa44b);
    margin-bottom: 1rem;
}

.card p {
    font-size: 1.4rem;
    flex-grow: 1;
    color: #c3cadb;
}

.card .btn {
    color: var(--card-color, #ffa44b);
    border-color: var(--card-color, #ffa44b);
    margin-top: 0;
}

.card .btn:hover {
    background-color: var(--card-color, #ffa44b);
    color: black;
    box-shadow: 0 0 25px var(--card-color, #ffa44b);
}

.card:hover {
    transform: translateY(-10px);
    background-color: var(--card-color, #ffa44b);
    box-shadow: 0 10px 25px var(--card-shadow, rgba(255, 177, 75, 0.4));
}

.card:hover h3,
.card:hover p {
    color: #111 !important;
}

.card:hover .btn {
    background-color: #111;
    color: var(--card-color, #ffa44b);
    border-color: #111;
}

.card-btn-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1rem;
    margin-top: auto;
    padding-top: 2rem;
}

/* ---------- Urgency box (back page) ---------- */
.urgency-box {
    background: linear-gradient(145deg, #1a0f0f, #111);
    border: 1px solid #f06363;
    border-radius: 1.5rem;
    padding: 3rem;
    margin: 3rem 0;
    text-align: left;
}

.urgency-quote {
    font-size: 1.9rem;
    font-style: italic;
    color: #f0a0a0;
    margin-bottom: 1.5rem;
}

.urgency-stat {
    display: inline-block;
    color: #f06363;
    font-weight: 700;
}

/* ---------- Redirect popup (from store) ---------- */
#youtube-redirect-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#youtube-redirect-popup .popup-box {
    background: #111;
    padding: 4rem;
    border-radius: 1.5rem;
    border: 1px solid #ffa44b;
    max-width: 600px;
    margin: 0 2rem;
    box-shadow: 0 0 25px rgba(255, 164, 75, 0.2);
}

/* ---------- Footer (slim) ---------- */
.gs-footer {
    text-align: center;
    padding: 4rem 9% 3rem;
    border-top: 1px solid #1a1a1a;
    background-color: #050505;
}

.gs-footer img {
    max-width: 340px;
    width: 60%;
    height: auto;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.gs-footer-links {
    font-size: 1.3rem;
    color: #6b7386;
}

.gs-footer-links a {
    color: #6b7386;
    transition: 0.3s ease;
}

.gs-footer-links a:hover {
    color: #ffa44b;
}

.gs-footer-links span.sep {
    margin: 0 0.8rem;
    color: #333;
}

/* ---------- Theme switch ---------- */
.theme-switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 30px;
}

.theme-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #1a1a1a;
    border: 1px solid #333;
    transition: .4s;
    border-radius: 34px;
}

.switch-icon-container {
    position: absolute;
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background-color: #333;
    transition: .4s;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #a0aabf;
    font-size: 1.2rem;
}

.theme-switch input:checked + .switch-slider .switch-icon-container {
    transform: translateX(22px);
}

.switch-slider .fa-sun { display: none; }
.theme-switch input:checked + .switch-slider .fa-moon { display: none; }
.theme-switch input:checked + .switch-slider .fa-sun { display: block; }

/* ---------- Light theme ---------- */
body.theme-light {
    background-color: white;
    color: black;
}

body.theme-light .gs-header {
    background-color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid #eee;
}

body.theme-light .gs-lead {
    color: #111;
}

body.theme-light .gs-body {
    color: #444;
}

body.theme-light .btn {
    background-color: white;
}

body.theme-light .stat-card,
body.theme-light .review-box,
body.theme-light .card {
    background: #f7f7f7;
}

body.theme-light .step-content h3 {
    color: #111;
}

body.theme-light .step-content p {
    color: #555;
}

body.theme-light .step-item {
    border-bottom-color: #eee;
}

body.theme-light .urgency-box {
    background: linear-gradient(145deg, #fff0f0, #fff);
}

body.theme-light .gs-footer {
    background-color: white;
    border-top: 1px solid #eee;
}

body.theme-light #youtube-redirect-popup .popup-box {
    background: white;
    border-color: #ffa44b;
}

/* ---------- Responsive ---------- */
@media (max-width: 700px) {
    .gs-container h1 {
        font-size: 3.4rem;
    }

    .gs-lead {
        font-size: 1.8rem;
    }

    .gs-main {
        padding: 11rem 6% 5rem;
    }

    .progress-line {
        width: 2rem;
    }

    .step-item {
        gap: 1.4rem;
    }
}