/* Discovery Shot Branding */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

:root {
    --bg-color: #050505;
    --text-color: #f5f5f5;
    --accent-gold: #cbc0ac;
    /* Discovery Shot Gold */
    --font-main: 'Cormorant Garamond', serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    overflow: hidden;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-image: radial-gradient(circle at center, #1a1a1a 0%, #000 70%);
}

.container {
    text-align: center;
    z-index: 10;
    padding: 2rem;
    max-width: 700px;
    width: 100%;
}

.logo-container {
    margin-bottom: 2rem;
    cursor: default;
    transition: transform 0.3s ease;
}

.logo-container img {
    width: 120px;
    height: auto;
    border-radius: 50%;
    /* Optional glow or effect if desired */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.logo-container:active {
    transform: scale(0.95);
}

h1 {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    color: var(--accent-gold);
    text-transform: uppercase;
}

.subtitle {
    font-size: 1.5rem;
    color: #888;
    margin-bottom: 3rem;
    letter-spacing: 2px;
    font-weight: 300;
}

.divider {
    width: 60px;
    height: 1px;
    background-color: var(--accent-gold);
    margin: 0 auto 3rem;
}

.maintenance-msg {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    font-style: italic;
}

/* Hidden Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: #0a0a0a;
    border: 1px solid #333;
    padding: 3rem;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
}

.modal-title {
    font-family: var(--font-main);
    color: var(--accent-gold);
    margin-bottom: 2rem;
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.login-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #444;
    padding: 10px;
    color: #fff;
    font-family: var(--font-main);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 2rem;
    outline: none;
    transition: border-color 0.3s;
}

.login-input:focus {
    border-color: var(--accent-gold);
}

.login-btn {
    background: transparent;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    padding: 10px 30px;
    font-family: var(--font-main);
    font-size: 1rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.login-btn:hover {
    background: var(--accent-gold);
    color: #000;
}

.error-msg {
    color: #a00;
    font-size: 1rem;
    margin-top: 15px;
    font-style: italic;
    min-height: 1.5em;
}

.footer-credit {
    position: absolute;
    bottom: 2rem;
    width: 100%;
    text-align: center;
    font-size: 0.8rem;
    color: #333;
    letter-spacing: 1px;
}