/* ============================================
   SPICIER.IO STYLESHEET
   Futuristic Minimal / Apple Vision Pro Aesthetic
   ============================================ */

:root {
    --primary-color: #ff6b00;
    --secondary-color: #1a1a1a;
    --background-color: #000000;
    --text-color: #ffffff;
    --accent-color: #ff4d4d;
    --card-bg: #1e1e1e;
    --gradient-start: rgba(0, 0, 0, 0.8);
    --gradient-end: rgba(0, 0, 0, 0.4);

    /* Glassmorphism variables */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.12);
}

/* ============================================
   GLOBAL STYLES
   ============================================ */

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

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    color: inherit;
}

/* ============================================
   HEADER
   ============================================ */

header {
    background-color: var(--background-color);
    padding: 1.5rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    z-index: 4;
    background: transparent;
    border-bottom: none;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-header .header-container {
    max-width: 100%;
    padding: 0;
}

.logo img {
    height: 45px;
    width: auto;
}

.create-account-btn {
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
}

.create-account-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.4);
    color: var(--text-color);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero--video {
    position: relative;
    width: 100vw;
    max-width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0;
    padding: 0;
    left: 0;
    right: 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    margin: 0;
    padding: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, var(--gradient-start), var(--gradient-end));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    padding-top: 6rem;
    color: var(--text-color);
}

.hero-content h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-transform: none;
}

.hero-subheadline {
    font-size: 1.4rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.8;
}

.hero-paragraph {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.8;
}

.main-cta-btn {
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 0.9rem 2rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.main-cta-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 0 25px rgba(255, 107, 0, 0.5);
    color: var(--text-color);
}

/* ============================================
   SECTIONS
   ============================================ */

section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.glass-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(255, 107, 0, 0.15),
                0 0 40px rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 107, 0, 0.3);
}

.feature-card {
    text-align: center;
}

.icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.icon {
    width: 28px;
    height: 28px;
    stroke-width: 1.5;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
}

.feature-card:hover .icon {
    color: #a855f7;
}

.feature-card:hover .icon-wrapper {
    background: rgba(168, 85, 247, 0.12);
}

.feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.feature-card p {
    opacity: 0.85;
    font-weight: 300;
    line-height: 1.7;
}

/* ============================================
   STEPS SECTION
   ============================================ */

.steps-container {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 2rem;
    right: -1.5rem;
    width: 3rem;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    opacity: 0.3;
}

.step-number {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.2);
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.step-content p {
    opacity: 0.85;
    font-weight: 300;
    line-height: 1.7;
}

/* ============================================
   CHARACTERS SECTION
   ============================================ */

.character-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.character-card-link {
    display: block;
    transition: transform 0.3s ease;
}

.character-card-link:hover {
    transform: translateY(-6px);
    color: inherit;
}

.character-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: relative;
}

.character-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 18px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.3), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.character-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 25px rgba(255, 107, 0, 0.25),
                0 8px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 107, 0, 0.4);
}

.character-card:hover::before {
    opacity: 1;
}

.card-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 10%;
    transition: transform 0.3s ease;
}

.character-card:hover .card-image img {
    transform: scale(1.05);
}

.exclusive-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--accent-color);
    color: var(--text-color);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.card-content p {
    opacity: 0.85;
    font-weight: 300;
    margin-bottom: 1.2rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.create-btn {
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.create-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.4);
}

/* ============================================
   MID PAGE CTA
   ============================================ */

.mid-page-cta {
    background: linear-gradient(135deg, var(--glass-bg), rgba(255, 107, 0, 0.05));
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 5rem 2rem;
    text-align: center;
}

.cta-container h2 {
    margin-bottom: 1rem;
}

.cta-container p {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-bottom: 2rem;
    font-weight: 300;
}

.section-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    opacity: 0.85;
    font-weight: 300;
    line-height: 1.8;
}

