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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', sans-serif;
    background: 
        linear-gradient(180deg, 
            #689F38 0%,
            #558B2F 100%
        );
    color: #1a1a1a;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    scroll-behavior: smooth;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 280px;
    background: 
        linear-gradient(180deg, 
            #B0E0E6 0%,
            #87CEEB 30%,
            #6BB6FF 90%,
            #7CB342 100%
        );
    z-index: 0;
    pointer-events: none;
    will-change: height;
}


.container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    padding-top: 3rem;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
    overflow-x: hidden;
}

.coming-soon {
    text-align: center;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #1a1a1a;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 2rem;
    margin-bottom: 0;
    padding: 0.625rem 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    display: inline-block;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.waitlist-section {
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 3rem;
    width: 100%;
    max-width: 500px;
}

.waitlist-cta {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
    margin-bottom: 0;
}

.waitlist-input-group {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.waitlist-email-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    color: #1a1a1a;
    transition: all 0.3s ease;
    outline: none;
    min-height: 44px;
}

.waitlist-email-input:focus {
    border-color: rgba(255, 140, 0, 0.6);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 4px rgba(255, 140, 0, 0.1);
}

.waitlist-email-input::placeholder {
    color: rgba(26, 26, 26, 0.5);
}

.waitlist-email-input.error {
    border-color: rgba(255, 59, 48, 0.6);
    background: rgba(255, 255, 255, 0.95);
}

.waitlist-submit-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    color: #ffffff;
    background: linear-gradient(135deg, #FF8C00 0%, #FF6B35 100%);
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 140, 0, 0.3);
    min-width: 140px;
    min-height: 44px;
    position: relative;
    overflow: hidden;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.waitlist-submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
    background: linear-gradient(135deg, #FF9500 0%, #FF7A45 100%);
}

.waitlist-submit-btn:active:not(:disabled) {
    transform: translateY(0);
}

.waitlist-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.waitlist-submit-btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

.waitlist-submit-btn.loading {
    color: transparent;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.waitlist-submit-btn.success {
    background: linear-gradient(135deg, #34C759 0%, #30D158 100%);
    box-shadow: 0 4px 16px rgba(52, 199, 89, 0.3);
}

.waitlist-error-message {
    color: #FF3B30;
    font-size: 0.875rem;
    margin-top: -0.5rem;
    text-align: left;
    padding-left: 0.5rem;
    display: none;
}

.waitlist-error-message.show {
    display: block;
}

.waitlist-success-message {
    color: #1a1a1a;
    font-size: 0.9375rem;
    font-weight: 500;
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(52, 199, 89, 0.15);
    border: 2px solid rgba(52, 199, 89, 0.4);
    border-radius: 12px;
    display: none;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(52, 199, 89, 0.2);
}

.waitlist-success-message .success-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    background: #34C759;
    color: #ffffff;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.waitlist-success-message.show {
    display: block;
    animation: slideInSuccess 0.3s ease-out;
}

@keyframes slideInSuccess {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.waitlist-social-proof {
    font-size: 0.875rem;
    color: rgba(26, 26, 26, 0.7);
    margin-top: 1rem;
    font-weight: 500;
}

.waitlist-reassurance {
    font-size: 0.875rem;
    color: rgba(26, 26, 26, 0.8);
    margin-top: 0.5rem;
    margin-bottom: 0;
    line-height: 1.5;
    word-wrap: break-word;
    font-weight: 500;
}

.privacy-link {
    color: rgba(26, 26, 26, 0.7);
    text-decoration: underline;
    margin-left: 0.25rem;
    transition: color 0.2s ease;
}

.privacy-link:hover {
    color: #1a1a1a;
}

.turnstile-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    height: 52px;
    min-height: 52px;
    padding: 0;
    /* Safari optimization: isolate rendering context */
    isolation: isolate;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: contents;
    /* Ensure proper stacking and touch handling */
    position: relative;
    z-index: 10;
    /* Safari touch optimization */
    touch-action: manipulation;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    /* Prevent any overlays from blocking */
    pointer-events: auto;
}

.turnstile-container .cf-turnstile {
    margin: 0 auto;
    /* Ensure widget is interactive */
    position: relative;
    z-index: 11;
    pointer-events: auto;
    touch-action: manipulation;
}

/* Style the Turnstile iframe to match site design */
.turnstile-container iframe {
    border-radius: 12px;
}

/* Ensure Turnstile widget doesn't cause layout shifts */
.cf-turnstile {
    display: block !important;
    /* Safari optimization: hardware acceleration */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    /* Prevent Safari from blocking iframe interactions */
    pointer-events: auto !important;
    touch-action: manipulation;
    -webkit-touch-callout: none;
    /* Ensure proper positioning */
    position: relative;
    z-index: 12;
}

/* Safari-specific: Optimize iframe rendering */
.cf-turnstile iframe {
    transform: translateZ(0) !important;
    -webkit-transform: translateZ(0) !important;
    will-change: transform;
    /* Ensure iframe is interactive */
    pointer-events: auto !important;
    touch-action: manipulation;
    /* Force hardware acceleration */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    /* Prevent selection issues */
    -webkit-user-select: none;
    user-select: none;
}

/* Ensure no parent elements block interaction */
.waitlist-form {
    position: relative;
    z-index: 1;
}

.waitlist-form > * {
    position: relative;
}


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

.animation-container {
    width: 350px;
    height: 350px;
    max-width: 100%;
    margin: -3rem auto 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

#lottie-animation {
    width: 100%;
    height: 100%;
}

.def-card {
    max-width: 700px;
    padding: 1.5rem 1.75rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    margin: 0 auto 3rem;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
}

.def-kicker {
    font: 600 11px/1 system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(20, 20, 20, 0.55);
    margin-bottom: 8px;
}

.def-term {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: #FF8C00;
    margin: 0 0 8px 0;
}

.def-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.def-pron {
    font-family: ui-serif, "Iowan Old Style", "Palatino", "Georgia", serif;
    font-style: italic;
    font-size: 14px;
    letter-spacing: 0.01em;
    color: rgba(20, 20, 20, 0.68);
}

.def-pos {
    font: 700 12px/1.0 system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    letter-spacing: .02em;
    color: rgba(20, 20, 20, 0.70);
    padding: 6px 9px;
    border-radius: 999px;
    border: 1px solid rgba(20, 20, 20, 0.14);
    background: rgba(255, 255, 255, 0.55);
    white-space: nowrap;
}

.def-divider {
    height: 1px;
    background: rgba(20, 20, 20, 0.12);
    margin: 0 0 10px 0;
}

.def-body {
    font: 450 16px/1.55 system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    color: rgba(20, 20, 20, 0.88);
    margin: 0;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FF8C00;
    text-align: center;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 0.75rem;
    margin-top: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-headline {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.3;
    max-width: 650px;
    padding: 0 2rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-wrap: balance;
    hyphens: none;
    orphans: 2;
    widows: 2;
}

.app-store-badge-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.app-store-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.8);
    max-width: 100%;
    word-wrap: break-word;
    border-radius: 12px;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1a1a1a;
}

.device-mockups {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.85;
}

.device-mockup {
    flex-shrink: 0;
}

.iphone-mockup {
    width: 32px;
    height: auto;
}

.watch-mockup {
    width: 24px;
    height: auto;
}

.app-store-badge-icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-store-badge-icon svg {
    width: 100%;
    height: 100%;
}


.why-section {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 0;
    padding: 0 2rem;
}

.why-headline {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

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

.why-benefit {
    text-align: center;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.why-benefit:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.75);
}

.why-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF8C00;
}

