/*
Modern minimalist design - 2024/2025 aesthetics
- Clean, calm, contemporary
- Mobile-first
- Subtle interactions
- Focused visual hierarchy

Brand Color Palette (4 colors):
- Primary: #5B4FE8 (Vibrant Indigo) - Action, energy, choice
- Secondary: #2D3748 (Deep Slate) - Text, stability, grounding
- Accent: #F59E0B (Warm Amber) - Highlights, positivity, warmth
- Surface: #F8FAFC (Cool White) - Background, clarity, space
*/

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #5B4FE8 0%, #7C3AED 100%);
    color: #2D3748;
    line-height: 1.6;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow-x: hidden;
}

/* 
===========================================
PREMIUM TOP NAVIGATION BAR
===========================================
Calm, modern, wellness-inspired design
Glassmorphism with soft lavender tint
Sticky behavior with elegant scroll shrink
===========================================
*/

.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #F6F4FB;
    /* soft lavender gray */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 16px rgba(91, 79, 232, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.top-nav.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 2px 12px rgba(245, 158, 11, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1rem 1rem 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    transition: padding 0.3s ease;
}

.top-nav.scrolled .nav-container {
    padding: 0.75rem 1rem 0.75rem 0.5rem;
}

/* Left: Logo & Brand */
.nav-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #2D3748;
    transition: opacity 0.2s ease;
}

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

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.logo-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(91, 79, 232, 0.25), 0 2px 4px rgba(91, 79, 232, 0.15);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.top-nav.scrolled .logo-icon {
    width: 48px;
    height: 48px;
    box-shadow: 0 2px 8px rgba(91, 79, 232, 0.2);
}

.logo-link:hover .logo-icon {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 16px rgba(91, 79, 232, 0.35), 0 3px 6px rgba(91, 79, 232, 0.2);
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 500;
    color: #2D3748;
    letter-spacing: -0.01em;
    font-family: 'Georgia', 'Cambria', 'Times New Roman', serif;
    line-height: 1.2;
}

.nav-tagline {
    font-size: 0.75rem;
    font-weight: 500;
    color: #5B4FE8;
    letter-spacing: -0.01em;
    opacity: 0.9;
    line-height: 1.2;
}

/* Center: Empty for balanced layout */
.nav-center {
    flex: 1;
}

/* Right: Links & CTA */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #64748B;
    text-decoration: none;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: #5B4FE8;
}

/* Dropdown Navigation */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0;
    padding-top: 0.5rem;
    background: transparent;
    min-width: 180px;
    z-index: 1000;
}

.dropdown-menu::before {
    content: '';
    display: block;
    height: 0.5rem;
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    overflow: hidden;
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1.25rem;
    color: #64748B;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: rgba(91, 79, 232, 0.08);
    color: #5B4FE8;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.625rem 1.5rem;
    background: linear-gradient(135deg, #5B4FE8 0%, #7C3AED 100%);
    color: white;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 24px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(91, 79, 232, 0.2);
    white-space: nowrap;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(91, 79, 232, 0.3);
}

.nav-cta:active {
    transform: translateY(0);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: #2D3748;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(91, 79, 232, 0.1);
}

.mobile-menu.active {
    display: flex;
}

.mobile-nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: #64748B;
    text-decoration: none;
    padding: 0.75rem 0;
    transition: color 0.2s ease;
}

.mobile-nav-link:hover {
    color: #5B4FE8;
}

.mobile-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #5B4FE8 0%, #7C3AED 100%);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 24px;
    margin-top: 0.5rem;
    transition: all 0.2s ease;
}

