* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0d0c0e;
    color: #f5f5f7;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 30%, #3a0d17 0%, #0d0c0e 80%);
    opacity: 0.6;
    z-index: -1;
}

.container {
    max-width: 800px;
    width: 90%;
    padding: 40px 20px;
    text-align: center;
    z-index: 1;
    animation: fadeIn 1.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-container {
    margin-bottom: 30px;
}

.logo {
    max-width: 160px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid #d4af37;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.content .subtitle {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    letter-spacing: 4px;
    color: #d4af37;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

.content h1 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: 1px;
    color: #ffffff;
}

.content .description {
    font-size: 1rem;
    line-height: 1.8;
    color: #b0b0b5;
    max-width: 600px;
    margin: 0 auto 40px auto;
    font-weight: 300;
}

.contact-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 35px;
    max-width: 500px;
    margin: 0 auto;
}

.contact-prompt {
    font-size: 0.9rem;
    color: #a0a0a5;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.email-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 6px 6px 6px 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.email-badge:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: #d4af37;
    transform: translateY(-1px);
}

.email-label {
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: #d4af37;
    letter-spacing: 1px;
    margin-right: 12px;
    text-transform: uppercase;
}

.email-address {
    font-size: 0.95rem;
    color: #ffffff;
    font-weight: 400;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 20px;
    border-radius: 25px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.email-badge:hover .email-address {
    background: #800020;
    color: #ffffff;
}

.copy-tooltip {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    background: #d4af37;
    color: #0d0c0e;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.email-badge:hover .copy-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 600px) {
    .content h1 {
        font-size: 2rem;
    }
    .email-badge {
        padding: 5px 5px 5px 12px;
    }
    .email-label {
        font-size: 0.65rem;
        margin-right: 8px;
    }
    .email-address {
        font-size: 0.85rem;
        padding: 6px 15px;
    }
}