/*
Theme Name: Ashenborn
Theme URI: https://ashenborn.com
Author: Glaskintech
Author URI: https://glaskintech.com
Description: A dark fantasy WordPress theme designed for the Ashenborn tabletop RPG. Features a grimdark aesthetic with ember effects, campaign pre-launch funnel with email capture, VIP reservations, and Stripe integration. Built for Kickstarter campaigns and crowdfunding projects.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ashenborn
Tags: dark, one-column, custom-colors, custom-menu, featured-images, full-width-template, theme-options, translation-ready, e-commerce, entertainment

This theme is designed for the Ashenborn tabletop RPG Kickstarter campaign:
- Dark fantasy grimdark visual design with ember fire effects
- Landing page with email capture integration
- VIP reservation page with $1 Stripe payment processing
- Thank you/confirmation page with social sharing
- Mailchimp integration for email list building
- Mobile-responsive design optimized for conversions
*/

/* ==========================================================================
   Custom Fonts - Elan ITC Pro
   ========================================================================== */
@font-face {
    font-family: 'Elan ITC Pro';
    src: url('assets/fonts/ElanITCPro-Book.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Elan ITC Pro';
    src: url('assets/fonts/ElanITCPro-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Elan SC ITC';
    src: url('assets/fonts/ElanSCITCTTBook.TTF') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ==========================================================================
   CSS Variables / Design Tokens
   ========================================================================== */
:root {
    /* Core Palette - Grimdark Fantasy */
    --color-bg-dark: #080504;
    /* Deepest Black/Brown */
    --color-bg-panel: #140d0a;
    /* Panel Background */
    --color-primary: #3d1f18;
    /* Primary Dark Brown */

    /* Accents */
    --color-accent: #c43e1c;
    /* Burning Ember Red */
    --color-accent-glow: #ff5e3a;
    /* Bright Fire Glow */
    --color-gold: #d4a574;
    /* Muted Gold */
    --color-gold-bright: #f5e6d3;
    /* Highlight Gold/Cream */

    /* Text */
    --color-text: #f5edda;
    --color-text-muted: #9c8c82;

    /* Surface & Border Colors */
    --color-background: #080504;
    --color-secondary: #1a0f0a;
    --color-surface: #140d0a;
    --color-border: rgba(156, 140, 130, 0.3);

    /* Typography */
    --font-heading: 'Elan ITC Pro', serif;
    --font-body: 'Inter', sans-serif;
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Elan ITC Pro', serif;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;
    --spacing-2xl: 8rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;

    /* Effects */
    --shadow-glow: 0 0 20px rgba(196, 62, 28, 0.4);
    --shadow-panel: 0 10px 30px rgba(0, 0, 0, 0.5);

    /* Transitions */
    --transition-fast: 200ms ease;
    --transition-smooth: 400ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms ease;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--spacing-2xl) 0;
    position: relative;
    overflow: hidden;
}

/* ==========================================================================
   Ashenborn Hero Section - Dark Fantasy Theme
   ========================================================================== */

/* Ashenborn Color Variables and Base Styles */
.hero--ashenborn {
    /* Local color variables */
    --ashenborn-bg-dark: #2D1810;
    --ashenborn-bg-darker: #1A0E08;
    --ashenborn-accent: #E46938;
    --ashenborn-accent-hover: #F07A4A;
    --ashenborn-cream: #F5E6D3;
    --ashenborn-cream-muted: #C4A882;
    --ashenborn-gold: #D4A574;

    /* Layout */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
    background-color: var(--ashenborn-bg-dark);
}

/* Background Image */
.hero--ashenborn .hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero--ashenborn .hero__bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Red Overlay - User Request */
.hero--ashenborn .hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #CE3815;
    opacity: 0.15;
    z-index: 2;
    pointer-events: none;
}

/* Hero Content */
.hero--ashenborn .hero__content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
}

/* Logo Styles */
.hero--ashenborn .hero__logo {
    position: relative;
    margin-bottom: var(--spacing-sm);
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

/* Red glow behind logo */
.hero--ashenborn .hero__logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 938px;
    height: 67px;
    background: #D12700;
    border-radius: 938px;
    filter: blur(55.95px);
    z-index: 0;
    pointer-events: none;
}

.hero--ashenborn .hero__logo-image {
    position: relative;
    z-index: 1;
    max-width: 726px;
    /* User Requested Size */
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
}