/* ============================================
   IMMERSIVE SECTION
   ============================================ */

.immersive-section {
    text-align: center;
}

.immersive-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.immersive-content p {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-bottom: 1.5rem;
    font-weight: 300;
    line-height: 1.8;
}

.immersive-content p:last-child {
    margin-bottom: 0;
}

/* ============================================
   INFO SECTIONS
   ============================================ */

.info-section {
    text-align: center;
}

.info-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.info-content p {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-bottom: 1.5rem;
    font-weight: 300;
    line-height: 1.8;
}

.info-content p:last-child {
    margin-bottom: 0;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */

.final-cta-section {
    background: linear-gradient(135deg, var(--glass-bg), rgba(255, 107, 0, 0.08));
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 5rem 2rem;
    text-align: center;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    padding: 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-top: 0;
}

.faq-item.active .faq-answer {
    padding-top: 1rem;
}

.faq-answer p {
    opacity: 0.85;
    font-weight: 300;
    line-height: 1.7;
    padding-right: 2rem;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background-color: var(--background-color);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3rem 2rem;
    text-align: center;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-container p {
    opacity: 0.6;
    margin-bottom: 1rem;
    font-weight: 300;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    opacity: 0.7;
    font-weight: 300;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

/* ============================================
   MOBILE STICKY CTA
   ============================================ */

.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.mobile-cta-btn {
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.5);
    width: 100%;
    display: block;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mobile-cta-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.6);
    color: var(--text-color);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablets */
@media (min-width: 768px) and (max-width: 991px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .card-image {
        height: 350px;
    }

    .steps-container {
        gap: 2rem;
    }

    .step-item:not(:last-child)::after {
        width: 2rem;
        right: -1rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    header {
        padding: 0.8rem 1.5rem;
    }

    .hero-header {
        padding: 0.8rem 1.5rem;
    }

    .logo img {
        height: 25px;
    }

    .create-account-btn {
        padding: 0.3rem 0.7rem;
        font-size: 0.85rem;
    }

    .hero--video {
        height: 70vh;
        min-height: 500px;
    }

    .hero-content {
        padding: 0 1rem;
        padding-top: 4rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subheadline {
        font-size: 1.2rem;
    }

    .hero-paragraph {
        font-size: 1rem;
    }

    .section-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .immersive-content p,
    .info-content p {
        font-size: 1rem;
    }

    .main-cta-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
    }

    section {
        padding: 2rem 1rem;
    }

    h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .steps-container {
        flex-direction: column;
        gap: 2rem;
    }

    .step-item:not(:last-child)::after {
        display: none;
    }

    .step-number {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.8rem;
    }

    .character-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .card-image {
        height: 320px;
    }

    .mid-page-cta {
        padding: 3rem 1rem;
    }

    .faq-question {
        font-size: 1rem;
    }

    .mobile-sticky-cta {
        display: block;
    }

    footer {
        padding: 2rem 1rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero--video {
        height: 60vh;
        min-height: 400px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .card-image {
        height: 250px;
    }

    .glass-card {
        padding: 2rem 1.5rem;
    }

    .feature-icon {
        font-size: 2.5rem;
    }
}

/* Very Small Mobile */
@media (max-width: 400px) {
    .hero--video {
        height: auto;
        min-height: 100vh;
        padding: 1rem 0;
    }

    .hero-content {
        padding: 0 1rem;
        padding-top: 3.5rem;
        padding-bottom: 2rem;
    }

    .hero-content h1 {
        font-size: 1.6rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }

    .hero-subheadline {
        font-size: 1rem;
        margin-bottom: 1rem;
        line-height: 1.5;
    }

    .hero-paragraph {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .main-cta-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        width: 100%;
        max-width: 280px;
    }

    .hero-header {
        padding: 0.6rem 1rem;
    }

    .card-image {
        height: 220px;
    }

    .main-cta-btn,
    .mobile-cta-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}


