:root {
    --bg-color: #111111;
    --gold: #c2912e;
    --text-primary: #F3EFE0;
    --text-muted: #888888;
}

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

::selection {
    background-color: var(--gold);
    color: #111;
}

::-moz-selection {
    background-color: var(--gold);
    color: #111;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, .logo, .footer-logo {
    font-family: 'Outfit', sans-serif;
}

/* Password Overlay */
body.locked {
    overflow: hidden;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile CTA (Hidden on Desktop) */
.mobile-sticky-cta {
    display: none;
}

#main-content {
    transition: filter 0.5s, opacity 0.5s;
}

body.locked #main-content {
    filter: blur(10px);
    opacity: 0.2;
    pointer-events: none;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s;
}

.overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.overlay-content {
    background: #111;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--gold);
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.overlay-content h2 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.overlay-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.overlay-content input {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    background: #1a1a1a;
    border: 1px solid #333;
    color: white;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
}

.overlay-content input:focus {
    outline: none;
    border-color: var(--gold);
}

.overlay-content .btn-primary {
    width: 100%;
}

.error {
    color: #ff4444 !important;
    margin-top: 1rem;
    margin-bottom: 0 !important;
    font-size: 0.9rem;
}
.error.hidden {
    display: none;
}

.hidden {
    display: none !important;
}

.hint {
    margin-top: 1rem;
    font-size: 0.8rem;
    opacity: 0.5;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(197, 160, 89, 0.1);
    color: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 100;
    color: var(--gold);
}

.logo-svg {
    width: 19px;
    height: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    letter-spacing: 5px;
}

.logo-brand {
    font-size: 1.4rem;
    font-weight: 300;
}

.logo-sub {
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 7px;
    opacity: 0.9;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

.btn-outline {
    border: 1px solid var(--gold);
    color: var(--gold);
    background: transparent;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    min-height: 100vh;
    padding: 0 5%;
    padding-top: 100px;
    background: radial-gradient(circle at top left, #1a1a1a 0%, var(--bg-color) 70%);
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding-right: 2rem;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.25;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #F3EFE0, var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.cta-group {
    display: flex;
    gap: 1rem;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--bg-color);
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn-secondary:hover {
    background-color: rgba(197, 160, 89, 0.1);
}

.hero-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    perspective: 1000px;
    position: relative;
}

.roasted-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(216, 187, 130, 0.68);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #111;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    z-index: 10;
    transform: rotate(3deg);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

.image-mask {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
    display: inline-block;
}

.pan-zoom {
    animation: kenBurns 12s ease-in-out infinite alternate;
    transform-origin: center center;
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.08) translate(-1%, 1%);    }
}

/* Creator Promo Card */
.creator-promo-card {
    cursor: pointer;
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #333;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    min-height: 120px;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.3s;
    background: #111;
}

.creator-promo-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(194, 145, 46, 0.15);
}

.creator-promo-card .promo-img-container {
    width: 35%;
    position: relative;
    overflow: hidden;
    border-right: 1px solid #333;
}

.creator-promo-card .promo-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 1;
    transition: transform 0.5s ease;
}

.creator-promo-card:hover .promo-bg {
    transform: scale(1.05);
}

.creator-promo-card .promo-content {
    width: 65%;
    position: relative;
    z-index: 2;
    padding: 1.5rem;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.promo-content h3 {
    color: var(--gold);
    margin-bottom: 0.25rem;
    font-size: 1.4rem;
}

.promo-content p {
    color: #ddd;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.promo-btn {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    font-weight: 800;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: all 0.3s;
    min-width: 130px;
    text-align: center;
}

.creator-promo-card:hover .promo-btn {
    background: var(--gold);
    color: #111;
}

/* About Section */
.about-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5rem 5%;
    background-color: #0a0a0a;
    gap: 4rem;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.about-text ul {
    list-style: none;
    padding: 0;
}

.about-text ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-primary);
}