/* Tablet Breakpoint */
@media (max-width: 768px) {
    .nav-center {
        display: none;
        /* Hide tagline on mobile */
    }

    .nav-right {
        display: none;
        /* Hide desktop links on mobile */
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-container {
        padding: 1rem 1rem 1rem 0.5rem;
    }

    .content-wrapper {
        margin-top: 85px;
    }
}

/* Mobile Breakpoint */
@media (max-width: 480px) {
    .brand-name {
        font-size: 1.125rem;
    }

    .logo-icon {
        width: 48px;
        height: 48px;
    }

    .nav-container {
        padding: 1rem 0.75rem 1rem 0.5rem;
    }

    .content-wrapper {
        margin-top: 80px;
    }
}

/* 
===========================================
AD CONTAINER STYLES - Monetization Ready
===========================================
Ad placements are designed to be premium and non-intrusive.
See MONETIZATION.md for implementation guide.

To enable ads: Set ADS_ENABLED = true in app.js
===========================================
*/

/* Ad Containers - Hidden by default, reveal when monetized */
.ad-container {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ad-container:not(.hidden) {
    opacity: 1;
    max-height: 600px;
}

/* Top Banner Ad */
.top-banner {
    max-width: 1200px;
    margin: 1rem auto;
    padding: 1rem;
    text-align: center;
}

.ad-label {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
    text-align: center;
}

.ad-slot {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
}

/* Content Wrapper for Sidebar Layout */
.content-wrapper {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
    padding: 1.5rem;
    margin-top: 100px;
    position: relative;
    z-index: 1;
    align-items: flex-start;
    justify-content: center;
}

/* Sidebar Ad (Desktop Only) */
.sidebar-ad {
    display: none;
}

@media (min-width: 1024px) {
    .sidebar-ad:not(.hidden) {
        display: block;
        width: 300px;
        flex-shrink: 0;
        position: sticky;
        top: 2rem;
    }

    .sidebar-banner {
        min-height: 250px;
    }
}

/* Dynamic Background Quote */
.background-quote {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 6rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.08);
    text-align: center;
    pointer-events: none;
    z-index: 0;
    max-width: 90vw;
    line-height: 1.1;
    letter-spacing: -0.02em;
    user-select: none;
    transition: opacity 1s ease-in-out;
}

/* Main Container */
#app {
    max-width: 560px;
    width: 100%;
    flex: 1;
    position: relative;
    z-index: 1;
    background: rgba(248, 250, 252, 0.98);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 2rem 2rem 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* In-Content Ad */
.content-ad {
    margin: 2.5rem 0 0;
    padding: 1.5rem 0;
    border-top: 1px solid #E2E8F0;
}

.content-ad .ad-label {
    color: #94A3B8;
}

.content-ad .ad-slot {
    background: rgba(91, 79, 232, 0.02);
    border-color: #E2E8F0;
    min-height: 280px;
}

/* Motivational Quote at Top */
.motivational-quote {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.25rem 1rem;
    background: linear-gradient(135deg, rgba(91, 79, 232, 0.06) 0%, rgba(124, 58, 237, 0.06) 100%);
    border-radius: 16px;
    border: 1px solid rgba(91, 79, 232, 0.15);
}

.quote-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #2D3748;
    font-weight: 500;
    margin: 0;
}

