        body {
            margin: 0;
            background: #111;
            color: #fff;
            font-family: Arial, sans-serif;
            height: 100vh;
            display: flex;
            flex-direction: column;
        }

        header {
            background: #000;
            padding: 10px 20px;
            border-bottom: 2px solid #f1c40f;
            flex-shrink: 0;
        }

        main {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        #game {
            box-shadow: 0 10px 30px rgba(0,0,0,0.7);
        }

        footer {
            background: #000;
            padding: 15px;
            text-align: center;
            border-top: 1px solid #333;
            flex-shrink: 0;
        }

        /* Dropdown Menu Styles */
        .dropdown {
            position: relative;
            display: inline-block;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background-color: #222;
            border: 1px solid #444;
            min-width: 180px;
            z-index: 200;
        }

        .dropdown-content a {
            color: white;
            padding: 10px 16px;
            text-decoration: none;
            display: block;
        }

        .dropdown-content a:hover {
            background-color: #333;
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }

/*nav a:hover {
    color: #f1c40f;
}

.dropdown button:hover {
    color: #f1c40f;
} */

/*nav a:hover,
.dropdown button:hover {
    color: #f1c40f;
}*/

header nav a:hover,
.dropdown button:hover {
    color: #f1c40f !important;
}

header nav a:hover {
    color: #f1c40f !important;
}


