/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

body {
    background-color: #000000;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

.container {
    max-width: 800px;
    width: 100%;
}

/* Logo and Branding */
.logo-container {
    margin-bottom: 3rem;
}

.logo {
    color: rgb(197, 165, 114);
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

/* Content Area */
.content {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
}

.icon {
    font-size: 4rem;
    color: rgb(197, 165, 114);
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: rgb(197, 165, 114);
}

p {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.error-code {
    display: inline-block;
    background-color: rgba(197, 165, 114, 0.1);
    color: rgb(197, 165, 114);
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-family: monospace;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(197, 165, 114, 0.3);
}

/* Links and Actions */
.actions {
    margin-top: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(197, 165, 114, 0.1);
    color: rgb(197, 165, 114);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid rgba(197, 165, 114, 0.3);
}

.btn:hover {
    background-color: rgba(197, 165, 114, 0.2);
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 1.25rem;
}

/* Footer */
footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.contact-link {
    color: rgb(197, 165, 114);
    text-decoration: none;
}

.contact-link:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding: 1rem;
    }
    
    .content {
        padding: 2rem 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .icon {
        font-size: 3rem;
    }
}