/* Subtitle - THE EMBER CYCLE */
.hero--ashenborn .hero__subtitle-wrapper {
    margin-bottom: var(--spacing-lg);
}

.hero--ashenborn .hero__subtitle-text {
    color: #E49874;
    /* User Request */
    text-align: center;
    text-shadow: 0 0 8px #800800;
    /* User Request */
    font-family: var(--font-heading);
    /* Elan ITC Pro */
    font-size: 28px;
    /* User Request */
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 7px;
    /* User Request */
    text-transform: uppercase;
}

/* Partner Logos & Labels */
.hero--ashenborn .hero__partners {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.hero--ashenborn .partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
}

.hero--ashenborn .partner-label {
    color: #CB9A82;
    /* User Request */
    text-align: center;
    font-family: var(--font-heading);
    /* Elan ITC Std (using fallback) */
    font-size: 12px;
    /* User Request */
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 3px;
    /* User Request */
    text-transform: uppercase;
}

.hero--ashenborn .partner-logo {
    opacity: 1;
}

/* Partner logos - display naturally */
.hero--ashenborn .partner-logo__image {
    max-height: 35px;
    width: auto;
    display: block;
}

/* Email Capture Section - TRANSPARENT (No Brown Panel) */
.hero--ashenborn .hero__email-capture {
    width: 100%;
    max-width: 600px;
    background: transparent;
    /* Essential: No background */
    border: none;
    border-radius: 0;
    padding: var(--spacing-md);
    box-shadow: none;
}

.hero--ashenborn .hero__cta-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--ashenborn-cream);
    margin-bottom: var(--spacing-xs);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero--ashenborn .hero__cta-subtext {
    font-size: 1.125rem;
    color: #ffffff;
    margin-bottom: var(--spacing-lg);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* Email Form */
.hero--ashenborn .hero__email-form {
    margin-bottom: var(--spacing-md);
    width: 100%;
}

.hero--ashenborn .hero__email-form-inner {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.hero--ashenborn .hero__email-input {
    width: 100%;
    padding: 1rem 1.5rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    color: #fff;
    background: rgba(0, 0, 0, 0.7);
    /* Darker contrast */
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.hero--ashenborn .hero__email-input:focus {
    outline: none;
    border-color: var(--ashenborn-accent);
    background: rgba(0, 0, 0, 0.9);
    box-shadow: 0 0 10px rgba(228, 105, 56, 0.4);
}

.hero--ashenborn .hero__email-button {
    width: 100%;
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ffffff;
    background: linear-gradient(135deg, #E46938 0%, #C43E1C 100%);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 15px rgba(228, 105, 56, 0.4);
}

.hero--ashenborn .hero__email-button:hover {
    background: linear-gradient(135deg, #F07A4A 0%, #D44D25 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(228, 105, 56, 0.6);
}

.hero--ashenborn .mc4wp-form input[type="email"] {
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero--ashenborn .mc4wp-form input[type="submit"] {
    background: linear-gradient(135deg, #E46938 0%, #C43E1C 100%);
    color: white;
    font-weight: bold;
    text-transform: uppercase;
}

/* Desktop: Horizontal Form Layout */
@media (min-width: 600px) {

    .hero--ashenborn .hero__email-form-inner,
    .hero--ashenborn .mc4wp-form-fields {
        flex-direction: row;
        align-items: stretch;
    }

    .hero--ashenborn .hero__email-input,
    .hero--ashenborn .mc4wp-form input[type="email"] {
        flex: 1;
        border-radius: var(--radius-sm) 0 0 var(--radius-sm);
        border-right: none;
    }

    .hero--ashenborn .hero__email-button,
    .hero--ashenborn .mc4wp-form input[type="submit"] {
        width: auto;
        border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    }
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg-dark);
    min-height: 100vh;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-accent-glow);
    text-shadow: 0 0 10px rgba(255, 94, 58, 0.6);
}

/* ==========================================================================
   Fixed Elements
   ========================================================================== */

/* 1. Ashenborn Symbol (Top Right) */
.fixed-symbol {
    position: fixed;
    top: var(--spacing-lg);
    right: var(--spacing-lg);
    z-index: 1000;
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 0 15px rgba(196, 62, 28, 0.4));
    animation: symbol-pulse 4s infinite ease-in-out;
    pointer-events: none;
    /* Let clicks pass through */
}

@keyframes symbol-pulse {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 15px rgba(196, 62, 28, 0.4));
    }

    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 25px rgba(196, 62, 28, 0.6));
    }
}

