* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.access-container {
    max-width: 600px;
    padding: 2rem;
    text-align: center;
}

.brand-logo {
    margin-bottom: 3rem;
}

.brand-logo img {
    width: 14rem; /* 180px = 11.25rem */
    height: auto;
    display: block;
    margin: 0 auto;
    }

.brand-logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 0.5rem;
    color: #ffffff;
}

.brand-logo span {
    display: block;
    font-size: 1rem;
    letter-spacing: 0.3rem;
    margin-top: 0.5rem;
    color: #bbbbbb;
}

.sold-out-notice {
    margin-bottom: 3rem;
    line-height: 1.6;
    color: #d0d0d0;
}

.sold-out-notice p {
    margin-bottom: 1rem;
}

.password-form {
    margin-bottom: 3rem;
}

.password-form input {
    padding: 0.8rem 1rem;
    width: 200px;
    border: 1px solid #444;
    background-color: #1e1e1e;
    color: #f0f0f0;
    margin-right: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.password-form input::placeholder {
    color: #888;
}

.password-form button {
    padding: 0.8rem 1.5rem;
    background-color: #ffffff;
    color: #000;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.password-form button:hover {
    background-color: #cccccc;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-info a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #fff;
}

.copyright {
    color: #777;
}

@media (max-width: 600px) {
    .brand-logo h1 {
        font-size: 2rem;
    }
}
