/* CSS Custom Properties */
:root {
    --primary-gradient: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --text-muted: rgba(255, 255, 255, 0.6);
    --accent-gradient: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.3);
    --shadow-medium: 0 5px 15px rgba(255, 255, 255, 0.1);
    --shadow-heavy: 0 10px 30px rgba(255, 255, 255, 0.1);
    --border-radius: 15px;
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --font-luxury: 'Bodoni Moda', 'Playfair Display', serif;
    --font-elegant: 'DM Serif Display', 'Playfair Display', serif;
    --font-modern: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-action: 'Orbitron', 'Arial Black', 'Impact', sans-serif;
}

/* Reset and Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-modern);
    background: var(--primary-gradient);
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    font-feature-settings: 'kern' 1, 'liga' 1, 'calt' 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    line-height: 1.6;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: clamp(2rem, 2vw, 1rem);
    max-width: 1200px;
    margin: 0 auto;
}

/* Background Elements */
.background-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
    will-change: transform;
}

.floating-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    will-change: transform;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    will-change: transform, opacity;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
    animation-duration: 6s;
}

.particle:nth-child(3) {
    top: 80%;
    left: 20%;
    animation-delay: 4s;
    animation-duration: 7s;
}

.particle:nth-child(4) {
    top: 30%;
    left: 70%;
    animation-delay: 1s;
    animation-duration: 9s;
}

.particle:nth-child(5) {
    top: 70%;
    left: 50%;
    animation-delay: 3s;
    animation-duration: 5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

/* Main Content */
.main-content {
    text-align: center;
    z-index: 3;
    position: relative;
    max-width: 800px;
    width: 100%;
}

/* Logo */
.logo {
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

.logo h1 {
    font-family: var(--font-action);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    letter-spacing: 0.2em;
    line-height: 1.1;
    background: linear-gradient(45deg, #ffffff, #f0f0f0, #ffffff, #e0e0e0);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s ease-in-out infinite;
    margin-bottom: 0.8rem;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.3),
        0 0 20px rgba(255, 255, 255, 0.2),
        0 0 30px rgba(255, 255, 255, 0.1),
        2px 2px 4px rgba(0, 0, 0, 0.3),
        4px 4px 8px rgba(0, 0, 0, 0.2);
    will-change: background-position;
    text-transform: uppercase;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.2));
}

.logo-subtitle {
    font-family: var(--font-modern);
    font-size: clamp(0.85rem, 2vw, 1rem);
    font-weight: 200;
    letter-spacing: 0.4em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 0.5rem;
    font-feature-settings: 'kern' 1, 'liga' 1;
}

@keyframes shimmer {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Coming Soon Section */
.coming-soon-section {
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.coming-soon-title {
    font-family: var(--font-elegant);
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 400;
    font-style: italic;
    margin-bottom: 1.8rem;
    color: var(--text-primary);
    line-height: 1.3;
    letter-spacing: 0.02em;
    text-shadow: var(--shadow-light);
}

.coming-soon-description {
    font-family: var(--font-modern);
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
    letter-spacing: 0.01em;
    font-feature-settings: 'kern' 1, 'liga' 1;
}

/* Countdown Timer */
.countdown-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: clamp(0.5rem, 2vw, 1rem);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.6s both;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.countdown-item {
    text-align: center;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: clamp(0.6rem, 2vw, 0.8rem) clamp(0.3rem, 1.5vw, 0.4rem);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    will-change: transform;
}

.countdown-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-heavy);
}

.countdown-number {
    display: block;
    font-family: var(--font-luxury);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 600;
    font-optical-sizing: auto;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.countdown-label {
    font-family: var(--font-modern);
    font-size: clamp(0.75rem, 1.5vw, 0.85rem);
    font-weight: 300;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-feature-settings: 'kern' 1;
}

/* Email Subscription */
.subscription-section {
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.subscription-section h3 {
    font-family: var(--font-elegant);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 400;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
    letter-spacing: 0.02em;
    text-shadow: var(--shadow-light);
}

.subscription-section p {
    font-family: var(--font-modern);
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: clamp(0.95rem, 2.5vw, 1.05rem);
    font-weight: 300;
    letter-spacing: 0.01em;
    line-height: 1.6;
}

/* Subscription Benefits */
.subscription-benefits {
    display: flex;
    justify-content: center;
    gap: clamp(0.8rem, 2vw, 1.2rem);
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    color: var(--text-secondary);
    font-family: var(--font-modern);
    font-weight: 300;
}

.benefit-item i {
    color: var(--accent-gradient);
    font-size: 1.1em;
}

.email-form {
    max-width: 500px;
    margin: 0 auto;
}

.input-group {
    display: flex;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    overflow: hidden;
    transition: all var(--transition-fast);
    position: relative;
}

.input-group:focus-within {
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: var(--shadow-medium);
}

.input-group.valid {
    border-color: rgba(76, 175, 80, 0.5);
}

.input-group.error {
    border-color: rgba(244, 67, 54, 0.5);
}

.input-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

#emailInput {
    flex: 1;
    padding: clamp(0.8rem, 2.5vw, 1rem) clamp(1.8rem, 3vw, 2.2rem);
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-modern);
    font-size: clamp(0.95rem, 2.5vw, 1.05rem);
    font-weight: 300;
    outline: none;
    letter-spacing: 0.01em;
    width: 100%;
}