/* 2. Fixed Bottom Banner */
.fixed-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: none;
    height: 100px;
    z-index: 999;
    display: block;
    transform: none;
    padding: 0;
    overflow: visible;
}

.fixed-banner__background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1200px;
    height: 130%;
    z-index: 0;
    pointer-events: none;
}

.fixed-banner__background img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
}

.fixed-banner__glow {
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.7;
}

.fixed-banner__glow img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.fixed-banner__content {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    max-width: 1000px;
    padding: 0 2rem;
    box-sizing: border-box;
}

/* D20 Dice Icon */
.fixed-banner__dice {
    width: 70px;
    height: auto;
    flex-shrink: 0;
    position: relative;
}

.fixed-banner__dice::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 94, 58, 0.6) 0%, rgba(196, 62, 28, 0.3) 40%, transparent 70%);
    filter: blur(15px);
    z-index: -1;
    animation: dice-glow 3s infinite ease-in-out;
}

.fixed-banner__dice img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(255, 94, 58, 0.8))
            drop-shadow(0 0 30px rgba(196, 62, 28, 0.5));
    animation: dice-float 4s infinite ease-in-out;
}

@keyframes dice-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-6px) rotate(3deg);
    }
}

@keyframes dice-glow {
    0%, 100% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.15);
    }
}

/* Banner Text */
.fixed-banner__text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    max-width: 400px;
}

.fixed-banner__heading {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-gold-bright);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.fixed-banner__subtext {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--color-text);
    margin: 0;
    line-height: 1.4;
    opacity: 0.9;
}

/* Form Container */
.fixed-banner__form {
    flex-shrink: 0;
}

/* Fallback Form Styles */
.fixed-banner__fallback-form {
    display: flex;
    align-items: stretch;
}

.fixed-banner__input {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(156, 140, 130, 0.4);
    color: var(--color-text);
    padding: 0.875rem 1.25rem;
    border-radius: 4px 0 0 4px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
    width: 220px;
    transition: all var(--transition-fast);
}

.fixed-banner__input::placeholder {
    color: #9c8c82;
    opacity: 1;
}

.fixed-banner__input:focus {
    background: rgba(0, 0, 0, 0.7);
    border-color: var(--color-accent);
    outline: none;
    box-shadow: 0 0 10px rgba(196, 62, 28, 0.3);
}

