* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background: #060608;
    color: #fff;
    font-family: 'Inter', -apple-system, sans-serif;
    height: 100vh;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
}

.viewport-center {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-logo {
    font-size: clamp(2.5rem, 10vw, 5rem);
    font-weight: 200;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-align: center;
}

.nav-links {
    text-align: center;
    font-size: 0.85rem;
}

.nav-links a {
    color: #444;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover { color: #fff; }

.slash { color: #1a1a1c; margin: 0 15px; }

.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
    z-index: 999;
    align-items: center;
    justify-content: center;
}

.modal-inner {
    background: rgba(15, 15, 20, 0.95);
    padding: 50px 40px;
    width: 90%;
    max-width: 420px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    animation: slideIn 0.4s ease-out;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.close-x {
    position: absolute;
    top: 20px; right: 25px;
    font-size: 28px;
    color: #333;
    cursor: pointer;
    transition: 0.3s;
}

.close-x:hover { color: #fff; }

.modal-inner h2 {
    font-weight: 200;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-align: center;
}

.field input, .field textarea {
    width: 100%;
    background: #000;
    border: 1px solid #1a1a1c;
    padding: 14px;
    margin-bottom: 15px;
    color: #fff;
    font-family: inherit;
    border-radius: 4px;
    transition: 0.3s;
}

.field input:focus, .field textarea:focus {
    border-color: #333;
    outline: none;
}

.captcha-row {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.captcha-row input {
    width: 60px;
    background: #000;
    border: 1px solid #1a1a1c;
    color: #fff;
    padding: 8px;
    text-align: center;
}

.send-btn {
    width: 100%;
    padding: 16px;
    background: #fff;
    color: #000;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s;
}

.send-btn:hover { background: #ccc; }

.hidden-entry {
    position: fixed;
    bottom: 20px; right: 20px;
    color: #fff;
    opacity: 0.03;
    font-size: 14px;
    transition: 0.5s;
}

.hidden-entry:hover { opacity: 0.4; }