:root {
    /* Colors */
    --bg-dark: #090a0f;
    --bg-darker: #050608;
    --bg-panel: rgba(13, 17, 23, 0.4);
    
    --accent-emerald: #10b981;
    --accent-emerald-glow: rgba(16, 185, 129, 0.3);
    --accent-gold: #fbbf24;
    --accent-jade: #059669;
    
    --text-main: #e2e8f0;
    --text-muted: #94a3b8;
    --text-heading: #ffffff;
    
    --border-glass: rgba(255, 255, 255, 0.05);
    --border-glass-hover: rgba(255, 255, 255, 0.1);
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing & Sizes */
    --container-width: 1200px;
    --container-padding: 2rem;
    --section-padding: clamp(4rem, 10vh, 8rem);
    
    /* Fluid Type */
    --h1-size: clamp(3rem, 6vw + 1rem, 6rem);
    --h2-size: clamp(2rem, 4vw + 1rem, 4rem);
    --h3-size: clamp(1.25rem, 2vw + 0.5rem, 2rem);
    --text-base: clamp(1rem, 1vw + 0.5rem, 1.125rem);
    --text-large: clamp(1.125rem, 1.5vw + 0.5rem, 1.25rem);
    
    /* Spotlight */
    --mouse-x: 50%;
    --mouse-y: 50%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none; /* Hide default cursor for custom cursor */
}

/* Custom Cursor */
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: var(--accent-emerald);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.3s, height 0.3s, background-color 0.3s;
}

.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent-emerald-glow);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9998;
    transition: width 0.3s, height 0.3s, border-color 0.3s;
}

/* Cursor Hover States */
body.cursor-hover .cursor-dot {
    width: 0;
    height: 0;
}
body.cursor-hover .cursor-outline {
    width: 60px;
    height: 60px;
    background-color: var(--border-glass-hover);
    border-color: var(--accent-gold);
    backdrop-filter: invert(100%) grayscale(100%);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-heading);
    font-weight: 400;
    line-height: 1.1;
}

p {
    font-size: var(--text-base);
    color: var(--text-muted);
}

.text-accent {
    color: var(--accent-gold);
    font-style: italic;
}

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

.section {
    padding: var(--section-padding) 0;
    position: relative;
    z-index: 10;
}

.section-title {
    font-size: var(--h2-size);
    margin-bottom: 3rem;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: -2rem auto 4rem;
    font-size: var(--text-large);
}

/* Aurora Background */
.aurora-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
    background: var(--bg-dark);
}

.blob {
    position: absolute;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 20s infinite ease-in-out alternate;
    mix-blend-mode: screen;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--accent-jade) 0%, transparent 70%);
    animation-delay: 0s;
}

.blob-2 {
    bottom: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, #0f172a 0%, transparent 70%);
    animation-delay: -5s;
}

.blob-3 {
    top: 30%;
    left: 40%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    animation-delay: -10s;
}

.noise-overlay {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
}

/* Glassmorphism Components */
.glass-card {
    background: var(--bg-panel);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 2.5rem;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Spotlight Effect */
.spotlight-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        800px circle at var(--mouse-x) var(--mouse-y),
        rgba(255, 255, 255, 0.06),
        transparent 40%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.spotlight-card:hover::before {
    opacity: 1;
}

.spotlight-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: radial-gradient(
        400px circle at var(--mouse-x) var(--mouse-y),
        rgba(255, 255, 255, 0.3),
        transparent 40%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.spotlight-card:hover::after {
    opacity: 1;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 0;
    transition: transform 0.3s ease, background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.header.scrolled {
    background: rgba(9, 10, 15, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glass);
    padding: 1rem 0;
}

.header.hidden {
    transform: translateY(-100%);
}

.header-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-heading);
    text-decoration: none;
}

.logo-icon {
    color: var(--accent-emerald);
}

.nav {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-emerald);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--text-heading);
}

