@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Cairo:wght@600&display=swap');

/* BODY RESET */
body {
    font-family: 'Cairo', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    direction: rtl;
}

/* MAIN CONTENT CONTAINER */
.container {
    margin-top: 80px; /* Push content below fixed navbar */
    padding: 20px;
}

/* GENERIC BUTTON STYLE (Optional Utility) */
.btn {
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background-color: #8B0000;         /* dark red */
    color: white;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
    background-color: #a30000;
    transform: scale(1.05);
}

.btn-secondary {
    background-color: #D4AF37;
    color: black;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-secondary:hover {
    background-color: #FFD700;
    transform: scale(1.05);
}
.btn {
    border: 2px solid #D4AF37; /* optional golden outline */
}
/* FULLSCREEN GAME MODE */
.game-screen {
    background-color: black;
    color: white;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.fullscreen-content {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* HIDE NAVBAR OPTION */
.hide-navbar {
    display: none;
}
