/* Modern CSS Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0F0817;
    --bg-darker: #080510;
    --purple-main: #4A1D96;
    --purple-light: #7C3AED;
    --purple-accent: #8B5CF6;
    --text-primary: #F8F9FA;
    --text-secondary: rgba(248, 249, 250, 0.7);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.gradient-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, 
                              rgba(74, 29, 150, 0.15) 0%, 
                              rgba(8, 5, 16, 0.2) 100%);
    pointer-events: none;
    z-index: 1;
}

.container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.content {
    max-width: 800px;
    text-align: center;
    padding: 3rem;
    background: rgba(15, 8, 23, 0.8);
    border-radius: 20px;
    border: 1px solid rgba(74, 29, 150, 0.2);
    backdrop-filter: blur(10px);
}

.logo-container {
    margin-bottom: 2rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(74, 29, 150, 0.2);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--purple-accent);
    margin-bottom: 2.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--purple-accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.logo {
    max-width: 200px;
    height: auto;
}

.text-content {
    margin-bottom: 3rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--purple-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.tagline {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-info {
    margin-top: 3rem;
}

.email-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, 
                              rgba(74, 29, 150, 0.3) 0%, 
                              rgba(139, 92, 246, 0.3) 100%);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 50px;
    border: 1px solid rgba(124, 58, 237, 0.3);
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.email-link:hover {
    background: linear-gradient(135deg, 
                              rgba(74, 29, 150, 0.4) 0%, 
                              rgba(139, 92, 246, 0.4) 100%);
    border-color: rgba(124, 58, 237, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 29, 150, 0.2);
}

.email-link i {
    color: var(--purple-accent);
}

/* Focus visibility */
.email-link:focus-visible,
.status-badge:focus-visible {
    outline: 2px solid var(--purple-accent);
    outline-offset: 3px;
    border-radius: 8px;
}

.site-footer {
    margin-top: 2rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        padding: 2rem;
    }

    h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .email-link {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }

    .content {
        padding: 1.5rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .logo {
        max-width: 150px;
    }
}