.nav-link:hover::after {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 100px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    cursor: none; /* For custom cursor */
    border: none;
    outline: none;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

.btn-primary:hover {
    background: var(--text-muted);
    transform: translateY(-2px);
}

.btn-glow {
    background: transparent;
    color: var(--text-heading);
    position: relative;
    border: 1px solid var(--border-glass);
}

.btn-glow::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--accent-jade), var(--accent-emerald));
    opacity: 0.2;
    transition: opacity 0.3s ease;
}

.btn-glow:hover::before {
    opacity: 0.4;
}

.btn-glow:hover {
    border-color: var(--accent-emerald);
    box-shadow: 0 0 20px var(--accent-emerald-glow);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-glass);
}

.btn-secondary:hover {
    background: var(--border-glass);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-heading);
    border: 1px solid var(--border-glass);
    width: 100%;
    margin-top: 1.5rem;
}

.btn-outline:hover {
    background: var(--text-heading);
    color: var(--bg-dark);
}

.w-100 {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 var(--container-padding);
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    background: var(--border-glass);
    border: 1px solid var(--border-glass-hover);
    color: var(--accent-emerald);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: var(--h1-size);
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text-reveal {
    display: block;
    overflow: hidden;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: var(--text-large);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(250px, auto);
    gap: 1.5rem;
}

.bento-card {
    background: var(--bg-panel);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card:hover {
    transform: translateY(-5px);
}

.bento-card h3 {
    font-size: var(--h3-size);
    margin-bottom: 1rem;
    z-index: 2;
}

.bento-card p {
    font-size: 0.95rem;
    z-index: 2;
    flex-grow: 1;
}

.bento-icon {
    width: 32px;
    height: 32px;
    color: var(--accent-emerald);
    margin-bottom: 1.5rem;
    z-index: 2;
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-wide {
    grid-column: span 3;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3rem;
}

.bento-wide .bento-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 0;
    flex-shrink: 0;
}

.bento-wide-content {
    display: flex;
    flex-direction: column;
}

.bento-img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 60%;
    object-fit: cover;
    opacity: 0.4;
    mask-image: linear-gradient(to top left, black, transparent);
    -webkit-mask-image: linear-gradient(to top left, black, transparent);
    transition: transform 0.5s ease;
    z-index: 1;
}

.bento-card:hover .bento-img {
    transform: scale(1.05);
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-glass);
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%; /* Animated via JS */
    background: linear-gradient(to bottom, var(--accent-emerald), var(--accent-jade));
    box-shadow: 0 0 10px var(--accent-emerald-glow);
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 4rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 17px;
    top: 40px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 2px solid var(--accent-emerald);
    z-index: 2;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item.active .timeline-dot {
    background: var(--accent-emerald);
    box-shadow: 0 0 15px var(--accent-emerald-glow);
}

.timeline-content {
    padding: 2rem;
}

.timeline-step {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: -10px;
    right: 30px;
    line-height: 1;
    pointer-events: none;
}

.timeline-content h3 {
    font-size: var(--h3-size);
    margin-bottom: 1rem;
    color: var(--text-heading);
}

/* Video Section */
.video-section {
    padding: 2rem 0 var(--section-padding);
}

.video-container {
    border-radius: 32px;
    padding: 1rem;
    position: relative;
}

.video-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: #000;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.5s ease;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
    backdrop-filter: blur(4px);
}

.video-overlay.is-playing {
    opacity: 0;
    pointer-events: none;
}

.play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: none;
    transition: transform 0.3s ease, background 0.3s ease;
    margin-bottom: 2rem;
}

.play-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.play-icon {
    width: 32px;
    height: 32px;
    margin-left: 6px; /* Visual center adjustment */
}

.video-info {
    text-align: center;
}

.video-info h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.video-info p {
    color: rgba(255, 255, 255, 0.8);
}

