/* ===================================
   OneClub Index Page Styles
   =================================== */

/* CSS Variables */
:root {
    --color-gold: #FFC857;
    --color-gold-light: #ffc757b2;
    --color-gold-dark: #FFC857;
    --color-black: #000000;
    --color-dark: #0e0e0eff;
    --color-dark-gray: #111111ff;
    --color-medium-gray: #0b0b0bdc;
    --color-light-gray: #888888;
    --color-white: #FFFFFF;
    --color-text: #ffffffff;
    --color-text-muted: #999999;
    --color-dark-blue: #000036;

    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

img {
    max-width: 100%;
    height: auto;
}

/* ===================================
   Navigation - Apple Style
   =================================== */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.5rem;
    height: 70px;
    background: var(--color-black);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    height: 100%;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.navbar-brand {
    display: flex;
    align-items: center;
    height: 48px;
}

.navbar-brand img {
    height: 40px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.navbar-brand:hover img {
    opacity: 1;
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 50px;
}

/* Dropdown Navigation */
.nav-dropdown {
    position: relative;
    height: 48px;
    display: flex;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    font-size: var(--font-size-sm);
    font-weight: 400;
    letter-spacing: 0;
    color: var(--color-text);
    padding: 0;
    cursor: pointer;
    height: 48px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 1);
}

.nav-link.active {
    color: rgba(255, 255, 255, 1);
}

.dropdown-arrow {
    width: 16px;
    height: 16px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 180px;
    background: var(--color-black);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.nav-dropdown-item {
    display: block;
    padding: 0.6rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    border-radius: 6px;
    transition: all 0.2s ease;
}

.nav-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 1);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-partner {
     display: block;
    padding: 0.6rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    border-radius: 6px;
    transition: all 0.2s ease;
}


.btn-partner:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 2rem;
}

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    width: 100%;
    max-width: 300px;
}

.mobile-nav-dropdown {
    width: 100%;
}

.mobile-nav-dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-text-muted);
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-nav-dropdown-trigger svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.mobile-nav-dropdown.open .mobile-nav-dropdown-trigger svg {
    transform: rotate(180deg);
}

.mobile-nav-dropdown-trigger:hover,
.mobile-nav-dropdown.open .mobile-nav-dropdown-trigger {
    color: var(--color-gold);
}

.mobile-nav-dropdown-content {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding: 0.75rem;
    background: var(--color-dark-gray);
    border-radius: var(--border-radius);
}

.mobile-nav-dropdown.open .mobile-nav-dropdown-content {
    display: flex;
}

.mobile-nav-dropdown-content a {
    font-size: 1rem;
    color: var(--color-text-muted);
    padding: 0.5rem;
    border-radius: 8px;
}

.mobile-nav-dropdown-content a:hover {
    color: var(--color-gold);
    background: rgba(201, 162, 39, 0.1);
}

.mobile-nav-divider {
    width: 50px;
    height: 1px;
    background: var(--color-medium-gray);
    margin: 0.5rem auto;
}

.btn-partner.mobile {
    margin-top: 1rem;
}

/* ===================================
   Hero Section
   =================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 140px 2rem 80px;
    position: relative;
    overflow: hidden;
    background: var(--color-black);
}

/* Hero Background Video */
.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--color-black);
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        linear-gradient(to bottom, 
            rgba(0, 0, 0, 0.6) 0%, 
            rgba(0, 0, 0, 0.65) 40%, 
            rgba(0, 0, 0, 0.75) 70%, 
            rgba(17, 17, 17, 1) 100%
        );
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

/* Hero Content Fade-In Animation */
.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: heroFadeUp 1s ease-out 0.2s both;
}

.text-white {
    color: var(--color-white);
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-gold) 0%, #8B7355 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 750px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    animation: heroFadeUp 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: heroFadeUp 1s ease-out 0.6s both;
}

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

@media (prefers-reduced-motion: reduce) {
    .hero-title,
    .hero-subtitle,
    .hero-buttons {
        animation: none;
    }
}

.btn-primary {
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
}

.btn-primary:hover {
    background: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3);
}

.btn-secondary {
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

/* ===================================
   Section Styles
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(201, 162, 39, 0.15);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 50px;
    color: var(--color-gold);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    line-height: 1.8;
}

/* ===================================
   Features Section
   =================================== */
.features-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Showcase: Cards links, Phone rechts */
.features-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: linear-gradient(180deg, var(--color-dark-gray) 0%, var(--color-black) 100%);
    border: 1px solid var(--color-medium-gray);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    transition: all 0.35s ease;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateX(8px);
    border-color: rgba(201, 162, 39, 0.3);
    background: linear-gradient(180deg, rgba(201, 162, 39, 0.06) 0%, var(--color-dark) 100%);
}

/* Aktive Feature-Card */
.feature-card.active {
    border-color: var(--color-gold);
    background: linear-gradient(180deg, rgba(201, 162, 39, 0.1) 0%, rgba(201, 162, 39, 0.03) 100%);
    transform: translateX(8px);
}

.feature-card.active .feature-icon {
    background: rgba(201, 162, 39, 0.25);
}

.feature-card.active .feature-text h3 {
    color: var(--color-gold);
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(201, 162, 39, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--color-gold);
}

.feature-text h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.4rem;
    transition: color 0.35s ease;
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* iPhone Mockup */
.features-phone {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    position: relative;
    width: 280px;
    height: 580px;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 12px;
    box-shadow:
        0 0 0 2px #333,
        0 0 0 4px #1a1a1a,
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(201, 162, 39, 0.08);
    overflow: hidden;
}