#emailInput::placeholder {
    color: var(--text-muted);
}

.input-icon {
    position: absolute;
    left: clamp(1rem, 3vw, 1.2rem);
    color: var(--text-muted);
    pointer-events: none;
    z-index: 1;
}

.validation-icon {
    position: absolute;
    right: clamp(1rem, 3vw, 1.2rem);
    color: #4caf50;
    opacity: 0;
    transform: scale(0.8);
    transition: all var(--transition-fast);
    pointer-events: none;
    z-index: 1;
}

.validation-icon.show {
    opacity: 1;
    transform: scale(1);
}

.subscribe-btn {
    background: var(--accent-gradient);
    border: none;
    padding: clamp(0.8rem, 2.5vw, 1rem) clamp(1.4rem, 4vw, 1.8rem);
    color: var(--text-primary);
    font-family: var(--font-modern);
    font-weight: 500;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.subscribe-btn:hover:not(:disabled) {
    background: linear-gradient(45deg, #ff5252, #ff7979);
    transform: translateX(-2px);
}

.subscribe-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.subscribe-btn .btn-loading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.subscribe-btn .spinner {
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.subscribe-btn i {
    transition: transform var(--transition-fast);
}

.subscribe-btn:hover:not(:disabled) i {
    transform: translateX(3px);
}

/* Enhanced Form Messages */
.form-message {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0;
    transition: all var(--transition-fast);
    font-family: var(--font-modern);
    font-weight: 400;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.15);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
    opacity: 1;
}

.form-message.error {
    background: rgba(244, 67, 54, 0.15);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
    opacity: 1;
}

.form-message.info {
    background: rgba(33, 150, 243, 0.15);
    color: #2196f3;
    border: 1px solid rgba(33, 150, 243, 0.3);
    opacity: 1;
}

.form-error {
    margin-top: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #f44336;
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.2);
    opacity: 0;
    transition: opacity var(--transition-fast);
    font-family: var(--font-modern);
}

.form-error.show {
    opacity: 1;
}

/* Privacy Notice */
.privacy-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: clamp(0.75rem, 2vw, 0.85rem);
    color: var(--text-muted);
    font-family: var(--font-modern);
    font-weight: 300;
}

.privacy-notice i {
    color: #4caf50;
}

/* Social Proof */
.social-proof {
    margin-top: 2rem;
    text-align: center;
}

.subscriber-count {
    margin-bottom: 1rem;
}

.count-number {
    font-family: var(--font-luxury);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 600;
    color: var(--text-primary);
    text-shadow: var(--shadow-light);
}

.count-label {
    font-family: var(--font-modern);
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    color: var(--text-secondary);
    margin-left: 0.5rem;
    font-weight: 300;
}

.recent-subscribers {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: clamp(0.75rem, 2vw, 0.85rem);
    color: var(--text-muted);
    font-family: var(--font-modern);
    font-weight: 300;
}