/* Dynamic font styles for different quote types */
.quote-text.bold-action {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.quote-text.elegant-wisdom {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.01em;
}

.quote-text.modern-energy {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.quote-text.gentle-reminder {
    font-family: 'Palatino', 'Book Antiqua', serif;
    font-weight: 400;
    letter-spacing: 0.005em;
}

/* Header */
header {
    text-align: center;
    margin-bottom: 2.5rem;
}

/* Tab Navigation */
.hero-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 10;
}

.hero-tab {
    flex: 1;
    padding: 1rem 2rem;
    border: none;
    background: white;
    color: #2D3748;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.hero-tab:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.hero-tab.active {
    background: linear-gradient(135deg, #7C3AED 0%, #5B4FE8 100%);
    color: white;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(91, 79, 232, 0.3);
}

/* Tab Content Container */
.tab-content-container {
    position: relative;
    min-height: 300px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    border: 3px solid rgba(91, 79, 232, 0.4);
    backdrop-filter: blur(10px);
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-placeholder {
    text-align: center;
    padding: 3rem 2rem;
    color: #64748B;
    font-size: 1.125rem;
}

.tab-placeholder p {
    margin: 0;
}

/* ===========================
   SPINNING WHEEL STYLES
   =========================== */

.wheel-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.wheel-controls {
    width: 100%;
    max-width: 500px;
}

.control-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.control-tab {
    flex: 1;
    padding: 0.75rem 1rem;
    background: white;
    border: 2px solid #E2E8F0;
    color: #64748B;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.control-tab:hover {
    border-color: #5B4FE8;
    color: #5B4FE8;
}

.control-tab.active {
    background: #5B4FE8;
    border-color: #5B4FE8;
    color: white;
}

.control-content {
    display: none;
}

.control-content.active {
    display: block;
}

.input-area {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

#wheel-input {
    flex: 1;
    padding: 0.875rem 1rem;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    font-size: 0.9375rem;
    color: #2D3748;
    background: white;
    transition: border-color 0.2s ease;
}

#wheel-input:focus {
    outline: none;
    border-color: #5B4FE8;
}

.add-btn {
    padding: 0.875rem 1.5rem;
    background: #5B4FE8;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.add-btn:hover {
    background: #4A3FD9;
    transform: translateY(-1px);
}

.choices-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
    min-height: 80px;
    max-height: 200px;
    overflow-y: auto;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
}

.choice-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    font-size: 0.875rem;
    color: #2D3748;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.remove-choice {
    background: none;
    border: none;
    color: #EF4444;
    cursor: pointer;
    font-size: 1.125rem;
    line-height: 1;
    padding: 0;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.remove-choice:hover {
    background: rgba(239, 68, 68, 0.1);
}

.choice-count {
    text-align: right;
    font-size: 0.8125rem;
    color: #64748B;
    margin: 0;
    flex: 1;
}

.choice-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.reset-btn {
    padding: 0.5rem 1rem;
    background: #EF4444;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.reset-btn:hover {
    background: #DC2626;
    transform: translateY(-1px);
}

#topics-mode .reset-btn {
    display: block;
    margin: 1rem auto 0;
}

.topic-instruction {
    text-align: center;
    color: #64748B;
    margin-bottom: 1rem;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.topic-btn {
    padding: 0.875rem 1rem;
    background: white;
    border: 2px solid #E2E8F0;
    color: #2D3748;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.topic-btn:hover {
    border-color: #5B4FE8;
    color: #5B4FE8;
    transform: translateY(-2px);
}

.topic-btn.selected {
    background: #5B4FE8;
    border-color: #5B4FE8;
    color: white;
}

.wheel-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
}

.wheel-pointer {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 25px solid #EF4444;
    z-index: 10;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

#wheel-canvas {
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(91, 79, 232, 0.2);
    background: #F59E0B;
}

.spin-btn {
    display: none;
    /* Hidden - using center button instead */
    padding: 1rem 3rem;
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
}

.spin-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

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

.wheel-result {
    text-align: center;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #5B4FE8 0%, #7C3AED 100%);
    color: white;
    border-radius: 16px;
    font-size: 1.25rem;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(91, 79, 232, 0.3);
    animation: resultPop 0.5s ease;
}

.wheel-result.hidden {
    display: none;
}

@keyframes resultPop {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Typography */
h1 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #2D3748;
    letter-spacing: -0.025em;
    margin-bottom: 0.75rem;
}

h2 {
    font-size: 1rem;
    font-weight: 500;
    color: #2D3748;
    margin-bottom: 1rem;
    text-align: center;
}

.result-heading {
    font-size: 0.875rem;
    font-weight: 500;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}

.tagline {
    text-align: center;
    color: #5B4FE8;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 1rem 0 0.5rem;
    letter-spacing: -0.01em;
}

.subtitle {
    text-align: center;
    color: #64748B;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.5;
    margin-top: 0.25rem;
}