.phone-notch {
    display: none;
}

/* Phone Screens Container – überlagerte Bilder */
.phone-screens {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(180deg, #111 0%, #0a0a0a 100%);
}

.phone-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.phone-screen.active {
    opacity: 1;
}

/* ===================================
   Audience Section
   =================================== */
.audience-section {
    padding: 6rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.audience-section.dark {
    max-width: 100%;
    background: var(--color-dark);
}

.audience-section.dark > * {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.audience-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.audience-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--color-dark-gray);
    border: 1px solid var(--color-medium-gray);
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
}

.audience-feature:hover {
    border-color: rgba(201, 162, 39, 0.3);
}

.audience-icon {
    width: 50px;
    height: 50px;
    background: rgba(201, 162, 39, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.audience-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--color-gold);
}

.audience-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.audience-content p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.audience-cta {
    text-align: center;
    margin-top: 2rem;
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    text-align: center;
    padding: 6rem 2rem;
    background: radial-gradient(ellipse at center, rgba(201, 162, 39, 0.08) 0%, transparent 60%);
}

.cta-section h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

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

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--color-black);
    border-top: 1px solid var(--color-black);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
}

.footer-brand img {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    max-width: 250px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.footer-column a {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.footer-column a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--color-medium-gray);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .features-showcase {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .features-phone {
        order: -1;
    }
    
    .phone-mockup {
        width: 240px;
        height: 500px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0 1rem;
    }
    
    .nav-center {
        display: none;
    }
    
    .nav-right {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-nav-overlay {
        display: block;
    }
    
    .hero-section {
        min-height: 100vh;
        padding: 120px 1.5rem 3rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-subtitle br {
        display: none;
    }
    
    .features-section {
        padding: 4rem 1.5rem;
    }
    
    .audience-section {
        padding: 4rem 1.5rem;
    }
    
    .audience-feature {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .audience-icon {
        margin: 0 auto;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .cta-section {
        padding: 4rem 1.5rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-brand p {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 100px 1rem 2rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .section-badge {
        font-size: 0.7rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .features-section {
        padding: 3rem 1rem;
    }
    
    .feature-card {
        padding: 1.25rem;
        gap: 1rem;
    }
    
    .phone-mockup {
        width: 200px;
        height: 420px;
        border-radius: 32px;
        padding: 10px;
    }
    
    .phone-notch {
        width: 100px;
        height: 24px;
        top: 10px;
    }
    
    .phone-screen {
        border-radius: 22px;
    }
    
    .audience-section {
        padding: 3rem 1rem;
    }
    
    .cta-section {
        padding: 3rem 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .footer {
        padding: 3rem 1rem 1.5rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .footer-bottom {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
}

/* ===================================
   Coming Soon Section
   =================================== */
.coming-soon-section {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 120px 20px 80px;
    background-color: var(--color-black);
    overflow: hidden;
}

.coming-soon-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(80, 77, 69, 0.15) 0%, rgba(0,0,0,0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

.coming-soon-container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    width: 100%;
}

.coming-soon-badge {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    animation: comingSoonFadeIn 1.5s ease-out;
}

.coming-soon-title {
    font-size: clamp(28px, 7vw, 60px);
    margin-bottom: 20px;
    background: linear-gradient(180deg, #fff 0%, #888 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
    animation: comingSoonFadeIn 1.7s ease-out;
}

.coming-soon-subtitle {
    font-size: clamp(15px, 4vw, 18px);
    color: var(--color-light-gray);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: comingSoonFadeIn 2s ease-out;
}

.coming-soon-form {
    display: flex;
    gap: 12px;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
    animation: comingSoonFadeIn 2.3s ease-out;
    width: 100%;
}

.coming-soon-form input[type="email"] {
    padding: 16px 25px;
    background: #111;
    border: 1px solid #222;
    color: var(--color-white);
    border-radius: 50px;
    flex: 1;
    font-size: 16px;
    outline: none;
    transition: var(--transition);
    min-width: 0;
    font-family: var(--font-family);
}

.coming-soon-form input[type="email"]::placeholder {
    color: var(--color-light-gray);
}

.coming-soon-form input[type="email"]:focus {
    border-color: var(--color-gold);
    background: #151515;
}

.coming-soon-btn {
    background: var(--color-gold);
    color: var(--color-black);
    padding: 16px 30px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    font-family: var(--font-family);
}

.coming-soon-btn:hover {
    background: var(--color-white);
    transform: translateY(-2px);
}

.coming-soon-btn:focus {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

.notify-result {
    margin-top: 20px;
    font-size: 14px;
    color: var(--color-light-gray);
    display: none;
}

.notify-result.show {
    display: block;
}

.notify-result.success {
    color: #4CAF50;
}

.notify-result.error {
    color: #f44336;
}

/* Accessibility */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Coming Soon Animations */
@keyframes comingSoonFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Coming Soon Mobile Optimization */
@media (max-width: 600px) {
    .coming-soon-section {
        padding: 100px 20px 60px;
    }
    
    .coming-soon-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .coming-soon-btn {
        width: 100%;
        padding: 18px;
    }
    
    .coming-soon-title {
        font-size: 28px;
    }
    
    .coming-soon-subtitle {
        font-size: 16px;
    }
}

/* Performance: Reduced motion for users with preference */
@media (prefers-reduced-motion: reduce) {
    .coming-soon-badge,
    .coming-soon-title,
    .coming-soon-subtitle,
    .coming-soon-form {
        animation: none;
    }
}
