/* General Styles */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(120deg, #0d1117, #1a1f27);
    color: white;
    overflow: hidden;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
}

/* Home Page Styles */
.title {
    font-size: 3rem;
    color: #00d4ff;
    text-shadow: 0 0 20px #00d4ff, 0 0 40px #00d4ff;
}

.tagline {
    margin: 10px 0;
    font-size: 1.5rem;
    color: #a9b3c1;
}

.btn {
    background: #00d4ff;
    color: #0d1117;
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px #00d4ff, 0 0 60px #00d4ff;
}

/* Escape Room Styles */
.hidden {
    display: none;
}

.loading-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.loading-text {
    font-size: 2rem;
    text-shadow: 0 0 10px #ff7300, 0 0 20px #ff7300;
    color: #ff7300;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loading-animation {
    display: flex;
    gap: 15px;
}

.gear {
    width: 50px;
    height: 50px;
    border: 6px solid #00d4ff;
    border-radius: 50%;
    border-top: 6px solid transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-footer {
    font-size: 1.2rem;
    color: #a9b3c1;
}
