/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'JetBrains Mono', monospace;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.2;
    min-height: 100vh;
    font-weight: 400;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 60px;
}

.header h1 {
    font-size: 4rem;
    font-weight: 700;
    color: #b8860b;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

/* Main content */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-box {
    background-color: #b8860b;
    color: #000000;
    padding: 60px 40px;
    border: 8px solid #ffffff;
    text-align: center;
    max-width: 500px;
    width: 100%;
}

.support-box h2 {
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 40px;
}

.email-section p {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.email-link {
    display: inline-block;
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
    padding: 20px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 4px solid #000000;
    transition: all 0.1s ease;
}

.email-link:hover {
    background-color: #ffffff;
    color: #000000;
    border: 4px solid #000000;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }
    
    .header h1 {
        font-size: 3rem;
    }
    
    .support-box {
        padding: 40px 30px;
    }
    
    .support-box h2 {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .email-section p {
        font-size: 1rem;
    }
    
    .email-link {
        padding: 15px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 2.5rem;
    }
    
    .support-box {
        padding: 30px 20px;
    }
    
    .support-box h2 {
        font-size: 1.3rem;
        margin-bottom: 25px;
    }
    
    .email-section p {
        font-size: 0.9rem;
    }
    
    .email-link {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}