.fixed-banner__button {
    background: linear-gradient(135deg, #c43e1c 0%, #a33215 100%);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(196, 62, 28, 0.4);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.fixed-banner__button:hover {
    background: linear-gradient(135deg, #d64d26 0%, #bf3d1b 100%);
    box-shadow: 0 0 25px rgba(255, 94, 58, 0.6);
    transform: translateY(-2px);
}

/* MC4WP Form Styles Inside Fixed Banner */
.fixed-banner__form .mc4wp-form {
    margin: 0;
    padding: 0;
}

.fixed-banner__form .mc4wp-form-fields {
    display: flex;
    align-items: stretch;
    gap: 0;
}

.fixed-banner__form .mc4wp-form-fields p {
    margin: 0;
    display: flex;
    align-items: stretch;
}

.fixed-banner__form .mc4wp-form-fields label {
    display: none;
}

/* Email input field */
.fixed-banner__form .mc4wp-form input[type="email"] {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(156, 140, 130, 0.4);
    border-right: none;
    color: var(--color-text);
    padding: 0.75rem 1rem;
    width: 220px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
    border-radius: 4px 0 0 4px;
    transition: all var(--transition-fast);
}

.fixed-banner__form .mc4wp-form input[type="email"]::placeholder {
    color: #9c8c82;
    opacity: 1;
}

.fixed-banner__form .mc4wp-form input[type="email"]:focus {
    background: rgba(0, 0, 0, 0.7);
    border-color: var(--color-accent);
    outline: none;
    box-shadow: 0 0 10px rgba(196, 62, 28, 0.3);
    color: var(--color-text);
}

/* Submit button */
.fixed-banner__form .mc4wp-form input[type="submit"] {
    background: linear-gradient(135deg, #c43e1c 0%, #a33215 100%);
    border: none;
    color: var(--color-text);
    padding: 0.75rem 1.25rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.fixed-banner__form .mc4wp-form input[type="submit"]:hover {
    background: linear-gradient(135deg, #d64d26 0%, #bf3d1b 100%);
    box-shadow: 0 0 20px rgba(255, 94, 58, 0.5);
}

.fixed-banner__form .mc4wp-form .mc4wp-response {
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    background: rgba(20, 13, 10, 0.95);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 4px;
    margin-bottom: var(--spacing-xs);
    font-size: 0.85rem;
    text-align: center;
}

.fixed-banner__form .mc4wp-form .mc4wp-response .mc4wp-alert {
    margin: 0;
    padding: 0;
}

/* Responsive - Tablet */
@media (max-width: 900px) {
    .fixed-banner__form {
        min-width: 300px;
    }

    .fixed-banner__input,
    .fixed-banner__form .mc4wp-form input[type="email"] {
        width: 180px;
    }

    .fixed-banner__heading {
        font-size: 1.25rem;
    }

    .fixed-banner__subtext {
        font-size: 0.8rem;
    }

    .fixed-banner__dice {
        width: 55px;
    }
}

/* Responsive - Mobile */
/* Note: Primary mobile banner styles are in assets/css/main.css with CSS Grid layout */
/* These are fallback/base styles that main.css overrides with !important */
@media (max-width: 768px) {
    .fixed-banner {
        width: 100%;
        bottom: 0;
        border-radius: 0;
        /* Background gradient removed - using brushstroke image from main.css */
    }

    /* Background and dice now visible on mobile - see main.css for Grid layout */

    .fixed-symbol {
        width: 40px;
        height: 40px;
        top: var(--spacing-md);
        right: var(--spacing-md);
    }
}

/* ==========================================================================
   Email Capture Form
   ========================================================================== */
.email-capture {
    max-width: 500px;
    margin: 0 auto;
}

.email-capture__form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

@media (min-width: 600px) {
    .email-capture__form {
        flex-direction: row;
    }

    .email-capture__form .form-input {
        flex: 1;
    }
}

/* ==========================================================================
   VIP Reservation Section
   ========================================================================== */
.vip-section {
    background: linear-gradient(180deg, var(--color-background) 0%, var(--color-secondary) 100%);
}

.vip-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.vip-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: var(--spacing-sm);
    margin: var(--spacing-lg) 0;
}

.vip-price__amount {
    font-size: 4rem;
    font-weight: 800;
    color: var(--color-accent);
}

.vip-price__label {
    font-size: 1.25rem;
    color: var(--color-text-muted);
}

.vip-benefits {
    list-style: none;
    text-align: left;
    margin: var(--spacing-xl) 0;
}

.vip-benefits__item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid var(--color-border);
}

.vip-benefits__item:last-child {
    border-bottom: none;
}

.vip-benefits__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--color-accent);
}

.refund-notice {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(233, 69, 96, 0.1);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: var(--color-accent);
    margin-top: var(--spacing-lg);
}

/* ==========================================================================
   Thank You Page
   ========================================================================== */
.thankyou {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.thankyou__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-lg);
    color: var(--color-accent);
}

.thankyou__title {
    color: var(--color-accent);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

/* ==========================================================================
   Countdown Timer
   ========================================================================== */
.countdown {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.countdown__item {
    text-align: center;
}

.countdown__number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-accent);
}

.countdown__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
}

/* ==========================================================================
   Features/Benefits Grid
   ========================================================================== */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
}

.feature {
    text-align: center;
    padding: var(--spacing-lg);
}

.feature__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--spacing-lg);
    color: var(--color-accent);
}