.about-text ul li::before {
    content: '•';
    color: var(--gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.about-stats {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    min-width: 300px;
    max-width: 600px;
}

/* Features (used in about-stats) */
.feature-card {
    flex: 0 0 calc(50% - 0.5rem);
    background-color: #111;
    position: relative;
    padding: 1.25rem;
    border-radius: 12px;
    border: 1px solid #333;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    cursor: pointer;
}

.feature-card .feature-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
}

.feature-card:hover .feature-bg {
    transform: scale(1.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

.feature-card h3, .feature-card p {
    position: relative;
    z-index: 2;
}

.feature-card h3 {
    color: var(--gold);
    margin-bottom: 0.25rem;
    font-size: 1.25rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.feature-card p {
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 0;
    text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}


/* Mission Section */
.mission-section {
    padding: 5rem 5%;
    background-color: var(--bg-color);
    text-align: center;
}

.mission-section h2 {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.mission-section p {
    max-width: 800px;
    margin: 0 auto 3rem auto;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.step {
    display: flex;
    flex-direction: column;
    background: #141414;
    border-radius: 16px;
    border: 1px solid #222;
    overflow: hidden;
    text-align: left;
}

.step-image {
    width: 100%;
    height: 180px; /* fixed height for consistent look */
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.step-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.step-content h4 {
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

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

/* FAQ Section */
.faq-section {
    padding: 6rem 5%;
    background-color: #0d0d0d;
    border-top: 1px solid rgba(194, 145, 46, 0.2);
}

.faq-container {
    display: block;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-image {
    flex: 1;
    min-width: 300px;
    position: sticky;
    top: 100px;
}

.faq-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
    border: 1px solid #333;
}

.faq-contact {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #141414;
    border-radius: 8px;
    border: 1px solid #333;
    text-align: center;
}
.faq-contact h3 { color: var(--gold); margin-bottom: 0.5rem; }
.faq-contact p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1rem; }

.faq-content {
    max-width: 100%;
    margin: 0 auto;
    text-align: left;
}

.faq-content h2 {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.faq-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.faq-category {
    margin-bottom: 2.5rem;
}

.faq-category h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #333;
    padding-bottom: 0.5rem;
}

.faq-item {
    background: #141414;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--gold);
    margin-bottom: 1rem;
    transition: transform 0.3s, background 0.3s;
}

.faq-item:hover {
    background: #1a1a1a;
    transform: translateX(5px);
}

.faq-item h4 {
    color: #fff;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Testimonials */
.testimonials-section {
    padding: 5rem 5%;
    background-color: var(--bg-color);
    text-align: center;
}

.testimonials-section h2 {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.testimonials-section p {
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #141414;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #222;
    transition: transform 0.3s, border-color 0.3s;
    text-align: left;
}

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

.video-placeholder {
    position: relative;
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
}

.video-placeholder::after {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 4px 15px rgba(0,0,0,0.8);
    transition: color 0.3s, transform 0.3s;
}

.video-placeholder:hover::after {
    color: var(--gold);
    transform: translate(-50%, -50%) scale(1.1);
}

.testimonial-content {
    padding: 1.5rem;
}

.testimonial-content h4 {
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    min-height: 60px;
}

.btn-support {
    width: 100%;
    padding: 0.75rem;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s, color 0.3s;
    font-family: 'Inter', sans-serif;
}

.btn-support:hover {
    background: var(--gold);
    color: var(--bg-color);
}


/* FAQ Section */
.faq-section {
    padding: 5rem 5%;
    background-color: #0a0a0a;
}

.faq-section h2 {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: #141414;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--gold);
}

.faq-item h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.95rem;
}


/* Checkout Section */
.checkout-section {
    padding: 5rem 5%;
    background-color: var(--bg-color);
    text-align: center;
    border-top: 1px solid #222;
    min-height: 50vh;
}

.checkout-section h2 {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.checkout-section p {
    color: var(--text-muted);
}

.creator-selection {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

select {
    padding: 1rem;
    background: #1a1a1a;
    color: var(--text-primary);
    border: 1px solid var(--gold);
    border-radius: 4px;
    font-size: 1rem;
    min-width: 300px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

select:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(197, 160, 89, 0.5);
}

button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.creator-selection-card {
    background: #141414;
    border: 1px solid #333;
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    max-width: 1000px;
    margin: 0 auto 3rem auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.creator-selection-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #222;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.creator-selection-header h3 {
    color: var(--gold);
    margin: 0;
}

.browse-link {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: opacity 0.2s;
}

.browse-link:hover {
    opacity: 0.8;
}

.selection-methods {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.method-select, .method-input {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    flex: 1;
    min-width: 200px;
}

.method-select label, .method-input label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.method-or {
    font-weight: 800;
    color: var(--gold);
    font-size: 1.2rem;
    padding-top: 1.5rem;
}

#creator-code-input {
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #333;
    background-color: #111;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
}

#creator-code-input:focus {
    outline: none;
    border-color: var(--gold);
}

select {
    display: none; /* We are hiding the native select globally now if any remain */
}

.creator-cards-container {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 1rem 0;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) #111;
}

.creator-cards-container::-webkit-scrollbar {
    height: 8px;
}
.creator-cards-container::-webkit-scrollbar-track {
    background: #111; 
    border-radius: 4px;
}
.creator-cards-container::-webkit-scrollbar-thumb {
    background-color: var(--gold); 
    border-radius: 4px;
}

.creator-card {
    flex: 0 0 auto;
    width: 140px;
    background: #111;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.creator-card:hover {
    border-color: #666;
    transform: translateY(-2px);
}

.creator-card.selected {
    border-color: var(--gold);
    background: rgba(197, 160, 89, 0.1);
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.2);
}

.creator-card img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}

.creator-card.selected img {
    border-color: var(--gold);
}

.creator-card-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
}

/* Footer */
.footer {
    background: #050505;
    padding: 5rem 5% 2rem 5%;
    border-top: 1px solid #222;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 4rem auto;
}

.footer-col.brand-col p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    max-width: 300px;
}

.footer-logo {
    font-weight: 100;
    font-size: 2rem;
    color: var(--gold);
    letter-spacing: 5px;
    margin-bottom: 1.5rem;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #222;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Mobile responsive for footer */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Checkout Modal */
.checkout-modal-content {
    text-align: left;
    max-width: 800px;
}

.checkout-modal-content h2 {
    color: var(--gold);
    margin-bottom: 0.5rem;
    text-align: center;
}

.checkout-modal-content p {
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 1rem;
}

.modal-highlight {
    color: var(--text-primary) !important;
    font-weight: 600;
    background: rgba(197, 160, 89, 0.1);
    padding: 0.5rem;
    border-radius: 4px;
    border: 1px solid rgba(197, 160, 89, 0.3);
}

.terms-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 2rem 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.terms-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
    width: auto;
    cursor: pointer;
}

.modal-actions {
    display: flex;
    gap: 1rem;
}

.modal-actions button {
    flex: 1;
}

.video-modal-content {
    width: 90%;
    max-width: 800px;
    padding: 1rem;
    background: #0a0a0a;
}

.close-modal-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
}

.iframe-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

/* Pricing Options UI */
.pricing-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 1.5rem;
    border: 2px solid rgba(194, 145, 46, 0.2);
    border-radius: 12px;
    cursor: pointer;
    background: rgba(17, 17, 17, 0.5);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: rgba(194, 145, 46, 0.5);
}

.pricing-card.active {
    border-color: var(--gold);
    background: rgba(194, 145, 46, 0.1);
}

.pricing-card:not(.active) {
    opacity: 0.5;
    filter: grayscale(80%);
}

.pricing-card input[type="radio"] {
    accent-color: var(--gold);
    transform: scale(1.2);
}

.pricing-details h4 {
    margin: 0 0 0.5rem 0;
    color: var(--gold);
    font-size: 1.25rem;
}

.pricing-details p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.pricing-image {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
}

.pricing-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}


/* Final Creator Love Banner */
.creator-love-banner {
    background: linear-gradient(135deg, var(--gold) 0%, #aa8022 100%);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.creator-love-text {
    flex: 1 1 50%;
    min-width: 300px;
    padding: 5rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.creator-love-text h2 {
    color: #000;
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    line-height: 1.1;
}

.creator-love-text p {
    color: #111;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.creator-love-image {
    flex: 1 1 50%;
    min-width: 300px;
    line-height: 0;
}

.creator-love-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
}

/* -----------------------------
   Mobile Responsiveness
----------------------------- */
@media (max-width: 768px) {
    /* Adjust spacing */
    section {
        padding: 3rem 5%;
    }

    /* Navbar */
    .navbar {
        justify-content: center; /* Center the logo on mobile since nav-links are hidden */
    }
    .nav-links {
        display: none; /* simple hidden links for mobile prototype */
    }

    /* Hero Section */
    .hero {
        flex-direction: column-reverse;
        justify-content: center;
        text-align: center;
        padding-top: 120px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-image {
        margin-bottom: 2rem;
    }

    /* Pricing Cards Side-by-Side Mobile */
    .pricing-options {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    .pricing-card {
        padding: 0.75rem;
    }
    .pricing-details h4 {
        font-size: 0.95rem;
    }
    .pricing-details p {
        display: none; /* Hide description on mobile to save space */
    }

    .image-mask {
        max-height: 40vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-image img {
        height: 100%;
        width: auto;
        object-fit: cover;
    }

    .cta-group {
        justify-content: center;
        flex-direction: column;
    }

    /* About Section */
    .about-section {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .about-text ul li {
        text-align: left;
        display: inline-block;
        width: 100%;
    }

    /* FAQ Section */
    .faq-container {
        flex-direction: column;
        gap: 2rem;
    }
    .faq-image {
        position: static;
    }
    .faq-content {
        text-align: center;
    }
    .faq-category h3 {
        text-align: left;
    }
    .faq-item {
        text-align: left;
    }

    /* Checkout Modal */
    .checkout-modal-content {
        padding: 1.5rem;
    }
    .modal-actions {
        flex-direction: column;
    }

    /* Creator Promo Card Mobile */
    .creator-promo-card {
        flex-direction: column;
    }
    .creator-promo-card .promo-img-container {
        width: 100%;
        height: 150px;
        border-right: none;
        border-bottom: 1px solid #333;
    }
    .creator-promo-card .promo-content {
        width: 100%;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    /* Slick Mobile Additions */
    .mobile-sticky-cta {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 1rem;
        background: rgba(17, 17, 17, 0.9);
        backdrop-filter: blur(10px);
        z-index: 999;
        justify-content: center;
        border-top: 1px solid rgba(194, 145, 46, 0.2);
    }
    .mobile-sticky-cta .btn-primary {
        width: 100%;
        text-align: center;
    }

    /* Give footer padding so the sticky CTA doesn't cover it */
    .footer {
        padding-bottom: 80px;
    }

    /* Touch Targets */
    button, .btn-primary, .btn-secondary, .btn-outline {
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Horizontal Swipe Carousels */
    .testimonial-grid, .about-stats {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 1rem;
        gap: 1rem;
        -webkit-overflow-scrolling: touch;
        margin: 0 -5%;
        padding: 0 5%;
    }
    .testimonial-grid::-webkit-scrollbar, .about-stats::-webkit-scrollbar {
        display: none; /* Hide scrollbar for a cleaner look */
    }
    .testimonial-card, .feature-card {
        width: 85vw;
        max-width: 350px;
        scroll-snap-align: center;
        flex: 0 0 auto;
    }

    /* Stack Mission Steps vertically on mobile */
    .steps {
        grid-template-columns: 1fr;
    }
    .step-image {
        max-width: 100%;
        height: 200px;
    }
    .step-content {
        padding: 1.5rem;
    }

    /* Typography Scaling */
    h1 { font-size: 2.5rem !important; }
    h2 { font-size: 2rem !important; }
    .about-text h2, .mission-section h2, .faq-content h2, .testimonials-section h2, .checkout-section h2 {
        font-size: 2rem;
    }
    
    /* Creator Love Banner Mobile */
    .creator-love-banner {
        flex-direction: column;
    }
    .creator-love-text {
        padding: 3rem 1rem;
    }
    .creator-love-text h2 {
        font-size: 2.2rem;
    }
    .creator-love-text p {
        font-size: 1rem;
    }
    
    /* FAQ Creator Matrix Table Mobile Fix */
    .creator-matrix, .creator-matrix thead, .creator-matrix tbody, .creator-matrix th, .creator-matrix td, .creator-matrix tr {
        display: block;
        width: 100%;
    }
    .creator-matrix thead {
        display: none;
    }
    .creator-matrix tr {
        margin-bottom: 1.5rem;
        border: 1px solid #333;
        border-radius: 8px;
        background: #111;
        overflow: hidden;
    }
    .creator-matrix td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: right;
        padding: 0.75rem 1rem !important;
        border-bottom: 1px solid #222 !important;
    }
    .creator-matrix td::before {
        font-weight: bold;
        color: #fff;
        text-align: left;
        flex: 1;
        padding-right: 1rem;
    }
    .creator-matrix td:first-child {
        background: rgba(197, 160, 89, 0.1);
        text-align: left;
        color: var(--gold);
        font-size: 1.1rem;
        justify-content: center;
    }
    .creator-matrix td:nth-child(2)::before { content: "Standard Affiliate"; }
    .creator-matrix td:nth-child(3)::before { content: "White-Label Dropship"; }
    .creator-matrix td:nth-child(4)::before { content: "Full Custom Brand"; }
    .creator-matrix td:nth-child(5)::before { content: "GoldPool Ecosystem"; color: var(--gold); }
}

.error-shake {
    animation: shake 0.5s cubic-bezier(.36,.07,.19,.97) both;
    border-color: #ff3333 !important;
    background-color: rgba(255, 51, 51, 0.1) !important;
}

@keyframes shake {
    10%, 90% { transform: translate3d(-1px, 0, 0); }
    20%, 80% { transform: translate3d(2px, 0, 0); }
    30%, 50%, 70% { transform: translate3d(-4px, 0, 0); }
    40%, 60% { transform: translate3d(4px, 0, 0); }
}
