/* CSS Custom Properties */
:root {
    --bg: #1a0d2e;
    --surface: #2d1b4e;
    --text: #ffffff;
    --muted: #d4c5e8;
    --accent: #ffffff;
    --accent-2: #f0e6ff;
    --border: #4a3268;
    --success: #4ade80;
    --error: #ef4444;
    --warning: #f59e0b;
    
    /* Typography */
    --font-display: 'Spectral', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    
    /* Container */
    --container-max: 1200px;
    --container-padding: 1rem;
    
    /* Breakpoints */
    --bp-sm: 576px;
    --bp-md: 768px;
    --bp-lg: 992px;
    --bp-xl: 1200px;
}

/* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    min-height: 100vh;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

/* Blue Nebula Background */
.starfield {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: 
        url('/img/hero-background.jpg'),
        linear-gradient(135deg, #1a0d2e 0%, #2d1b4e 50%, #1a0d2e 100%);
    background-size: cover, 100% 100%;
    background-position: center center, center center;
    background-attachment: fixed;
    background-repeat: no-repeat, no-repeat;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 2rem);
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1.125rem;
}

p {
    margin-bottom: var(--space-sm);
}

a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

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

/* Layout */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.grid {
    display: grid;
    gap: var(--space-lg);
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

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

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Components */
.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: var(--space-lg);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.4);
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #ffffff;
    color: var(--bg);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0.25rem 0.25rem 0.25rem 0;
}

.badge.secondary {
    background: var(--accent-2);
    color: var(--bg);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border: 2px solid #ffffff;
    border-radius: 8px;
    background: #ffffff;
    color: var(--bg);
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    min-height: 44px;
}

.btn:hover,
.btn:focus {
    background: rgba(255, 255, 255, 0.9);
    border-color: #ffffff;
    color: var(--bg);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.btn-outline:hover,
.btn-outline:focus {
    background: #ffffff;
    color: var(--bg);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Header */
.site-header {
    background: rgba(17, 23, 38, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    min-height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-weight: 600;
    font-size: 1.25rem;
    font-family: var(--font-display);
}

.logo a {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--text);
    text-decoration: none;
}

.logo img {
    width: 40px;
    height: 40px;
}

.main-nav {
    display: none;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
}

.nav-list a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.2s ease;
}

.nav-list a:hover,
.nav-list a:focus {
    color: var(--accent-2);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.2s ease;
}

.nav-list a:hover::after,
.nav-list a:focus::after {
    width: 100%;
}

.header-cta {
    display: none;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
}

.hamburger {
    width: 20px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(3px, 3px);
}

.mobile-menu-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(3px, -3px);
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-list {
    list-style: none;
    padding: var(--space-sm) 0;
}

.mobile-nav-list li {
    border-bottom: 1px solid var(--border);
}

.mobile-nav-list li:last-child {
    border-bottom: none;
}

.mobile-nav-list a {
    display: block;
    padding: var(--space-sm) var(--space-lg);
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.mobile-nav-list a:hover,
.mobile-nav-list a:focus {
    background: var(--border);
    color: #ffffff;
}

/* Footer */
.site-footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    margin-top: var(--space-2xl);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-section h3 {
    color: #ffffff;
    margin-bottom: var(--space-sm);
    font-size: 1.125rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--space-xs);
}

.footer-section ul a {
    color: var(--muted);
    transition: color 0.2s ease;
}

.footer-section ul a:hover,
.footer-section ul a:focus {
    color: #ffffff;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-sm);
    font-weight: 600;
    font-family: var(--font-display);
}

.social-links {
    display: flex;
    gap: var(--space-sm);
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--border);
    border-radius: 8px;
    color: var(--muted);
    transition: all 0.2s ease;
}

.social-links a:hover,
.social-links a:focus {
    background: #ffffff;
    color: var(--bg);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border);
    color: var(--muted);
}