.feature__title {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.feature__description {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
}

/* ==========================================================================
   Social Proof
   ========================================================================== */
.social-proof {
    text-align: center;
    padding: var(--spacing-xl) 0;
}

.social-proof__count {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
}

/* ==========================================================================
   Features Section - Why Join the Cycle?
   ========================================================================== */
.features-section--ashenborn {
    background: linear-gradient(180deg,
        #1a0f0a 0%,
        #0f0806 30%,
        #140d0a 70%,
        #1a0f0a 100%
    );
    padding: var(--spacing-2xl) 0;
    position: relative;
    overflow: hidden;
}

/* Subtle texture overlay */
.features-section--ashenborn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(196, 62, 28, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 50% 100%, rgba(196, 62, 28, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.features-section--ashenborn .section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 500;
    font-style: italic;
    color: var(--color-accent);
    text-shadow: 0 0 40px rgba(196, 62, 28, 0.4);
    margin-bottom: var(--spacing-xl);
    letter-spacing: -0.02em;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Feature Card Styling */
.features-section--ashenborn .feature-card {
    background: linear-gradient(180deg,
        rgba(45, 24, 16, 0.6) 0%,
        rgba(20, 13, 10, 0.8) 100%
    );
    border: 1px solid rgba(196, 62, 28, 0.2);
    border-radius: 16px;
    padding: var(--spacing-xl) var(--spacing-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.features-section--ashenborn .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(196, 62, 28, 0.4) 50%,
        transparent 100%
    );
}

.features-section--ashenborn .feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(196, 62, 28, 0.4);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(196, 62, 28, 0.15);
}

/* Icon Wrapper */
.feature-card__icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
}

/* Base Icon Styling */
.features-section--ashenborn .feature-card__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg,
        rgba(196, 62, 28, 0.2) 0%,
        rgba(196, 62, 28, 0.05) 100%
    );
    border: 2px solid rgba(196, 62, 28, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
}

.features-section--ashenborn .feature-card__icon::before {
    font-size: 2rem;
    color: var(--color-accent);
    text-shadow: 0 0 20px rgba(196, 62, 28, 0.5);
}

.features-section--ashenborn .feature-card:hover .feature-card__icon {
    border-color: rgba(196, 62, 28, 0.6);
    box-shadow:
        0 0 30px rgba(196, 62, 28, 0.3),
        inset 0 0 20px rgba(196, 62, 28, 0.1);
}

/* Specific Icon Styles */
.feature-card__icon--discount::before {
    content: '%';
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2.25rem;
}

.feature-card__icon--bonus::before {
    content: '\2605'; /* Star character as gift/bonus symbol */
    font-size: 2.25rem;
}

.feature-card__icon--priority::before {
    content: '\2191'; /* Up arrow for priority/first access */
    font-size: 2.5rem;
    font-weight: 700;
}

/* Feature Card Title */
.features-section--ashenborn .feature-card__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    font-style: italic;
    color: var(--color-gold);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(212, 165, 116, 0.3);
}

/* Feature Card Description */
.features-section--ashenborn .feature-card__description {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.features-section--ashenborn .feature-card__description .text-accent {
    color: var(--color-accent);
    font-weight: 600;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-lg);
    }

    .features-section--ashenborn .feature-card__icon {
        width: 70px;
        height: 70px;
    }

    .features-section--ashenborn .feature-card__icon::before {
        font-size: 1.75rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .features-section--ashenborn {
        padding: var(--spacing-xl) 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        max-width: 400px;
    }

    .features-section--ashenborn .section-title {
        font-size: 2rem;
        margin-bottom: var(--spacing-lg);
    }

    .features-section--ashenborn .feature-card {
        padding: var(--spacing-lg);
    }

    .features-section--ashenborn .feature-card__icon {
        width: 64px;
        height: 64px;
    }

    .features-section--ashenborn .feature-card__title {
        font-size: 1.25rem;
    }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    padding: var(--spacing-xl) 0;
    text-align: center;
    border-top: 1px solid var(--color-border);
}

