body {
    font-family: 'Cinzel', serif;
    margin: 0;
    padding: 0;
    background: none; /* Remove background to show video */
    color: #fff; /* White text */
}

header {
    background: #000;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav li {
    display: inline;
    margin: 0 15px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
}

nav a:hover {
    text-decoration: underline;
}

h1, h2, h3 {
    color: #fff;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

.footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.product {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    padding: 15px;
    margin: 15px 0;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.product img {
    max-width: 100%;
    height: auto;
}

.button {
    display: inline-block;
    font-size: 16px;
    color: #000;
    background: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Playfair Display', serif;
}

.button:hover {
    background: #ccc;
}

main {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    padding: 20px;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.subscribe-container {
    text-align: center;
    padding: 50px;
    background: rgba(255, 255, 255, 0.05); /* Subtle white overlay for contrast */
    border-radius: 10px;
    max-width: 600px;
    margin: auto;
    color: #fff; /* Ensure text is white */
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#enter-btn {
    font-size: 24px;
    padding: 15px 30px;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Playfair Display', serif;
}

#enter-btn:hover {
    background: #fff;
    color: #000;
}

#subscribe-form {
    margin-top: 20px;
}

#email {
    padding: 10px;
    width: 70%;
    margin-right: 10px;
    border: 1px solid #fff;
    border-radius: 5px;
    background: transparent;
    color: #fff;
}

#email::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

#email-form button {
    padding: 10px 20px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Playfair Display', serif;
}

#email-form button:hover {
    background: #ccc;
}

.enter-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}
.enter-content {
    text-align: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.9);
    padding: 3rem;
    border-radius: 1rem;
    border: 1px solid #fff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}
.enter-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.enter-content p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}
.button {
    display: inline-block;
    padding: 1rem 2rem;
    background: #fff;
    color: #000;
    text-decoration: none;
    border: 2px solid #fff;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    border-radius: 0.5rem;
}
.button:hover {
    background: transparent;
    color: #fff;
}
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.modal.open {
    opacity: 1;
    visibility: visible;
}
.modal-content {
    background: #000;
    padding: 2rem;
    border-radius: 0.5rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    color: #fff;
}
.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #ccc;
}
.modal-close:hover {
    color: #fff;
}
.form-group {
    margin-bottom: 1rem;
}
.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}
.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #333;
    border-radius: 0.25rem;
    background: #111;
    color: #fff;
}
.form-input:focus {
    outline: none;
    border-color: #fff;
}
.waitlist-btn {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}