/* Page Sections */
.hero {
    padding: var(--space-2xl) 0;
    text-align: center;
    background: rgba(45, 27, 78, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.hero-with-bg {
    background: 
        linear-gradient(rgba(26, 13, 46, 0.7), rgba(26, 13, 46, 0.7)),
        url('/img/hero-background.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 60vh;
    display: flex;
    align-items: center;
    backdrop-filter: none;
}

.hero-logo {
    max-width: 500px;
    width: 100%;
    height: auto;
    margin-bottom: var(--space-lg);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

@media (max-width: 768px) {
    .hero-logo {
        max-width: 300px;
    }
    
    .hero-with-bg {
        min-height: 50vh;
    }
}

/* Alternating Section Backgrounds */
.section-purple {
    background: rgba(45, 27, 78, 0.8);
    backdrop-filter: blur(5px);
    padding: var(--space-2xl) 0;
}

.section-transparent {
    background: transparent;
    padding: var(--space-2xl) 0;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: var(--muted);
    margin-bottom: var(--space-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.page-header {
    padding: var(--space-xl) 0;
    text-align: center;
    border-bottom: 1px solid var(--border);
    background: rgb(45, 27, 78);
    background: linear-gradient(135deg, rgb(45, 27, 78) 0%, rgb(60, 35, 95) 100%);
}

.page-header p {
    font-size: 1.25rem;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
}

section {
    padding: var(--space-2xl) 0;
}

.section-cta {
    text-align: center;
    margin-top: var(--space-xl);
}

/* Video Components */
.video-card {
    position: relative;
}

/* Video link styling */
.video-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
    padding: var(--space-md);
    border-radius: 8px;
}

.video-link:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-1px);
}

.video-link:hover .video-title {
    color: #ffffff;
}

.video-link:hover .video-description {
    color: var(--text);
}

.video-title {
    font-size: 1.125rem;
    margin-bottom: var(--space-xs);
    line-height: 1.3;
    transition: color 0.2s ease;
}

.video-content {
    padding: 0;
}

.video-description {
    transition: color 0.2s ease;
}

/* Video Carousel Styles */
.carousel-wrapper {
    position: relative;
    width: 100%;
}

.video-carousel {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    position: relative;
}

.carousel-container {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

.carousel-track {
    display: flex;
    gap: var(--space-md);
    transition: transform 0.3s ease;
    will-change: transform;
}

.carousel-track .video-card {
    flex: 0 0 calc(33.333% - var(--space-sm));
    min-width: 320px;
}

.carousel-nav {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border);
    color: var(--text);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.carousel-nav:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.carousel-nav:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.carousel-nav svg {
    width: 20px;
    height: 20px;
}

/* Responsive carousel */
@media (max-width: 1024px) {
    .carousel-track .video-card {
        flex: 0 0 calc(50% - var(--space-xs));
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .carousel-track .video-card {
        flex: 0 0 calc(100% - var(--space-xs));
        min-width: 250px;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
    }
    
    .carousel-nav svg {
        width: 16px;
        height: 16px;
    }
}

/* Creator Section Styles */
.creator-section {
    margin-top: var(--space-2xl);
    padding: 0;
    background: rgba(45, 27, 78, 0.4);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.creator-content {
    display: flex;
    gap: 0;
    align-items: stretch;
    max-width: none;
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
}

.creator-section .creator-image {
    flex: 1;
    min-height: 400px;
}

.creator-section .creator-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    border: none !important;
    border-radius: 0 !important;
}

.creator-text {
    flex: 1;
    padding: var(--space-xl);
    background: rgba(45, 27, 78, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.creator-text h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    color: var(--text);
}

.creator-text p {
    margin-bottom: var(--space-sm);
    line-height: 1.6;
    color: var(--muted);
}

.creator-actions {
    margin-top: var(--space-md);
}

.youtube-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    padding: var(--space-sm) var(--space-md);
    border: 1px solid #ff6b6b;
    border-radius: 6px;
}

.youtube-link:hover {
    background: #ff6b6b;
    color: #ffffff;
    transform: translateY(-1px);
}

.youtube-link svg {
    width: 20px;
    height: 20px;
}

/* Responsive creator section */
@media (max-width: 768px) {
    .creator-content {
        flex-direction: column;
        text-align: center;
        gap: 0;
    }
    
    .creator-image {
        flex: none;
        min-height: 300px;
    }
    
    .creator-section {
        margin-top: var(--space-xl);
        padding: 0;
    }
}

.embed {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: var(--space-sm);
}

.embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Product Components */
.product {
    text-align: center;
}

.product img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: var(--space-sm);
}

.product .price {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: var(--space-sm);
}

/* Membership Components */
.tier {
    text-align: center;
    border: 2px solid var(--border);
    position: relative;
}

.tier.featured {
    border-color: var(--accent);
    transform: scale(1.05);
}

.tier .price {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: var(--space-sm);
}

.tier ul {
    list-style: none;
    margin-bottom: var(--space-lg);
    text-align: left;
}

.tier ul li {
    padding: var(--space-xs) 0;
    position: relative;
    padding-left: var(--space-lg);
}

.tier ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffffff;
    font-weight: bold;
}

/* Forms */
.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 500;
    color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
    color: var(--text);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: var(--error);
}

.error-message {
    color: var(--error);
    font-size: 0.875rem;
    margin-top: var(--space-xs);
    min-height: 1.25rem;
}

.success-message {
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.3);
    border-radius: 8px;
    padding: var(--space-lg);
    color: var(--success);
    text-align: center;
}

.success-message h3 {
    color: var(--success);
    margin-bottom: var(--space-sm);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    cursor: pointer;
    line-height: 1.5;
    margin-bottom: 0;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    opacity: 0;
    position: absolute;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-radius: 4px;
    background: var(--surface);
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.2s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #ffffff;
    border-color: #ffffff;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--bg);
    font-size: 12px;
    font-weight: bold;
}

.checkbox-label input[type="checkbox"]:focus + .checkmark {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

/* Contact Form Container */
.contact-form {
    background: rgba(76, 29, 149, 0.95); /* Dark purple with transparency */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 69, 255, 0.3);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(76, 29, 149, 0.3);
}

/* Filter Components */
.filter-bar {
    display: flex;
    gap: var(--space-lg);
    align-items: center;
    flex-wrap: wrap;
    padding: var(--space-lg);
    background: var(--surface);
    border-radius: 8px;
    border: 1px solid var(--border);
}

.filter-group {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.filter-group label {
    font-weight: 500;
    white-space: nowrap;
}

.filter-group select {
    min-width: 150px;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.muted { color: var(--muted); }
.accent { color: var(--accent); }

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

/* Responsive Design */
@media (min-width: 768px) {
    .main-nav {
        display: block;
    }
    
    .header-cta {
        display: block;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .hero-ctas {
        gap: var(--space-lg);
    }
    
    .grid {
        gap: var(--space-xl);
    }
    
    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
        align-items: start;
    }
    
    .creators-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: var(--space-xl);
    }
    
    .creator {
        display: flex;
        gap: var(--space-lg);
        align-items: center;
    }
    
    .creators-grid .creator-image {
        flex-shrink: 0;
    }
    
    .creators-grid .creator-image img {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        object-fit: cover;
    }
    
    .membership-benefits {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: var(--space-lg);
        margin: var(--space-xl) 0;
    }
    
    .benefit {
        text-align: center;
        padding: var(--space-lg);
        background: var(--surface);
        border-radius: 8px;
        border: 1px solid var(--border);
    }
    
    .faq-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: var(--space-lg);
    }
    
    .filter-bar {
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
    
    .creators-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Print Styles */
@media print {
    .starfield,
    .site-header,
    .site-footer,
    .btn,
    .mobile-menu-toggle,
    .mobile-nav {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .card {
        border: 1px solid #ccc !important;
        background: white !important;
    }
}
/* Guides Page */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--muted);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: white;
    color: white;
    transform: translateY(-1px);
}

.filter-btn.active {
    background: white;
    border-color: white;
    color: var(--bg);
}

.filter-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.guide {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.guide img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0.5rem 0.5rem 0 0;
}

.guide-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.guide-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--muted);
}