.why-icon svg {
    width: 32px;
    height: 32px;
}

.why-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.why-text {
    font: 450 16px/1.55 system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    color: rgba(20, 20, 20, 0.88);
    margin: 0;
}

.why-tagline {
    text-align: center;
    font: 450 16px/1.55 system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    font-style: italic;
    color: rgba(20, 20, 20, 0.88);
    margin-top: 2rem;
    margin-bottom: -3rem;
    padding: 0 1rem;
}

.animation-container {
    margin-top: -4rem;
    margin-bottom: 0;
}

.social-sharing-section {
    text-align: center;
    margin: 0 auto 3rem;
    padding: 0 2rem;
    max-width: 600px;
}

.social-headline {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.social-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    font-family: inherit;
    color: #1a1a1a;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    min-height: 44px;
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.85);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.social-btn-icon-only {
    padding: 0.75rem;
    border-radius: 50%;
    aspect-ratio: 1;
    min-width: 44px;
    min-height: 44px;
}

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

.site-footer {
    width: 100%;
    margin-top: 4rem;
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-link {
    color: rgba(26, 26, 26, 0.7);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #1a1a1a;
}

.footer-separator {
    margin: 0 0.75rem;
    color: rgba(26, 26, 26, 0.4);
}

.footer-copyright {
    font-size: 0.875rem;
    color: rgba(26, 26, 26, 0.6);
}

.scroll-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (min-width: 769px) {
}

@media (max-width: 768px) {
    .container {
        padding: 1.5rem 1rem;
        padding-top: 1rem;
        width: 100%;
        max-width: 100%;
    }
    
    .waitlist-section {
        max-width: 100%;
        padding: 0 0.5rem;
        margin-bottom: 2rem;
    }
    
    .waitlist-cta {
        font-size: 1.125rem;
        margin-bottom: 1.25rem;
    }
    
    .waitlist-input-group {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .waitlist-email-input {
        min-width: 100%;
        width: 100%;
    }
    
    .turnstile-container {
        width: 100%;
        height: 52px;
        min-height: 52px;
        padding: 0;
    }
    
    .waitlist-submit-btn {
        width: 100%;
    }
    
    .waitlist-reassurance {
        font-size: 0.8125rem;
        padding: 0 0.5rem;
        color: rgba(26, 26, 26, 0.75);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-headline {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        padding: 0 1rem;
        text-wrap: balance;
    }
    
    .app-store-badge-container {
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .app-store-badge {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }
    
    .device-mockups {
        gap: 0.75rem;
    }
    
    .iphone-mockup {
        width: 28px;
    }
    
    .watch-mockup {
        width: 21px;
    }
    
    .animation-container {
        width: 100%;
        max-width: 300px;
        height: 300px;
        margin: -2rem auto 0.5rem;
    }
    
    .def-card {
        padding: 18px;
        border-radius: 18px;
        margin-bottom: 2rem;
        margin-left: 1rem;
        margin-right: 1rem;
    }
    
    .def-term {
        font-size: 1.125rem;
    }
    
    .def-body {
        font-size: 15px;
    }
    
    .def-pron {
        font-size: 13px;
    }
    
    .why-section {
        padding: 0 1rem;
        margin-bottom: 0;
    }
    
    .why-headline {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .why-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-benefit {
        padding: 1.5rem;
    }
    
    .why-text {
        font-size: 15px;
    }
    
    .why-tagline {
        font-size: 15px;
        margin-top: 1.5rem;
        margin-bottom: -2.5rem;
    }
    
    .animation-container {
        margin-top: -3rem;
    }
    
    .social-sharing-section {
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
    
    .social-headline {
        font-size: 1.125rem;
        margin-bottom: 1.25rem;
    }
    
    .social-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
    }
    
    .social-btn {
        width: auto;
        min-width: 120px;
        justify-content: center;
    }
    
    .social-btn-icon-only {
        width: 44px;
        min-width: 44px;
        max-width: 44px;
        flex-shrink: 0;
    }
    
    .site-footer {
        padding: 1.5rem 1rem;
        margin-top: 3rem;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem 0.75rem;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-title {
        padding: 0 0.5rem;
    }
    
    .waitlist-section {
        margin-bottom: 1.5rem;
    }
    
    .waitlist-cta {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .waitlist-email-input {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-headline {
        font-size: 1.25rem;
        line-height: 1.3;
        text-wrap: balance;
    }
    
    .app-store-badge-container {
        gap: 0.75rem;
    }
    
    .app-store-badge {
        font-size: 0.8125rem;
        padding: 0.5rem 0.875rem;
    }
    
    .app-store-badge-icon {
        width: 16px;
        height: 16px;
    }
    
    .device-mockups {
        display: none;
    }
    
    .iphone-mockup {
        width: 24px;
    }
    
    .watch-mockup {
        width: 18px;
    }
    
    .animation-container {
        max-width: 250px;
        height: 250px;
        margin: -1.5rem auto 0.5rem;
    }
    
    .def-card {
        padding: 16px;
        border-radius: 16px;
        margin-bottom: 1.5rem;
        margin-left: 0.75rem;
        margin-right: 0.75rem;
    }
    
    .def-term {
        font-size: 1.25rem;
    }
    
    .def-body {
        font-size: 14px;
    }
    
    .def-pron {
        font-size: 12px;
    }
    
    .def-pos {
        font-size: 11px;
        padding: 5px 8px;
    }
    
    .why-headline {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .why-benefit {
        padding: 1.25rem;
    }
    
    .why-title {
        font-size: 1.25rem;
    }
    
    .why-text {
        font-size: 14px;
    }
    
    .why-tagline {
        font-size: 14px;
        margin-top: 1.25rem;
        margin-bottom: -2rem;
    }
    
    .animation-container {
        margin-top: -2.5rem;
    }
    
    .social-headline {
        font-size: 1rem;
    }
}
    </style>
