body {
    background-color: black;
    color: white; /* Default text color */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.mainArea button {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);

    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    transition: transform 0.1s;
}

.mainArea button:active {
    transform: translate(-50%, -50%) scale(0.95);
}

.mainArea img {
    width: 150px;
    height: 150px;
}

.mainArea h1 {
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: orange;
    margin-top: 50px;
}

p {
    color: orange;
}

.upgrades {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background-color: #111;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.5);
    z-index: 500;
}

.tacoVan {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #333;
    padding: 10px;
    border-radius: 8px;
}

.tacoVan p {
    margin: 0;
    font-size: 14px;
}

.tacoVan p:first-child {
    font-size: 18px;
    font-weight: bold;
}

.tacoVan button {
    background-color: green;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.tacoVan button:hover:not(:disabled) {
    background-color: darkgreen;
}

.tacoVan button:disabled {
    background-color: #555;
    cursor: not-allowed;
}


/* --- NEW STYLES FOR ACCESS CONTROL & BANNER --- */

/* 1. Full-screen Access/Lock Overlay */
#access-message {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: orange;
    transition: opacity 0.5s ease;
}

#access-message h1 {
    font-size: 2em;
    color: orange;
}

#access-message p {
    color: #ccc;
    margin: 10px 0;
}

#lock-icon {
    margin-top: 20px;
    font-size: 40px;
    color: red;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* 2. Status Banner for Polling/Notifications */
#status-banner {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 16px;
    background: #444;
    color: yellow;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    font-size: 14px;
    display: none;
    text-align: center;
    max-width: 90%;
}