@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;600&family=Playfair+Display:ital,wght@0,400;1,400&display=swap');

:root {
    --bg-dark: #0f0c0a;
    --wood-warm: #1a1412;
    --amber-glow: #d4a373;
    --gold: #b08d57;
    --text-dim: #a09080;
    --white: #f5f0e1;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.background-texture {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 163, 115, 0.08) 0%, rgba(15, 12, 10, 0) 70%);
    z-index: -1;
}

.container {
    text-align: center;
    max-width: 900px;
    padding: 2rem;
    animation: fadeIn 1.5s ease-out;
}

.logo-container {
    width: 100%;
    margin-bottom: 2rem;
}

.logo-symbol {
    /* Scaled to 420px */
    width: 420px !important;
    height: auto;
    display: inline-block;
    cursor: pointer;
    user-select: none;
    transition: transform 0.3s ease;
    /* Centered over the 'o' in Productions. 
       -76px was 34px too far left, using -42px.
    */
    margin-left: -8px;
}

.logo-symbol:hover {
    transform: scale(1.03);
}

h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 3.5rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--amber-glow);
    margin-bottom: 3rem;
}

.status-box {
    border-top: 1px solid rgba(212, 163, 115, 0.2);
    padding-top: 2rem;
}

p {
    font-size: 1.1rem;
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.loading-line {
    width: 120px;
    height: 1px;
    background-color: var(--gold);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.loading-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--white), transparent);
    animation: slide 2s infinite ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slide {
    100% {
        left: 100%;
    }
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 12, 10, 0.95);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.modal-content {
    background: var(--wood-warm);
    padding: 3rem;
    border: 1px solid rgba(212, 163, 115, 0.3);
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.modal-content h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 2rem;
    color: var(--gold);
}

.modal-content input {
    width: 100%;
    padding: 1rem;
    background: rgba(15, 12, 10, 0.5);
    border: 1px solid var(--text-dim);
    color: var(--white);
    text-align: center;
    margin-bottom: 2rem;
    outline: none;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.modal-buttons button {
    padding: 0.8rem 2rem;
    cursor: pointer;
    background: transparent;
    border: 1px solid var(--text-dim);
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 2px;
}

#submitBtn {
    background: var(--gold);
    color: var(--bg-dark);
    border-color: var(--gold);
    font-weight: bold;
}

.error-text {
    color: #ff4d4d;
    font-size: 0.8rem;
    margin-top: 1rem;
}