/* Global Styles */
:root {
    --color-primary: #F8D100; /* Yellow */
    --color-primary-rgb: 248, 209, 0;
    --color-primary-dark: #e0bb00; /* Darker yellow for hover */
    --color-secondary: #00C3E7; /* Blue */
    --color-secondary-rgb: 0, 195, 231;
    --color-accent: #E60012; /* Red */
    --color-accent-rgb: 230, 0, 18;
    --color-accent-alt: #00AF67; /* Green */
    --color-accent-alt-rgb: 0, 175, 103;
    --color-accent-alt-dark: #008c53; /* Darker Green for hover */
    --color-light: #FFFFFF;
    --color-dark: #1F1F1F;
    --color-gray: #6D6D6D;
    --color-background: #EFF4F9; /* Light background for the page */
    --color-dark-rgb: 31, 31, 31; /* Fallback if not set, ensure this matches your --color-dark */

    --font-display: 'Fredoka One', cursive;
    --font-body: 'Inter', sans-serif;

    --section-padding: 60px 0;
    --card-border-radius: 16px; /* Adjusted for new image */
    --card-padding: 20px; /* Adjusted padding for new image */
    --card-shadow: 0 4px 12px rgba(0,0,0,0.08); /* Softer, slightly more pronounced shadow */
}

body {
    font-family: var(--font-body);
    color: var(--color-dark);
    background-color: var(--color-background);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--color-dark);
    margin-top: 0;
    margin-bottom: 0.75em;
}

h1 {
    font-size: 3rem;
    text-align: center;
}

.hero-section h1 {
    font-size: 3.2rem;
    color: var(--color-dark);
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 1em;
}

h3 {
    font-size: 1.5rem;
}

.lumee-card-content h3 {
    font-size: 1.25rem; /* Specific to Glimpse cards */
    font-family: var(--font-body); /* Glimpse card titles use body font, bolded by default h3 */
    font-weight: 700;
}

h4 {
    font-size: 1.2rem;
}

p {
    margin-bottom: 1em;
    font-size: 1rem;
    color: var(--color-gray);
}

p.sub-headline, p.section-sub-headline {
    font-size: 1.15rem;
    color: var(--color-gray);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5em;
    text-align: center;
}

.hero-section .sub-headline {
     color: var(--color-dark);
}

a {
    color: var(--color-secondary);
    text-decoration: none;
}

a:hover {
    color: var(--color-primary);
    text-decoration: none;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden; 
    background-color: var(--color-background);
}

.what-is-lumee-section, 
.why-join-section,
.how-lumee-works-section, 
.glimpse-magic-section {
    background-color: var(--color-light);
}


/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin: 5px;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-dark);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(0,0,0,0.15);
    color: var(--color-dark); /* Ensure text color remains dark on hover */
}

.btn-primary.btn-large {
    /* Styles for large primary buttons, including those in hero and final CTA */
    transform: scale(1.0); /* Base scale */
    transition: transform 0.2s ease, box-shadow 0.2s ease; /* Ensure transition is applied here too */
}

.btn-primary.btn-large:hover {
    transform: translateY(-2px) scale(1.05); /* Combine translateY with scale for hover */
    box-shadow: 0 8px 15px rgba(0,0,0,0.2); /* Enhanced shadow from final CTA */
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-secondary); /* Blue text */
    border: 2px solid var(--color-secondary); /* Blue border */
}