.video-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle at center, var(--accent-emerald-glow) 0%, transparent 70%);
    z-index: -1;
    filter: blur(40px);
    opacity: 0.5;
}

/* Phytonutrients Section */
.phyto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.phyto-card {
    padding: 1.5rem;
}

.phyto-img-wrapper {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    margin-bottom: 1.5rem;
}

.phyto-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.phyto-card:hover .phyto-img-wrapper img {
    transform: scale(1.05);
}

.phyto-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-emerald);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.phyto-content h3 {
    margin-bottom: 0.5rem;
}

/* Events Section */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.event-card {
    display: flex;
    align-items: center;
    padding: 2rem;
    gap: 2rem;
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    flex-shrink: 0;
}

.event-date .day {
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1;
    color: var(--accent-gold);
}

.event-date .month {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.event-info {
    flex-grow: 1;
}

.event-info h3 {
    margin-bottom: 0.5rem;
}

.event-card .btn {
    width: auto;
    margin-top: 0;
    white-space: nowrap;
}

/* Footer & Form */
.footer {
    position: relative;
    padding: var(--section-padding) 0 2rem;
    overflow: hidden;
    background: linear-gradient(to bottom, transparent, var(--bg-darker));
    border-top: 1px solid var(--border-glass);
}

.footer-bg-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    opacity: 0.02;
    z-index: 0;
    pointer-events: none;
}

.footer-bg-logo svg {
    width: 100%;
    height: 100%;
}

.footer-container {
    position: relative;
    z-index: 10;
}

.footer-contact {
    max-width: 600px;
    margin: 0 auto 6rem;
    text-align: center;
}

.footer-contact h2 {
    font-size: var(--h2-size);
    margin-bottom: 1rem;
}

.footer-contact p {
    margin-bottom: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

.input-group {
    position: relative;
}

.input-group input {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 1.25rem 1rem 0.5rem;
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.input-group input:focus {
    border-color: var(--accent-emerald);
    background: rgba(0, 0, 0, 0.4);
}

.input-group label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: var(--text-muted);
    font-size: 1rem;
    transition: all 0.3s ease;
    pointer-events: none;
}

.input-group input:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label {
    top: 0.35rem;
    font-size: 0.75rem;
    color: var(--accent-emerald);
}

.footer-links {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-desc {
    margin-top: 1.5rem;
    font-size: 0.95rem;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--accent-emerald);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-glass);
    font-size: 0.875rem;
}

.legal {
    display: flex;
    gap: 2rem;
}

.legal a {
    color: var(--text-muted);
    text-decoration: none;
}

.legal a:hover {
    color: white;
}

/* Lead Modal */
.lead-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lead-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.lead-modal {
    max-width: 460px;
    width: 100%;
    margin: 1rem;
    position: relative;
    text-align: center;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.3s ease;
}

.lead-modal-overlay.active .lead-modal {
    transform: translateY(0) scale(1);
}

.lead-modal h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    margin-bottom: 2rem !important;
}

.lead-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
    z-index: 10;
}

.lead-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-heading);
}

.lead-modal-close svg {
    width: 18px;
    height: 18px;
}

.modal-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 0;
}

.modal-success h3 {
    color: var(--accent-emerald);
    font-family: var(--font-heading);
    font-size: 1.5rem;
}

/* Utilities for JS Animation */
.fade-up {
    opacity: 0;
    transform: translateY(50px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bento-large {
        grid-column: span 2;
    }
    
    .bento-wide {
        grid-column: span 2;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none; /* In a real app, implement a hamburger menu */
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .event-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-step {
        display: none;
    }
}

@media (max-width: 640px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-large, .bento-wide {
        grid-column: span 1;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    /* Hide custom cursor on touch devices */
    .cursor-dot, .cursor-outline {
        display: none;
    }
    
    body {
        cursor: auto;
    }
    
    .btn {
        cursor: pointer;
    }
}
