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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.lang-switcher {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8px);
    z-index: 10;
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 0.4rem 0.75rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: background 0.2s, border-color 0.2s;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.lang-btn.active {
    background: #ffd700;
    border-color: #ffd700;
    color: #1a1a2e;
}

.container {
    max-width: 600px;
    text-align: center;
    margin-top: 4rem;
}

h1 {
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    opacity: 0.9;
}

.domain {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffd700;
    word-break: break-word;
}

.domain:last-of-type {
    margin-bottom: 2rem;
}

.intro {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.85;
}

.contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.email {
    background-color: #fff;
    color: #1a1a2e;
}

.phone {
    background-color: #28a745;
    color: #fff;
}

.contact-info {
    margin-bottom: 2rem;
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.8;
}

.contact-info a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

.voicemail {
    font-size: 0.95rem;
    opacity: 0.7;
    line-height: 1.5;
}

@media (min-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    .domain {
        font-size: 3rem;
    }

    .contact {
        flex-direction: row;
        justify-content: center;
    }

    .btn {
        flex: 1;
    }
}