.recent-subscriber {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.recent-subscriber i {
    font-size: 0.7em;
    color: #4caf50;
}

/* Footer */
.footer {
    text-align: center;
    color: var(--text-muted);
    font-family: var(--font-modern);
    font-size: clamp(0.8rem, 2vw, 0.85rem);
    font-weight: 300;
    z-index: 3;
    position: relative;
    animation: fadeInUp 1s ease-out 1.5s both;
    letter-spacing: 0.02em;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile-first responsive design with improved breakpoints */
@media (max-width: 1024px) {
    .container {
        padding: clamp(2rem, 2vw, 1rem);
    }
    
    .main-content {
        max-width: 90%;
    }
    
    .subscription-benefits {
        gap: clamp(0.6rem, 1.5vw, 1rem);
    }
    
    .benefit-item {
        font-size: clamp(0.75rem, 1.8vw, 0.85rem);
    }
}

@media (max-width: 768px) {
    .container {
        padding: clamp(2rem, 2vw, 0.8rem);
        justify-content: flex-start;
        padding-top: clamp(1rem, 4vw, 2rem);
    }

    .logo {
        margin-bottom: 1.2rem;
    }

    .logo h1 {
        font-size: clamp(2.2rem, 7vw, 3.2rem);
        letter-spacing: 0.08em;
        line-height: 1.05;
        margin-bottom: 0.6rem;
    }

    .logo-subtitle {
        font-size: clamp(0.8rem, 2vw, 0.95rem);
        letter-spacing: 0.25em;
    }

    .coming-soon-section {
        margin-bottom: 1.2rem;
    }

    .coming-soon-title {
        font-size: clamp(1.6rem, 5vw, 2.4rem);
        line-height: 1.25;
        margin-bottom: 1.5rem;
    }

    .coming-soon-description {
        font-size: clamp(0.95rem, 2.5vw, 1.1rem);
        line-height: 1.65;
        padding: 0 1rem;
    }

    .countdown-container {
        gap: clamp(0.4rem, 1.5vw, 0.8rem);
        margin-bottom: 1.2rem;
        max-width: 90%;
        grid-template-columns: repeat(2, 1fr);
    }

    .countdown-item {
        min-width: clamp(75px, 18vw, 90px);
        padding: clamp(0.9rem, 2.5vw, 1.2rem) clamp(0.4rem, 1.5vw, 0.8rem);
        /* Improve touch targets */
        min-height: 44px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .countdown-number {
        font-size: clamp(1.6rem, 4vw, 2.4rem);
        margin-bottom: 0.4rem;
    }

    .countdown-label {
        font-size: clamp(0.7rem, 1.8vw, 0.85rem);
        letter-spacing: 0.12em;
    }

    .subscription-section {
        margin-bottom: 1.2rem;
    }

    .subscription-section h3 {
        font-size: clamp(1.4rem, 4vw, 1.8rem);
        margin-bottom: 0.6rem;
    }

    .subscription-section p {
        font-size: clamp(0.9rem, 2.5vw, 1.05rem);
        margin-bottom: 1.8rem;
        padding: 0 1rem;
    }

    .subscription-benefits {
        flex-direction: column;
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }

    .benefit-item {
        font-size: clamp(0.8rem, 2vw, 0.9rem);
        justify-content: center;
    }

    .social-proof {
        margin-top: 1.5rem;
    }

    .recent-subscribers {
        flex-direction: column;
        gap: 0.3rem;
    }

    .email-form {
        max-width: 95%;
        margin: 0 auto;
    }

    .input-group {
        flex-direction: column;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    #emailInput {
        padding: clamp(0.8rem, 2.5vw, 1rem) clamp(0.8rem, 2.5vw, 1.2rem);
        font-size: clamp(0.95rem, 2.5vw, 1.05rem);
        border-bottom: 1px solid var(--glass-border);
    }

    .subscribe-btn {
        border-radius: 0 0 12px 12px;
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        padding: clamp(0.8rem, 2.5vw, 1rem) clamp(1.2rem, 3vw, 1.6rem);
        min-height: 48px; /* Better touch target */
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: clamp(0.3rem, 1.5vw, 0.6rem);
        padding-top: clamp(0.8rem, 3vw, 1.5rem);
    }

    .logo {
        margin-bottom: 1rem;
    }

    .logo h1 {
        font-size: clamp(1.8rem, 6vw, 2.8rem);
        letter-spacing: 0.06em;
        line-height: 1.02;
    }

    .logo-subtitle {
        font-size: clamp(0.75rem, 1.8vw, 0.9rem);
        letter-spacing: 0.2em;
    }

    .coming-soon-section {
        margin-bottom: 1rem;
    }

    .coming-soon-title {
        font-size: clamp(1.4rem, 4.5vw, 2rem);
        line-height: 1.2;
        margin-bottom: 1.2rem;
    }

    .coming-soon-description {
        font-size: clamp(0.9rem, 2.2vw, 1rem);
        line-height: 1.6;
        padding: 0 0.5rem;
    }

    .countdown-container {
        gap: clamp(0.3rem, 1.2vw, 0.6rem);
        margin-bottom: 1rem;
        max-width: 95%;
        grid-template-columns: repeat(2, 1fr);
    }

    .countdown-item {
        min-width: clamp(65px, 16vw, 80px);
        padding: clamp(0.7rem, 2vw, 1rem) clamp(0.3rem, 1vw, 0.6rem);
        min-height: 48px;
    }

    .countdown-number {
        font-size: clamp(1.4rem, 3.5vw, 2rem);
        margin-bottom: 0.3rem;
    }

    .countdown-label {
        font-size: clamp(0.65rem, 1.5vw, 0.8rem);
        letter-spacing: 0.1em;
    }

    .subscription-section {
        margin-bottom: 1rem;
    }

    .subscription-section h3 {
        font-size: clamp(1.2rem, 3.5vw, 1.6rem);
        margin-bottom: 0.5rem;
    }

    .subscription-section p {
        font-size: clamp(0.85rem, 2.2vw, 1rem);
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }

    .email-form {
        max-width: 98%;
    }

    #emailInput {
        padding: clamp(0.9rem, 2.5vw, 1.1rem) clamp(0.8rem, 2.5vw, 1.2rem);
        font-size: clamp(0.9rem, 2.2vw, 1rem);
    }

    .subscribe-btn {
        font-size: clamp(0.85rem, 2.2vw, 0.95rem);
        padding: clamp(0.9rem, 2.5vw, 1.1rem) clamp(1.2rem, 3vw, 1.6rem);
        min-height: 50px;
    }
}

/* Extra small devices (landscape phones, 320px and up) */
@media (max-width: 360px) {
    .container {
        padding: 0.3rem;
        padding-top: 0.6rem;
    }

    .logo h1 {
        font-size: clamp(1.6rem, 5vw, 2.4rem);
        letter-spacing: 0.05em;
    }

    .coming-soon-title {
        font-size: clamp(1.2rem, 4vw, 1.8rem);
    }

    .countdown-container {
        gap: 0.2rem;
        max-width: 100%;
        grid-template-columns: repeat(2, 1fr);
    }

    .countdown-item {
        min-width: clamp(60px, 15vw, 75px);
        padding: clamp(0.6rem, 1.8vw, 0.8rem) clamp(0.2rem, 0.8vw, 0.5rem);
    }

    .subscription-section p {
        padding: 0;
    }
}

/* Mobile touch optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Touch device optimizations */
    .countdown-item:hover {
        transform: none;
        box-shadow: var(--shadow-medium);
    }
    
    .subscribe-btn:hover {
        background: var(--accent-gradient);
        transform: none;
    }
    
    .subscribe-btn:active {
        background: linear-gradient(45deg, #ff5252, #ff7979);
        transform: scale(0.98);
    }
    
    /* Improve tap targets */
    .countdown-item {
        min-height: 44px;
        cursor: pointer;
    }
    
    .subscribe-btn {
        min-height: 48px;
        cursor: pointer;
    }
    
    #emailInput {
        min-height: 48px;
    }
}

/* Mobile performance optimizations */
@media (max-width: 768px) {
    /* Reduce animations on mobile for better performance */
    .particle {
        animation-duration: 8s;
        opacity: 0.4;
    }
    
    .logo h1 {
        animation-duration: 6s;
    }
    
    /* Optimize transforms for mobile */
    .countdown-item {
        will-change: transform;
        transform: translateZ(0);
    }
    
    .subscribe-btn {
        will-change: transform;
        transform: translateZ(0);
    }
    
    /* Reduce backdrop-filter on mobile for better performance */
    .input-group,
    .countdown-item {
        backdrop-filter: blur(5px);
    }
}

/* Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .particle {
        animation: none;
    }
    
    .logo h1 {
        animation: none;
        background: var(--text-primary);
        -webkit-background-clip: initial;
        -webkit-text-fill-color: initial;
        background-clip: initial;
    }
}

/* Focus Management */
*:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --text-secondary: #ffffff;
        --text-muted: #ffffff;
        --glass-bg: rgba(255, 255, 255, 0.2);
        --glass-border: rgba(255, 255, 255, 0.5);
    }
}

