:root {
    /* Carnival Palette */
    --primary-color: #8E44AD;
    /* Deep Purple */
    --secondary-color: #E67E22;
    /* Vibrant Orange */
    --accent-color: #2ECC71;
    /* Bright Green */
    --text-color: #2C3E50;
    --bg-color: #FDFEFE;
    --light-bg: #F4F6F7;
    --white: #ffffff;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Poppins', sans-serif;

    /* Spacing Reduced */
    --spacing-sm: 0.8rem;
    --spacing-md: 1.5rem;
    /* Was 2rem */
    --spacing-lg: 2.5rem;
    /* Was 4rem */

    /* Transitions */
    --transition-fast: 0.3s ease;
}

/* ... (Reset & Base) ... */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: 1.4rem;
    /* Base size 1.4rem as requested */
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
    width: 100%;
}

/* ... (Utilities) ... */

.mt-md {
    margin-top: var(--spacing-md);
}

.text-link {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
}

/* ... (Existing styles) ... */

small {
    font-size: 1.1rem;
    /* Slightly smaller but still readable */
}

/* Utilities */
.container {
    padding: 0 var(--spacing-sm);
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Ensure vertical stack is centered */
}

/* Ensure sections take full width of container but content is centered */
section {
    width: 100%;
    max-width: 100%;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    text-align: center;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
    font-size: 1.4rem;
}

.btn-primary:active {
    transform: scale(0.95);
}

.btn-secondary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(142, 68, 173, 0.4);
}

/* FAB Audio Button - Top Right & Bigger */
.audio-fab {
    position: fixed;
    top: 20px;
    /* Move to top */
    right: 20px;
    /* Move to right */
    width: 60px;
    /* Bigger */
    height: 60px;
    /* Bigger */
    border-radius: 50%;
    background-color: var(--white);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    cursor: pointer;
    font-size: 2rem;
    /* Bigger icon */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.audio-fab:active {
    transform: scale(0.9);
}

/* Poster Section */
.poster-container {
    padding: var(--spacing-sm) 0;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
}

.main-poster {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: block;
    /* ensure block for margin centering if needed */
}

/* Hero Section */
.hero {
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: var(--spacing-md) var(--spacing-sm);
    overflow: hidden;
    color: var(--text-color);
    background: transparent;
    width: 100%;
}

/* Background Image styling removed */
.hero::before {
    display: none;
}

/* Hero Text Styling */
.eyebrow {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    display: block;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: var(--spacing-sm);
    color: var(--text-color);
}

.hero-title .highlight {
    color: var(--secondary-color);
    display: inline-block;
    transform: rotate(-3deg);
}

.hero-subtitle {
    font-size: 1.6rem;
    margin-bottom: var(--spacing-md);
    color: #555;
}

.tagline {
    font-style: italic;
    margin-bottom: var(--spacing-lg);
    font-weight: 500;
}

/* Pulse Animation for CTA */
@keyframes pulse-animation {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(230, 126, 34, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(230, 126, 34, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(230, 126, 34, 0);
    }
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes heartbeat-animation {
    0% {
        transform: scale(1);
    }

    15% {
        transform: scale(1.15);
    }

    /* Big pump */
    30% {
        transform: scale(1);
    }

    45% {
        transform: scale(1.1);
    }

    /* Small pump */
    60% {
        transform: scale(1);
    }

    100% {
        transform: scale(1);
    }
}

.heartbeat-text {
    display: inline-block;
    /* Required for transform */
    animation: heartbeat-animation 3s infinite ease-in-out;
    color: var(--primary-color);
    /* Ensure visibility */
    font-weight: 800;
    /* Extra bold */
}

/* Text Utilities */
.text-lg-bold {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
}

.text-xl-bold {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
}

.text-link-clean {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.highlight-text {
    display: block;
    margin-top: 0.2rem;
}

/* Video Section Centers */
.video-section {
    padding: var(--spacing-md) var(--spacing-sm);
    text-align: center;
}

.section-copy {
    text-align: center;
    max-width: 600px;
    margin: var(--spacing-sm) auto;
}

.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #000;
    /* aspect-ratio: 9/16; REMOVED */
    width: 100%;
    max-width: 400px;
    margin: 0 auto var(--spacing-sm);
}

.video-wrapper video {
    width: 100% !important;
    height: auto !important;
    display: block;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

/* Info Grid Centering */
.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-sm);
}

.info-card {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    /* Ensures content is centered */
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center flex items */
}

.info-card .icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.info-card h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.info-card p {
    margin: 0.2rem 0;
    /* Tighten spacing */
}

/* Value Prop Centering */
.value-prop {
    background-color: var(--light-bg);
    padding: var(--spacing-lg) var(--spacing-sm);
    text-align: center;
    border-radius: 20px;
    margin: var(--spacing-md) var(--spacing-sm);
}

.benefit-list {
    list-style: none;
    text-align: center;
    /* Centering text */
    max-width: 400px;
    /* Increased slightly */
    margin: 0 auto;
}

.benefit-list li {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    /* More space between items */
    display: flex;
    flex-direction: column;
    /* Stack icon and text for centering */
    align-items: center;
    justify-content: center;
}

.benefit-list .check {
    margin-right: 0;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.feature-quote {
    margin-top: var(--spacing-md);
    font-style: italic;
    color: var(--secondary-color);
    font-weight: 600;
    text-align: center;
}

/* Pricing Centering */
.pricing {
    padding: var(--spacing-md) var(--spacing-sm);
    text-align: center;
}

.price-table {
    max-width: 500px;
    margin: 0 auto var(--spacing-md);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    overflow: hidden;
}

.price-row {
    display: flex;
    justify-content: space-between;
    /* Keep side by side in row */
    padding: 1rem;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.price-row:last-child {
    border-bottom: none;
}

.price-row span {
    text-align: left;
    /* Ensure text in row isn't weirdly aligned */
}

.price-row .price {
    font-weight: 700;
    color: var(--primary-color);
    text-align: right;
}

.price-row .price.free {
    color: var(--accent-color);
}

/* Sponsors */
.sponsors {
    padding: var(--spacing-lg) var(--spacing-sm);
    text-align: center;
    background-color: #fff;
}

.logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-md);
}

.logo-img {
    max-width: 120px;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(0%);
    /* Full color */
    transition: transform 0.2s;
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: var(--spacing-lg) var(--spacing-sm);
    text-align: center;
}

.footer-cta {
    font-size: 1.4rem;
    margin-bottom: var(--spacing-md);
}

.social-links {
    margin-bottom: var(--spacing-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.social-links a {
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0.9;
    font-size: 1.2rem;
    transition: transform 0.2s;
}

.social-links a:hover {
    transform: scale(1.05);
    opacity: 1;
}

.social-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    fill: currentColor;
}

.copyright {
    font-size: 1.1rem;
    /* Keeping it slightly smaller but readable */
    opacity: 0.6;
}

/* Confetti Canvas */
#confetti-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
    /* Click through */
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}