.btn-secondary:hover {
    background-color: var(--color-secondary); /* Blue background on hover */
    color: var(--color-light); /* Light text on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}

.btn-secondary.btn-large {
    /* Styles for large secondary buttons */
    /* Retain base secondary styles, ensure transition is applied */
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn-secondary.btn-large:hover {
    background-color: var(--color-secondary); /* Ensure these are explicitly set for hover */
    color: var(--color-light);
    transform: translateY(-2px) scale(1.05); /* Combine translateY with scale for hover */
    box-shadow: 0 8px 15px rgba(0,0,0,0.2); /* Enhanced shadow */
}

.btn-large {
    padding: 15px 35px;
    font-size: 1.25rem;
}

/* Lucide Icons Styling */
.feature-icon {
    stroke-width: 2;
    margin-bottom: 15px;
}

.feature-icon.large-icon {
    width: 50px; /* Adjusted size for How Lumee Works icons */
    height: 50px;
    margin-bottom: 20px;
}

.color-primary { color: var(--color-primary); stroke: var(--color-primary);}
.color-secondary { color: var(--color-secondary); stroke: var(--color-secondary);}
.color-accent { color: var(--color-accent); stroke: var(--color-accent);}
.color-accent-alt { color: var(--color-accent-alt); stroke: var(--color-accent-alt);}

/* Decorative Shapes */
.shape {
    position: absolute;
    z-index: 1;
    opacity: 0.08; /* Further reduced opacity for light theme */
    pointer-events: none;
}

.shape-1 { width: 200px; height: 200px; background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%); border-radius: 50%; top: 10%; left: -50px;}
.shape-2 { width: 150px; height: 150px; background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%); top: 60%; right: -40px; transform: rotate(15deg);}
.shape-3 { width: 180px; height: 180px; background: radial-gradient(circle, var(--color-accent-alt) 0%, transparent 70%); clip-path: polygon(50% 0%, 0% 100%, 100% 100%); bottom: 5%; left: 20%;}
.shape-4 { width: 250px; height: 250px; background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%); border-radius: 50%; top: 20%; right: -80px;}

/* Hero Section */
.hero-section {
    padding-top: 60px; /* Adjusted padding */
    padding-bottom: 60px;
    /* text-align: center; Removed, will be handled by column layout */
    min-height: auto; /* Adjusted from 80vh */
    display: flex; /* Already flex, good */
    align-items: center; /* Vertically align items in hero */
}

.hero-layout {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
    text-align: left;
}

.hero-section h1 {
    text-align: left; /* Align hero h1 to left */
    margin-bottom: 0.5em;
}

.hero-section .sub-headline {
    text-align: left; /* Align hero sub-headline to left */
    margin-left: 0; /* Remove auto margin for left alignment */
    margin-right: 0;
    max-width: none; /* Allow full width within its column */
    margin-bottom: 1.5em;
}

.hero-buttons {
    margin-top: 25px;
}

.hero-buttons .btn {
    margin-right: 15px; /* Space between buttons */
}

.hero-buttons .learn-how-btn {
    margin-left: 0; /* Reset margin from previous style */
}

.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-main-image {
    max-width: 100%;
    height: auto;
    max-height: 450px; /* Control max height of the image */
    border-radius: 8px; /* Optional: slight rounding for the image */
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Visual placeholder for hero removed as it is replaced by hero-image-container */
/*
.hero-section .visual-placeholder {
    width: 250px;
    height: 250px;
    background-color: var(--color-light); 
    border: 3px dashed var(--color-secondary);
    border-radius: 20px;
    margin: 30px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.hero-section .visual-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
*/

/* Why Join Section (Original) & Feature Grids */
.features-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 30px;
}

.why-join-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 columns for horizontal layout */
    gap: 20px; /* Smaller gap for a more compact look */
}

.why-join-item {
    background-color: var(--color-light);
    border-radius: var(--card-border-radius);
    padding: var(--card-padding);
    box-shadow: var(--card-shadow);
    text-align: center; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Align items to the top */
}

/* Styles for .icon-block removed, replaced by .feature-icon-inline */
/*
.icon-block {
    width: 100px; 
    height: 60px; 
    border-radius: 8px; 
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    color: var(--color-light); 
    font-weight: 700;
    font-family: var(--font-body);
    font-size: 1rem;
}

.bg-green-alt-text { background-color: var(--color-accent-alt); } 
.bg-red-text { background-color: var(--color-accent); } 
.bg-blue-text { background-color: var(--color-secondary); } 
*/

.feature-icon-inline {
    width: 48px; /* Size of the icon */
    height: 48px;
    stroke-width: 2; /* Lucide stroke width */
    padding: 12px; /* Padding to create the block effect around the icon */
    border-radius: 8px; /* Rounded corners for the block */
    margin-bottom: 20px;
    display: inline-flex; /* To allow padding and centering */
    justify-content: center;
    align-items: center;
}