.guide-meta time {
    font-weight: 500;
}

.read-time {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
}

.guide h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: white;
    line-height: 1.3;
}

.guide-excerpt {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.guide-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.guide-tags .badge {
    font-size: 0.75rem;
}

.guide-tags .badge.featured {
    background: white;
    color: var(--bg);
}

.related-video {
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    border-left: 3px solid white;
}

.related-video small {
    font-size: 0.8rem;
    color: var(--muted);
}

.related-video a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.related-video a:hover {
    text-decoration: underline;
}

.guide-actions {
    margin-top: auto;
}

.guide-actions .btn {
    width: 100%;
    justify-content: center;
}

.guide-actions .btn.disabled {
    background: rgba(255, 255, 255, 0.1);
    color: var(--muted);
    cursor: not-allowed;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.guide-actions .btn.disabled:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: none;
}

.featured-guide {
    position: relative;
}

.featured-guide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, white, var(--muted));
    border-radius: 0.5rem 0.5rem 0 0;
}

@media (max-width: 768px) {
    .filter-bar {
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .filter-bar::-webkit-scrollbar {
        display: none;
    }
    
    .filter-btn {
        flex-shrink: 0;
        white-space: nowrap;
    }
    
    .guide img {
        height: 180px;
    }
    
    .guide-content {
        padding: 1rem;
    }
    
    .guide h3 {
        font-size: 1.1rem;
    }
}

/* Tier Row Styles */
.tier-rows {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    max-width: 800px;
    margin: 0 auto;
}

.tier-row {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.tier-row:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.tier-row.featured {
    border: 2px solid var(--accent);
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
}

.tier-row.featured:hover {
    box-shadow: 0 8px 30px rgba(138, 43, 226, 0.4);
}

.featured-badge {
    position: absolute;
    top: -1px;
    right: 20px;
    background: var(--accent);
    color: white;
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 0 0 8px 8px;
    z-index: 2;
}

.tier-row-content {
    display: flex;
    align-items: stretch;
    gap: 0;
    padding: 0;
    min-height: 140px;
    overflow: hidden;
}

.tier-badge {
    flex-shrink: 0;
    width: 50%;
    min-height: 140px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}

.tier-badge img {
    width: 100%;
    height: 100%;
    object-position: center;
}

.tier-info {
    flex: 1;
    min-width: 0;
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tier-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.tier-header h3 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--text);
    flex: 1;
    min-width: 0;
}

.tier-header .price {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent);
    margin-right: var(--space-sm);
}