/* Section Styling */
.section {
    margin-bottom: 0;
    opacity: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.section.hidden {
    display: none;
}

/* Mood Button Grid */
.mood-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    align-items: stretch;
    justify-content: center;
}

/* Button Groups */
.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* Button Base Styles */
button {
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    padding: 1rem 1.5rem;
    border: 2px solid #E2E8F0;
    background-color: #FFFFFF;
    color: #2D3748;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-tap-highlight-color: rgba(91, 79, 232, 0.1);
}

button:hover {
    background-color: #F8FAFC;
    border-color: #CBD5E1;
    transform: translateY(-1px);
}

button:active {
    transform: translateY(0);
}

/* Focus styles for keyboard navigation */
button:focus-visible {
    outline: 3px solid #5B4FE8;
    outline-offset: 2px;
}

/* Mood Buttons - Large and Primary */
.mood-btn {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 16px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.mood-btn.selected {
    background-color: #5B4FE8;
    color: #FFFFFF;
    border-color: #5B4FE8;
}

.mood-btn.selected:hover {
    background-color: #4C3FD8;
    border-color: #4C3FD8;
}

/* Suggestion Card */
.suggestion {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.125rem;
    line-height: 1.7;
    color: #2D3748;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
    animation: fadeIn 0.3s ease;
}

.suggestion .time-highlight {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    color: #92400E;
    padding: 0.25rem 0.625rem;
    border-radius: 8px;
    font-weight: 600;
    display: inline-block;
    margin: 0 0.25rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Time Selection - Subtle and Secondary */
.time-selector {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
    margin-top: 0;
}

.time-btn {
    padding: 0.5rem 0.875rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 12px;
    background-color: transparent;
    border: 1px solid #E2E8F0;
    color: #64748B;
    min-width: auto;
}

.time-btn:hover {
    background-color: #F1F5F9;
    border-color: #CBD5E1;
}

.time-btn.selected {
    background-color: #F59E0B;
    color: #FFFFFF;
    border-color: #F59E0B;
    font-weight: 700;
    box-shadow: 0 2px 4px rgba(245, 158, 11, 0.2);
}

/* Primary Action Button */
.primary-btn {
    display: inline-flex;
    margin: 0;
    background-color: #F59E0B;
    border-color: #F59E0B;
    color: #FFFFFF;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
}

.primary-btn:hover {
    background-color: #D97706;
    border-color: #D97706;
}

/* ===========================
   GROUP VOTING STYLES
   =========================== */

.group-voting-section {
    max-width: 600px;
    margin: 0 auto;
}

.voting-view {
    display: none;
}

.voting-view.active {
    display: block;
}

.voting-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 0.5rem;
    text-align: center;
}

.voting-description {
    text-align: center;
    color: #64748B;
    margin-bottom: 2rem;
    font-size: 0.9375rem;
}

.voting-input-area {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.voting-input-area input {
    flex: 1;
    padding: 0.875rem 1rem;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.voting-input-area input:focus {
    outline: none;
    border-color: #5B4FE8;
    box-shadow: 0 0 0 3px rgba(91, 79, 232, 0.1);
}

.voting-choices-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    min-height: 120px;
}

.voting-choice-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: white;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.voting-choice-item:hover {
    border-color: #5B4FE8;
    transform: translateX(4px);
}

.voting-choice-item span {
    font-weight: 500;
    color: #2D3748;
}

.voting-choice-item button {
    background: #FEE2E2;
    color: #EF4444;
    border: none;
    padding: 0.375rem 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.voting-choice-item button:hover {
    background: #EF4444;
    color: white;
}

.voting-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin-top: 1.5rem;
}

.share-vote-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #7C3AED 0%, #5B4FE8 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(91, 79, 232, 0.3);
}

.share-vote-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(91, 79, 232, 0.4);
}

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

.share-icon {
    font-size: 1.25rem;
    font-weight: bold;
}