/* Apply background colors to the icon containers, and icon color to light */
.feature-icon-inline.color-accent-alt {
    background-color: var(--color-accent-alt);
    stroke: var(--color-light);
    color: var(--color-light);
}
.feature-icon-inline.color-accent {
    background-color: var(--color-accent);
    stroke: var(--color-light);
    color: var(--color-light);
}
.feature-icon-inline.color-secondary {
    background-color: var(--color-secondary);
    stroke: var(--color-light);
    color: var(--color-light);
}

.why-join-item p {
    font-size: 0.9rem;
    color: var(--color-gray);
    line-height: 1.5;
    margin-top: auto; /* Push text to bottom if icon blocks vary in perceived height */
}

/* Remove old feature-icon specific styles if they conflict, or ensure they don't apply here */
.why-join-section .feature-icon { /* Example of overriding if needed, but structure changed */
    display: none; /* Hide old icons if any linger due to class reuse */
}

.three-column-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-item {
    background-color: var(--color-light);
    padding: var(--card-padding);
    border-radius: var(--card-border-radius);
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.feature-item h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
}
.feature-item p {
    font-size: 0.95rem;
    color: var(--color-gray);
}

/* How Lumee Works Section Specifics */
/* Styles for .card-image removed as the element is commented out in HTML */
/*
.how-lumee-works-section .feature-item .card-image {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin: 15px 0;
}
*/

.how-lumee-works-section .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center icon, title, and text */
}

.how-lumee-works-section .feature-item h3 {
    margin-top: 0; /* Reduce space above h3 if icon has margin-bottom */
    margin-bottom: 15px;
}

.how-lumee-works-section .feature-item p {
    font-size: 0.9rem; /* Slightly smaller text for these cards */
}

/* Why You'll Love Lumee Section Specifics */
/* Remove all styles related to six-items-grid and why-love-lumee-section */

/* A Glimpse of the Magic Section */
.glimpse-magic-section {
    background-color: var(--color-light);
    position: relative;
}
.lumee-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Adjusted min-width slightly */
    gap: 25px;
}

.lumee-card-outer {
    padding: 0; /* Remove outer padding, rely on card's own shadow and layout gap */
    /* Removing box-shadow from here if lumee-card-inner handles it */
    transition: transform 0.3s ease; /* Added for smooth bobbing effect */
}

.lumee-card-outer:hover {
    transform: translateY(-4px); /* Slight lift on hover for the whole card */
}

.lumee-card-inner {
    background-color: var(--color-light); /* White background */
    /* border: 1px solid #e0e0e0; */ /* Removed border, rely on shadow */
    border: none;
    border-radius: var(--card-border-radius);
    box-shadow: var(--card-shadow); /* Apply the new shadow */
    padding: var(--card-padding);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.lumee-card-inner:hover {
     box-shadow: 0 6px 16px rgba(0,0,0,0.12); /* Enhanced shadow on hover */
}

.lumee-card-inner .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px; /* Space below header */
}

.star-rating {
    display: flex; /* Align stars in a row */
}

.star-rating .card-icon.star-icon {
    margin-left: -4px; /* Negative margin to pull stars closer. Adjust as needed. */
}

.star-rating .card-icon.star-icon:first-child {
    margin-left: 0; /* No negative margin for the first star */
}

.rarity-tag {
    padding: 5px 12px; /* Slightly more padding */
    border-radius: 6px;
    font-size: 0.7rem; /* Adjusted font size */
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-light); /* White text for all tags */
    line-height: 1;
}

.rarity-tag.learn { /* Old style, might remove or keep as fallback if needed */
    background-color: #555;
}
.rarity-tag.rare { /* Old style, might remove or keep as fallback if needed */
    background-color: var(--color-secondary);
}
.rarity-tag.basic {
    background-color: #525252; /* Dark gray for BASIC from image */
    color: var(--color-light);
}
.rarity-tag.unusual {
    background-color: var(--color-accent-alt); /* Green for UNUSUAL from image */
    color: var(--color-light);
}

.rarity-tag.mythic {
    background-color: gold;
    color: #000; /* Ensuring text is readable on gold */
}

/* Remove any specific background overrides for rarity tags if they conflict */

.lumee-card-inner .card-icon {
    width: 22px;
    height: 22px;
    stroke-width: 2;
    color: var(--color-gray); /* Default for non-star icons */
}