.site-footer__text {
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hidden {
    display: none !important;
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease forwards;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* ==========================================================================
   You Roll, Ember Resolves Section
   ========================================================================== */
.you-roll-section {
    background: linear-gradient(180deg, #1a0f0a 0%, #2D1810 50%, #1a0f0a 100%);
    padding: var(--spacing-2xl) 0;
    position: relative;
    overflow: hidden;
}

.you-roll-section__header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.you-roll-section__title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 500;
    font-style: italic;
    color: var(--color-accent);
    line-height: 1.1;
    text-shadow: 0 0 40px rgba(233, 69, 96, 0.4);
    letter-spacing: -0.02em;
}

.you-roll-section__features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
    max-width: 1200px;
    margin: 0 auto;
}

/* Feature Cards */
.feature-card {
    text-align: center;
    padding: var(--spacing-lg);
    background: rgba(45, 24, 16, 0.5);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(233, 69, 96, 0.1);
    transition: transform var(--transition-base), border-color var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(233, 69, 96, 0.3);
}

.feature-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--spacing-lg);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card__icon img,
.feature-card__icon svg {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.feature-card__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    font-style: italic;
    color: var(--color-accent);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.feature-card__description {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Responsive Feature Grid */
@media (max-width: 1024px) {
    .you-roll-section__features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .you-roll-section__features {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .you-roll-section__title {
        font-size: 2.5rem;
    }

    .feature-card {
        padding: var(--spacing-md);
    }
}

/* ==========================================================================
   Best of Both Worlds Section
   ========================================================================== */
.best-of-both-worlds--ashenborn {
    background: linear-gradient(180deg, #1a0f0a 0%, #2D1810 50%, #1a0f0a 100%);
    padding: var(--spacing-2xl) 0;
    position: relative;
    overflow: hidden;
}

.best-of-both-worlds--ashenborn .section-header {
    margin-bottom: var(--spacing-xl);
}

.best-of-both-worlds--ashenborn .section-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 500;
    font-style: italic;
    color: var(--color-accent);
    line-height: 1.1;
    text-shadow: 0 0 40px rgba(233, 69, 96, 0.4);
    letter-spacing: -0.02em;
    margin-bottom: var(--spacing-md);
}

.best-of-both-worlds--ashenborn .section-subtitle {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-text-muted);
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

/* Product Grid - Side by Side Layout */
.bobw-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

/* Product Card Styles */
.product-card {
    text-align: center;
    position: relative;
    padding: var(--spacing-lg);
}

.product-card__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(196, 62, 28, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.product-card__image-wrapper {
    position: relative;
    z-index: 1;
    margin-bottom: var(--spacing-md);
}

.product-card__image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
    transition: transform var(--transition-smooth);
}

.product-card:hover .product-card__image {
    transform: translateY(-10px) scale(1.02);
}

.product-card__label {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    font-style: italic;
    color: var(--color-gold);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Responsive Best of Both Worlds */
@media (max-width: 768px) {
    .bobw-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .best-of-both-worlds--ashenborn .section-title {
        font-size: 2.5rem;
    }

    .product-card__label {
        font-size: 1.25rem;
    }
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 768px) {
    :root {
        --spacing-xl: 2rem;
        --spacing-2xl: 4rem;
    }

    .hero {
        min-height: auto;
        padding: var(--spacing-xl) 0;
    }

    /* Hero Section Mobile */
    .hero--ashenborn {
        padding: var(--spacing-lg) 0;
        padding-bottom: 120px;
        padding-top: 120px;
    }

    .hero--ashenborn .hero__content {
        gap: var(--spacing-md);
        padding: 0 var(--spacing-md);
    }

    .hero--ashenborn .hero__logo-image {
        max-width: 90%;
    }

    .hero--ashenborn .hero__subtitle-text {
        font-size: 18px;
        letter-spacing: 4px;
    }

    .hero--ashenborn .hero__partners {
        gap: var(--spacing-lg);
        flex-direction: column;
        align-items: center;
    }

    .hero--ashenborn .partner-label {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .hero--ashenborn .partner-logo__image {
        max-height: 28px;
    }

    .hero--ashenborn .hero__cta-subtext {
        font-size: 1rem;
    }

    /* Fixed Symbol Mobile */
    .fixed-symbol {
        width: 45px;
        height: 45px;
        top: 15px;
        right: 15px;
    }

    .countdown {
        gap: var(--spacing-md);
    }

    .countdown__number {
        font-size: 1.75rem;
    }

    .vip-price__amount {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-md);
    }

    .btn--large {
        padding: var(--spacing-md) var(--spacing-lg);
    }

    /* Hero Section Small Mobile */
    .hero--ashenborn {
        padding-bottom: 110px;
        padding-top: 110px;
    }

    .hero--ashenborn .hero__subtitle-text {
        font-size: 14px;
        letter-spacing: 3px;
    }

    .hero--ashenborn .hero__partners {
        gap: var(--spacing-md);
    }

    .hero--ashenborn .partner-label {
        font-size: 9px;
        letter-spacing: 1.5px;
    }

    .hero--ashenborn .partner-logo__image {
        max-height: 24px;
    }

    .hero--ashenborn .hero__cta-heading {
        font-size: 1.25rem;
    }

    .hero--ashenborn .hero__cta-subtext {
        font-size: 0.875rem;
    }

    /* Fixed Symbol Small Mobile */
    .fixed-symbol {
        width: 36px;
        height: 36px;
        top: 10px;
        right: 10px;
    }
}