.join-input-area {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.join-input-area input {
    padding: 1rem;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    font-size: 1.25rem;
    text-align: center;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 700;
}

.session-header {
    margin-bottom: 2rem;
}

.session-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, #F3F4F6 0%, #E5E7EB 100%);
    border-radius: 12px;
}

.session-code-display {
    font-size: 0.9375rem;
    color: #64748B;
}

.session-code-display strong {
    color: #5B4FE8;
    font-size: 1.25rem;
    letter-spacing: 0.15em;
    font-family: 'Courier New', monospace;
}

.copy-btn {
    background: white;
    border: 2px solid #E2E8F0;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.copy-btn:hover {
    border-color: #5B4FE8;
    transform: scale(1.1);
}

.voting-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.vote-option {
    padding: 1.25rem;
    background: white;
    border: 3px solid #E2E8F0;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: #2D3748;
}

.vote-option:hover {
    border-color: #5B4FE8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(91, 79, 232, 0.15);
}

.vote-option.selected {
    background: linear-gradient(135deg, #7C3AED 0%, #5B4FE8 100%);
    border-color: #5B4FE8;
    color: white;
}

.voting-results {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    border: 2px solid #E2E8F0;
    margin-bottom: 2rem;
}

.results-heading {
    font-size: 1.125rem;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 1.5rem;
    text-align: center;
}

.results-bars {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.result-bar-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.result-bar-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9375rem;
}

.result-bar-label span:first-child {
    font-weight: 600;
    color: #2D3748;
}

.result-bar-label span:last-child {
    font-weight: 700;
    color: #5B4FE8;
}

.result-bar-track {
    height: 40px;
    background: #F1F5F9;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.result-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #10B981 0%, #059669 100%);
    border-radius: 12px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 1rem;
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    min-width: 50px;
}

.total-votes {
    text-align: center;
    margin-top: 1rem;
    color: #64748B;
    font-size: 0.875rem;
    font-weight: 500;
}

.secondary-btn {
    width: 100%;
    padding: 0.875rem;
    background: white;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    color: #64748B;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    border-color: #5B4FE8;
    color: #5B4FE8;
    transform: translateY(-2px);
}

.toggle-view-link {
    text-align: center;
    margin-top: 2rem;
}

.link-btn {
    background: none;
    border: none;
    color: #5B4FE8;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    transition: opacity 0.2s ease;
}

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

.link-btn.hidden {
    display: none;
}

/* Mobile Responsive */
@media (max-width: 420px) {
    .content-wrapper {
        padding: 1rem;
    }

    #app {
        padding: 1.75rem 1.5rem 2rem;
    }

    .background-quote {
        font-size: 3.5rem;
    }

    .motivational-quote {
        padding: 1rem 0.875rem;
        margin-bottom: 1.5rem;
    }

    .quote-text {
        font-size: 0.875rem;
        font-size: 0.9375rem;
    }

    .mood-btn {
        padding: 1rem 1.25rem;
        font-size: 0.9375rem;
        min-height: 56px;
    }

    /* Tabs for mobile */
    .hero-tabs {
        gap: 0.25rem;
        padding: 0.375rem;
    }

    .hero-tab {
        padding: 0.625rem 0.75rem;
        font-size: 0.8125rem;
    }

    /* Wheel mobile adjustments */
    #wheel-canvas {
        width: 300px;
        height: 300px;
    }

    .topics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .spin-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .wheel-result {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }

    .suggestion {
        font-size: 1.0625rem;
        padding: 1.75rem 1.25rem;
    }

    .time-btn {
        font-size: 0.8125rem;
        padding: 0.5rem 0.75rem;
    }
}