.lumee-card-inner .card-icon.star-icon { /* Specific for the yellow star */
    color: var(--color-primary);
    fill: var(--color-primary);
}

.lumee-card-image {
    width: 100%;
    height: 180px; /* Adjusted height */
    object-fit: cover;
    border-radius: 10px; /* Rounded corners for the image */
    margin-bottom: 15px; /* Space below image */
}

.lumee-card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 0;
}

.lumee-card-content h3 {
    font-size: 1.15rem; /* Adjusted title size from image */
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 6px;
}

.lumee-card-content .card-subtitle {
    font-size: 0.75rem; /* Adjusted subtitle size from image */
    color: var(--color-gray);
    margin-bottom: 10px; /* Space below subtitle */
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.lumee-card-content .card-description {
    font-size: 0.875rem; /* Adjusted description size from image */
    color: var(--color-gray);
    line-height: 1.55;
    margin-bottom: 15px; /* Space below description */
    flex-grow: 1;
}

.lumee-card-inner .card-footer-elements {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 10px;
    border-top: none; /* No border-top as per new image */
}

.stat-chart-placeholder .hex-icon,
.share-icon-placeholder i {
    width: 22px; /* Adjusted icon size */
    height: 22px;
    color: var(--color-gray);
    stroke-width: 2;
}

.share-icon-placeholder {
    cursor: pointer;
    padding: 4px; /* Minimal padding around icon */
    border-radius: 50%;
    transition: background-color 0.2s ease;
    display: inline-flex; /* Align icon nicely */
    align-items: center;
    justify-content: center;
}

.share-icon-placeholder:hover {
    background-color: #efefef;
}
.share-icon-placeholder:hover i {
    color: var(--color-secondary);
}

.learning-tags {
    display: none; /* Hide learning tags as per new image */
    gap: 5px;
}

/* Ensure any conflicting styles for these elements are overridden or removed. */
/* For example, if .lumee-card-inner .learning-card or .explorer-card have different paddings/borders */

.lumee-card-inner.learning-card,
.lumee-card-inner.explorer-card {
    /* Reset specific styles if they were overriding the new base .lumee-card-inner style */
    /* e.g., padding: var(--card-padding); */
}

/* Waitlist Form Section */
.waitlist-form-section {
    background-color: var(--color-light);
    padding-bottom: 80px;
    text-align: center; /* Center align all text content within this section */
}

.waitlist-form-section h2 {
    /* text-align: center; Inherited from section now */
}

.waitlist-form-section p {
    /* text-align: center; Inherited from section now */
    max-width: 700px; /* Retain max-width for readability */
    margin-left: auto; /* Center the paragraph block */
    margin-right: auto; /* Center the paragraph block */
    margin-bottom: 1.5em; /* Existing margin */
    color: var(--color-gray); /* Existing color */
    font-size: 1.15rem; /* Match other sub-headlines if this is one */
}

.tally-form-embed-container { /* Changed from -placeholder */
    width: 100%;
    max-width: 650px; /* Max width for the form for better readability */
    margin: 20px auto 0 auto;
    /* Removing placeholder styles: 
    min-height: 300px; 
    background-color: #f9f9f9;
    border: 2px dashed var(--color-gray);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    color: var(--color-gray);
    */
}

.tally-form-embed-container iframe {
    display: block; /* Ensures iframe behaves as a block element */
    border-radius: var(--card-border-radius); /* Optional: match card rounding */
    box-shadow: var(--card-shadow); /* Optional: add a subtle shadow */
}

/* Final CTA Section */
.final-cta-section {
    background-color: var(--color-secondary);
    padding: 80px 0;
    text-align: center; /* Ensure text and button are centered */
}
.final-cta-section h2 {
    color: var(--color-light);
    font-size: 2.5rem;
}
.final-cta-section p.sub-headline {
    color: rgba(255,255,255,0.85);
    margin-bottom: 30px;
}
/* Specific styles for .final-cta-section .btn-primary can be removed or merged if covered by .btn-primary.btn-large */
/*
.final-cta-section .btn-primary {
    background-color: var(--color-primary);
    color: var(--color-dark);
    transform: scale(1.05);
}
.final-cta-section .btn-primary:hover {
     box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}
*/

/* Footer Section */
.footer-section {
    background-color: var(--color-dark);
    color: var(--color-gray);
    text-align: center;
    padding: 40px 0;
    font-size: 0.9rem;
}

.footer-section p {
    margin: 0; /* Removed bottom margin as it's the only element now */
    color: var(--color-gray);
}

/* Responsive Design */
@media (max-width: 992px) {
    .why-join-grid {
        grid-template-columns: 1fr; /* Stack on tablet and mobile */
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .hero-section h1 { 
        font-size: 2.2rem; /* Adjust for mobile */
        /* text-align: center; Will be inherited from .hero-content */
    }
    .hero-section .sub-headline { 
        font-size: 1rem; 
        /* text-align: center; Will be inherited from .hero-content */
    }
    h2 { font-size: 1.8rem; }
    p.sub-headline, p.section-sub-headline { font-size: 1rem; }

    .two-column-layout { flex-direction: column; }
    .what-is-lumee-section h2 { text-align: center; }
    .what-is-lumee-section .visual-placeholder { height: 250px; }

    .features-grid,
    .lumee-cards-grid { /* Ensure it stacks on mobile too */
        grid-template-columns: 1fr;
    }

    .shape { opacity: 0.05; }
    .shape-1 { width: 150px; height: 150px; top: 5%; left: -75px;}
    .shape-2 { width: 100px; height: 100px; top: 70%; right: -50px;}
    .shape-3 { width: 120px; height: 120px; bottom: 2%; left: 10%;}
    .shape-4 { width: 180px; height: 180px; top: 15%; right: -90px;}

    .btn { padding: 10px 24px; font-size: 1rem; }
    .btn-large { padding: 12px 30px; font-size: 1.1rem; }

    .final-cta-section h2 { font-size: 2rem;}
    .lumee-card-content .card-description { font-size: 0.85rem; }
    .lumee-card-image { height: 180px; } /* Adjust image height on mobile */

    .hero-layout {
        flex-direction: column;
        /* text-align: center; Removed, will be handled by hero-content directly */
    }
    .hero-content {
        margin-bottom: 30px;
        text-align: center; /* Ensure text and buttons container are centered */
    }
    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-buttons .btn {
        margin-right: 0;
        margin-bottom: 10px;
        margin-left: 0; /* Ensure symmetrical horizontal margins for centering */
    }
    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }

    .what-is-lumee-section h2 { text-align: center; }
    /* .what-is-lumee-section .visual-placeholder { height: 250px; } */ /* Already removed */
}

/* Animations & Accessibility */
section:not(.footer-section):not(.final-cta-section) {
    animation: fadeInSection 0.8s ease-in-out forwards;
    opacity: 0;
}

@keyframes fadeInSection {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

#what-is-lumee { animation-delay: 0.1s; }
#why-join { animation-delay: 0.2s; }
#waitlist { animation-delay: 0.3s; }
#how-it-works { animation-delay: 0.4s; }
#glimpse-of-magic { animation-delay: 0.6s; }

.footer-section, .final-cta-section { animation: none; opacity: 1;}

a:focus, .btn:focus {
    outline: 2px solid var(--color-secondary);
    outline-offset: 3px;
}

/* Removing button ripple effect for cleaner look, can be re-added if desired */
/*
.btn::after { 
    content: ""; display: block; position: absolute;
    width: 100%; height: 100%; top: 0; left: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, var(--color-dark) 10%, transparent 10.01%);
    background-repeat: no-repeat; background-position: 50%;
    transform: scale(10, 10); opacity: 0;
    transition: transform .3s, opacity .5s;
}

.btn:active::after {
    transform: scale(0, 0); opacity: .2;
    transition: 0s;
}
*/

/* Coming Soon Section */
.coming-soon-section {
    background: var(--color-background);
    padding: 60px 0;
    position: relative;
    overflow: visible;
    margin-top: 40px;
}

@keyframes bobbing {
    0%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    50% {
        transform: translateY(12px) translateX(-50%);
    }
}

.coming-soon-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    width: 4px;  /* Made dots wider */
    height: 75px;
    background-image: radial-gradient(circle at center, var(--color-secondary) 3px, transparent 3px); /* Larger dots */
    background-size: 4px 10px; /* Adjusted spacing for larger dots */
    background-repeat: repeat-y;
    animation: bobbing 1.5s ease-in-out infinite;
}

@keyframes bobbingArrow {
    0%, 100% {
        transform: translateY(0) translateX(-50%) rotate(45deg);
    }
    50% {
        transform: translateY(12px) translateX(-50%) rotate(45deg);
    }
}

.coming-soon-section::after {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    width: 24px;  /* Larger arrow */
    height: 24px;  /* Larger arrow */
    border-right: 3px solid var(--color-secondary);  /* Thicker border */
    border-bottom: 3px solid var(--color-secondary);  /* Thicker border */
    animation: bobbingArrow 1.5s ease-in-out infinite;
    border-radius: 0 0 4px 0;  /* Added curve to the arrow point */
}

@media (prefers-reduced-motion: reduce) {
    .coming-soon-section::before,
    .coming-soon-section::after {
        animation: none;
    }
}

.teaser-card {
    background: var(--color-light);
    border-radius: 24px;
    padding: 60px 40px 40px;  /* Increased top padding */
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 2px solid var(--color-primary);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #FFFFFF 0%, #FEFAED 100%);
}

.teaser-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(248, 209, 0, 0.05) 0%, transparent 60%),
                radial-gradient(circle at 70% 50%, rgba(0, 195, 231, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.teaser-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding-top: 40px;  /* Increased padding to create space below sparkle */
}

.coming-soon-section h3 {
    color: var(--color-dark);
    font-size: 2.2rem;
    margin-bottom: 0.8em;
    position: relative;
    display: inline-block;
}

.coming-soon-section h3::before {
    content: 'UPDATE:';
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 4px;
    background: linear-gradient(120deg, var(--color-secondary) 0%, #00a3c7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.coming-soon-section h3 span {
    background: linear-gradient(120deg, var(--color-dark) 0%, #404040 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-size: 2.4rem;
    letter-spacing: -0.5px;
    display: block;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.coming-soon-section .feature-icon {
    width: 48px;
    height: 48px;
    color: var(--color-primary);
    stroke: var(--color-primary);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -24px;
    margin-bottom: 0;
}

.teaser-text {
    color: var(--color-gray);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5em;
}

.teaser-highlight {
    display: flex;
    align-items: center;
    gap: 0.5em;
    background-color: rgba(var(--color-secondary-rgb), 0.1);
    border-left: 4px solid var(--color-secondary);
    padding: 15px 20px;
    margin-top: 20px;
    border-radius: 8px;
    font-size: 0.95rem;
}

.highlight-icon {
    font-size: 24px;
    line-height: 1;
}

.teaser-highlight p {
    color: var(--color-dark);
    font-size: 1rem;
    margin: 0;
    flex: 1;
}

.teaser-text strong {
    color: var(--color-secondary);
    font-weight: 700;
}

@media (max-width: 768px) {
    .coming-soon-section {
        padding: 40px 0;
        margin-top: 30px;
    }

    .coming-soon-section::before {
        height: 40px;
        top: -60px;
    }

    .coming-soon-section::after {
        top: -25px;
        width: 16px;
        height: 16px;
    }

    .teaser-card {
        padding: 30px 20px;
    }

    .coming-soon-section h3 {
        font-size: 1.8rem;
    }
    
    .teaser-text {
        font-size: 1rem;
    }

    .teaser-highlight {
        padding: 15px 20px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .highlight-icon {
        font-size: 20px;
    }

    .coming-soon-section h3::before {
        font-size: 1.1rem;
        margin-bottom: 4px;
    }

    .coming-soon-section h3 span {
        font-size: 2rem;
    }
}

.purpose-card {
    background: var(--color-light);
    border-radius: var(--card-border-radius);
    box-shadow: var(--card-shadow);
    padding: 25px; /* Original internal padding */
    /* margin: 10px; */ /* Remove margin from base, will be overridden or handled by gap */
    flex: 1; 
    min-width: 300px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 2px solid transparent; /* Base border, specific cards override color */
    box-sizing: border-box; 
}

.purpose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1); /* Using a similar shadow to other cards */
}

.purpose-card .card-content {
    padding: 10px;
}

.purpose-card h2 {
    font-size: 1.8rem;
    margin-bottom: 0.3em;
    color: var(--color-dark);
}

.purpose-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5em;
    color: var(--color-gray);
}

.purpose-card p {
    margin-bottom: 0.8em;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0.8em 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5em;
    font-size: 0.95rem;
}

.list-icon {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    flex-shrink: 0;
}

.card-highlight {
    background: rgba(var(--color-primary-rgb), 0.1);
    border-radius: 12px;
    padding: 12px;
    margin-top: 0.8em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-highlight p {
    margin: 0;
    font-size: 0.9rem;
}

.feature-icon.large-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
}

.learning-card {
    border: 2px solid var(--color-accent);
}

.learning-card h2 {
    color: var(--color-accent);
}

.learning-card .list-icon {
    color: var(--color-accent);
}

.adventure-card {
    border: 2px solid var(--color-accent-alt);
}

.adventure-card h2 {
    color: var(--color-accent-alt);
}

.adventure-card .list-icon {
    color: var(--color-accent-alt);
}

.purpose-card h2 {
    margin: 20px 0 10px;
    text-align: left;
}

.purpose-card h3 {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: var(--color-text);
    text-align: left;
}

.purpose-card p {
    text-align: left;
}

.card-highlight {
    margin-top: auto;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
}

.learning-card .card-highlight {
    background: rgba(var(--color-accent-rgb), 0.05);
}

.adventure-card .card-highlight {
    background: rgba(var(--color-accent-alt-rgb), 0.05);
}

.highlight-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.dual-cards {
    display: flex;
    gap: 20px; /* Gap between cards on desktop */
    justify-content: center; 
}

@media (max-width: 768px) {
    .dual-cards {
        flex-direction: column;
        align-items: center; 
    }

    .dual-cards .purpose-card {
        width: 100%; 
        max-width: 500px; /* Optional: prevent cards from becoming too wide on larger mobile/small tablet */
        margin-bottom: 20px; 
        margin-left: 0; /* Ensure no unintended horizontal margin */
        margin-right: 0; /* Ensure no unintended horizontal margin */
        flex: 1 1 auto; /* Allow card to grow/shrink but base on its content */
    }

    .dual-cards .purpose-card:last-child {
        margin-bottom: 0;
    }
}

/* Ensure the global --color-dark-rgb variable exists if not already defined elsewhere */
:root {
    /* ... other root variables ... */
    --color-dark-rgb: 31, 31, 31; /* Fallback if not set, ensure this matches your --color-dark */
}

/* ... existing code ... */

.dual-purpose-section .card-highlight {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    display: flex; /* Added for vertical alignment */
    align-items: center; /* Added for vertical alignment */
}

.learning-card .card-highlight {
    background: rgba(var(--color-accent-rgb), 0.05);
}

/* Floating Share Button Styles */
.floating-share-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--color-primary); /* Yellow */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.2s ease, box-shadow 0.2s ease; /* Updated transition */
}

.floating-share-btn:hover {
    /* background-color: var(--color-primary-dark); */ /* Removed color change */
    transform: scale(1.05); /* Only scale, no translateY */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25); /* Enhanced shadow */
}

.floating-share-btn svg {
    width: 24px; /* Adjust size as needed */
    height: 24px;
    stroke: var(--color-dark); /* Changed to Dark/Black */
    color: var(--color-dark);   /* Fallback for fill, also Dark/Black */
}

/* Responsive adjustments for the floating button if needed */
@media (max-width: 768px) {
    .floating-share-btn {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
    }
    .floating-share-btn svg { /* Changed selector from i to svg */
        width: 20px;
        height: 20px;
    }
}

/* Site Header Styles */
.site-header {
    background-color: var(--color-dark);
    padding: 10px 0;
}

.site-header-container {
    text-align: center;
}

.site-logo-link {
    text-decoration: none;
}

.site-title-text {
    font-family: var(--font-display);
    color: var(--color-primary); /* Lumee in yellow */
    font-size: 2rem;
    font-weight: normal; /* Fredoka One is already bold */
} 