/* Landscape mobile optimizations */
@media (max-width: 768px) and (orientation: landscape) {
    .container {
        padding-top: clamp(1rem, 3vw, 2rem);
        justify-content: center;
    }
    
    .logo {
        margin-bottom: 1.5rem;
    }
    
    .logo h1 {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }
    
    .coming-soon-section {
        margin-bottom: 1.5rem;
    }
    
    .coming-soon-title {
        font-size: clamp(1.4rem, 4vw, 2rem);
        margin-bottom: 1rem;
    }
    
    .coming-soon-description {
        font-size: clamp(0.9rem, 2vw, 1rem);
        margin-bottom: 1rem;
    }
    
    .countdown-container {
        margin-bottom: 1.5rem;
        gap: clamp(0.5rem, 2vw, 1rem);
        grid-template-columns: repeat(2, 1fr);
    }
    
    .subscription-section {
        margin-bottom: 1.5rem;
    }
    
    .subscription-section h3 {
        font-size: clamp(1.2rem, 3vw, 1.6rem);
        margin-bottom: 0.5rem;
    }
    
    .subscription-section p {
        font-size: clamp(0.85rem, 2vw, 0.95rem);
        margin-bottom: 1rem;
    }
}

/* Loading states and transitions */
.subscribe-btn:disabled {
    opacity: 0.7 !important;
    cursor: not-allowed !important;
    transform: none !important;
}

.subscribe-btn:disabled:hover {
    background: var(--accent-gradient) !important;
    transform: none !important;
}


/* Print Styles */
@media print {
    .background-overlay,
    .floating-particles {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .logo h1 {
        background: none;
        -webkit-text-fill-color: initial;
        color: black;
    }
}