.tier-header .period {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--muted);
}

.tier-row .perks-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xs);
    align-content: start;
}

.tier-row .perks-list li {
    background: rgba(138, 43, 226, 0.1);
    color: var(--text);
    padding: var(--space-xs) var(--space-sm);
    border-radius: 4px;
    font-size: 0.85rem;
    border: 1px solid rgba(138, 43, 226, 0.2);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tier-signup-btn {
    padding: var(--space-xs) var(--space-md);
    font-weight: 600;
    white-space: nowrap;
    font-size: 0.9rem;
    min-width: 100px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .tier-row-content {
        flex-direction: column;
        text-align: center;
    }
    
    .tier-badge {
        width: 100%;
        min-height: 120px;
        order: -1;
    }
    
    .tier-info {
        padding: var(--space-md);
    }
    
    .tier-header {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
        align-items: center;
    }
    
    .tier-row .perks-list {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    
    .tier-signup-btn {
        width: 100%;
        min-width: auto;
    }
}

/* ===== ABOUT PAGE SECTIONS ===== */
.our-story,
.creators,
.our-ethos,
.press-kit {
    padding: var(--space-2xl) 0;
    background: rgba(45, 27, 78, 0.15);
    border-bottom: 1px solid rgba(138, 43, 226, 0.1);
}

.our-story:nth-child(even),
.creators:nth-child(even),
.our-ethos:nth-child(even),
.press-kit:nth-child(even) {
    background: rgba(45, 27, 78, 0.25);
}

/* ===== VERTICAL TIER CARDS (MEMBERSHIP PAGE) ===== */
.tier-card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: var(--space-lg);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tier-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.tier-card.featured {
    border: 2px solid var(--accent);
    box-shadow: 0 6px 20px rgba(138, 43, 226, 0.3);
    transform: scale(1.05);
}

.tier-card.featured:hover {
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.4);
}

.tier-card-badge {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--space-md);
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    padding: 4px;
}

.tier-card-badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.tier-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tier-card-header {
    margin-bottom: var(--space-md);
}

.tier-card-header h3 {
    margin: 0 0 var(--space-xs) 0;
    font-size: 1.5rem;
    color: var(--text);
    font-family: var(--font-heading);
}

.tier-card-header .price {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.tier-card-header .period {
    font-size: 1rem;
    font-weight: 400;
    color: var(--muted);
}

.tier-card-perks {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-lg) 0;
    flex: 1;
}

.tier-card-perks li {
    background: rgba(138, 43, 226, 0.05);
    color: var(--text);
    padding: var(--space-sm) var(--space-md);
    margin-bottom: var(--space-xs);
    border-radius: 8px;
    font-size: 0.9rem;
    border-left: 3px solid var(--accent);
    text-align: left;
}

.tier-card-perks li:last-child {
    margin-bottom: 0;
}

.tier-card-cta {
    margin-top: auto;
}

.tier-card-cta .btn {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    font-weight: 600;
    font-size: 1.1rem;
}

.tier-card.featured .tier-card-cta .btn {
    background: var(--accent);
    color: white;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
}

.tier-card.featured .tier-card-cta .btn:hover {
    box-shadow: 0 6px 20px rgba(138, 43, 226, 0.4);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .tier-card.featured {
        transform: none;
        margin-bottom: var(--space-lg);
    }
    
    .tier-card-badge {
        width: 100px;
        height: 100px;
    }
    
    .tier-card-header h3 {
        font-size: 1.25rem;
    }
    
    .tier-card-header .price {
        font-size: 1.75rem;
    }
}