/* Larger Screens */
@media (min-width: 640px) {
    .content-wrapper {
        padding: 2rem;
    }

    .quote-text {
        font-size: 1rem;
    }

    h1 {
        font-size: 2.25rem;
    }

    .subtitle {
        font-size: 1.125rem;
    }

    header {
        margin-bottom: 3.5rem;
    }

    .mood-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.25rem;
        max-width: 650px;
    }

    .mood-btn {
        padding: 1.5rem 1.5rem;
        min-height: 70px;
    }

    .suggestion {
        font-size: 1.25rem;
        padding: 2.5rem 2rem;
    }
}

/* SEO Content Section - Subtle and below the fold */
.seo-content {
    max-width: 680px;
    margin: 4rem auto 0;
    padding: 3rem 2rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

.info-section {
    margin-bottom: 2rem;
}

.info-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.75rem;
    text-align: left;
}

.info-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.625rem;
    text-align: left;
}

.info-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    text-align: left;
}

/* How It Works Section */
.how-it-works-section {
    margin: 3rem 0;
}

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

.step-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #F59E0B 0%, #F97316 100%);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.step-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0.75rem;
}

.step-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 640px) {
    .seo-content {
        padding: 2.5rem 1.5rem;
        margin-top: 3rem;
    }

    .info-section h2 {
        font-size: 1.25rem;
    }

    .info-section h3 {
        font-size: 1.125rem;
    }

    .info-section p {
        font-size: 0.9375rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .step-card {
        padding: 1.5rem 1.25rem;
    }
}

/* Footer */
.site-footer {
    max-width: 1200px;
    margin: 4rem auto 0;
    padding: 3rem 2rem 1.5rem;
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0.75rem;
}

.footer-section p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    max-width: 500px;
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-column h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 0.625rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #F59E0B;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Share Button */
.button-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
    margin: 1rem 0 1.25rem;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    margin: 0;
    padding: 0.75rem 1.25rem;
    background: rgba(91, 79, 232, 0.1);
    border: 1px solid rgba(91, 79, 232, 0.3);
    border-radius: 10px;
    color: #5B4FE8;
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.share-btn:hover {
    background: rgba(91, 79, 232, 0.15);
    border-color: rgba(91, 79, 232, 0.5);
    transform: translateY(-1px);
}

.share-btn:active {
    transform: translateY(0);
}

.share-btn.share-success {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.share-icon {
    font-size: 1.125rem;
    line-height: 1;
}

/* Time Greeting */
.time-greeting {
    font-size: 1rem;
    color: rgba(45, 55, 72, 0.8);
    margin-top: 0.5rem;
}

/* Sample Ideas Section */
.sample-ideas {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
    border: 1px solid rgba(91, 79, 232, 0.1);
}

.sample-ideas h3 {
    color: #5B4FE8;
    margin-bottom: 0.875rem;
    margin-top: 0;
}

.section-intro {
    color: #2D3748;
    margin-bottom: 1.25rem;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.black-text {
    color: #000000 !important;
}

.sample-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.625rem;
    margin: 1rem 0;
}

.sample-item {
    padding: 0.75rem 0.875rem;
    background: white;
    border-radius: 8px;
    border-left: 3px solid #5B4FE8;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #2D3748;
}

.sample-item strong {
    color: #5B4FE8;
    font-weight: 600;
}

.cta-text {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 8px;
    color: rgba(45, 55, 72, 0.9);
    font-weight: 500;
    text-align: center;
}

/* Browse Topics Section */
.browse-topics {
    background: rgba(255, 255, 255, 0.75);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

/* 
===========================================
EMAIL CAPTURE COMPONENT
===========================================
Premium, non-intrusive email signup
Appears after user receives value
===========================================
*/

.email-capture {
    margin-top: 2rem;
    background: linear-gradient(135deg, rgba(91, 79, 232, 0.04) 0%, rgba(124, 58, 237, 0.04) 100%);
    border: 1px solid rgba(91, 79, 232, 0.12);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s ease;
    opacity: 1;
    transform: translateY(0);
}

.email-capture.hidden {
    display: none;
}

.email-capture.slide-in {
    animation: slideInUp 0.5s ease;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.email-capture-content {
    max-width: 100%;
}

.email-capture-title {
    font-size: 1.375rem;
    font-weight: 600;
    color: #2D3748;
    margin-bottom: 0.75rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.email-capture-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #64748B;
    text-align: center;
    margin-bottom: 1rem;
}

/* Trust Statement */
.email-trust-statement {
    background: rgba(91, 79, 232, 0.06);
    border-left: 3px solid #5B4FE8;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}

.trust-text {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #475569;
    margin: 0;
    text-align: left;
}

.trust-text strong {
    color: #5B4FE8;
    font-weight: 600;
}

.email-capture-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.email-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    font-size: 0.9375rem;
    font-family: inherit;
    background: white;
    color: #2D3748;
    transition: all 0.2s ease;
}

.email-input:focus {
    outline: none;
    border-color: #5B4FE8;
    box-shadow: 0 0 0 3px rgba(91, 79, 232, 0.1);
}

.email-input::placeholder {
    color: #94A3B8;
}

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
}

.email-submit-btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #5B4FE8 0%, #7C3AED 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(91, 79, 232, 0.2);
}

.email-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(91, 79, 232, 0.3);
}

.email-submit-btn:active {
    transform: translateY(0);
}

.email-dismiss-btn {
    background: none;
    border: none;
    color: #64748B;
    font-size: 0.875rem;
    font-family: inherit;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.2s ease;
}

.email-dismiss-btn:hover {
    color: #2D3748;
}

.email-footer-text {
    font-size: 0.8125rem;
    color: #94A3B8;
    text-align: center;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

/* Success State */
.email-success {
    text-align: center;
    padding: 2rem 1rem;
}

.email-success.hidden {
    display: none;
}

.success-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    font-size: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.success-message {
    font-size: 1.0625rem;
    font-weight: 500;
    color: #2D3748;
    margin: 0;
}

/* Tablet adjustments */
@media (min-width: 480px) {
    .form-fields {
        flex-direction: row;
        gap: 0.75rem;
    }

    .email-input {
        flex: 1;
    }

    .form-actions {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .email-submit-btn {
        width: auto;
        flex: 1;
    }

    .email-dismiss-btn {
        flex-shrink: 0;
        margin-left: 1rem;
    }
}

.browse-topics h3 {
    color: #2D3748;
    margin-bottom: 1.5rem;
    text-align: center;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.topic-category h4 {
    color: #5B4FE8;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.topic-category ul {
    list-style: none;
    padding: 0;
}

.topic-category li {
    margin-bottom: 0.5rem;
}

.topic-category a {
    color: #2D3748;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s;
}

.topic-category a:hover {
    color: #5B4FE8;
    text-decoration: underline;
}

.browse-cta {
    text-align: center;
    margin-top: 1.5rem;
}

.browse-cta a {
    color: #5B4FE8;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
}

.browse-cta a:hover {
    text-decoration: underline;
}

/* SEO FAQ Section */
.seo-faq {
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.6);
    padding: 1.5rem;
    border-radius: 12px;
}

.seo-faq h3 {
    color: #2D3748;
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.faq-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(91, 79, 232, 0.15);
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item h4 {
    color: #5B4FE8;
    font-size: 1.0625rem;
    font-weight: 600;
    margin-bottom: 0.625rem;
    margin-top: 0;
}

.faq-item p {
    color: #2D3748;
    line-height: 1.6;
    margin: 0;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .site-footer {
        padding: 2.5rem 1.5rem 1.5rem;
        margin-top: 3rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        gap: 2rem;
    }

    .footer-section p {
        max-width: 100%;
    }

    .sample-ideas {
        padding: 1.5rem;
    }

    .sample-grid {
        gap: 0.75rem;
    }

    .faq-item h4 {
        font-size: 1.0625rem;
    }
}

@media (max-width: 480px) {
    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* ===========================
   UTILITY CLASSES
   =========================== */

.hidden {
    display: none !important;
}