* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: #000000;
            font-family: 'Roboto', sans-serif;
            min-height: 100vh;
            background: url('assets/back.jpg') no-repeat center center;
            background-size: cover;
        }

        .navbar {
            width: 100%;
            background: #111;
            color: #F2B87A;
            padding: 20px 0;
            text-align: center;
            font-size: 1.2rem;
            letter-spacing: 2px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.5);
            position: sticky;
            top: 0;
            z-index: 100;
        }

.glass-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 1;
    pointer-events: none;
}

        .pixel-title {
            font-family: 'Press Start 2P', monospace, 'Roboto', sans-serif;
            font-size: 3rem;
            color: #512F13;
            text-align: center;
            margin: 40px 0 20px 0;
            letter-spacing: 4px;
            white-space: nowrap;
            overflow: hidden;
            border-right: .15em solid rgb(0, 0, 0);
            width: 0;
            animation: typing 2.5s steps(30, end) forwards, blink-caret .75s step-end infinite;
        }

        .pixel-subtitle {
            font-family: 'Press Start 2P', monospace, 'Roboto', sans-serif;
            font-size: 1rem;
            color: #512F13;
            text-align: center;
            margin: 40px 0 20px 0;
            letter-spacing: 4px;
            white-space: nowrap;
            overflow: hidden;
            border-right: .15em solid rgb(0, 0, 0);
            width: 0;
            animation: typing 2.5s steps(30, end) forwards, blink-caret .75s step-end infinite;
        }

        @keyframes typing {
            from { width: 0 }
            to { width: 100% }
        }
        @keyframes blink-caret {
            from, to { border-color: transparent }
            50% { border-color: #512F13; }
        }

        .game-container {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 40px 0;
            position: relative;
        }

        canvas {
            border: 10px solid #512F13;
            border-radius: 18px;
            box-shadow: 0 0 20px rgba(255,255,255,0.1);
            background: #000;
        }

        .content-section {
            max-width: 800px;
            margin: 40px auto;
            background: rgba(255,255,255,0.05);
            color: #F2B87A;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 2px 16px rgba(0,0,0,0.3);
        }

        .menu-dropdown-container {
    position: relative;
    margin-right: 80px; /* increased from 20px */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.help-dropdown-container {
    position: relative;
    margin-left: 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-bottom: 10px;
    /* margin-left: 40px; */
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content:space-around;
}

.menu-btn img {
    width: 100px;
    height: 100px;
}

.dropdown {
    display: none;
    position: absolute;
    top: 50px;
    left: 0;
    background: #402108;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    min-width: 140px;
    z-index: 200;
    flex-direction: column;
    padding: 10px 0;
}

.dropdown a {
    color: #F2B87A;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
    font-family: 'Press Start 2P', monospace, 'Roboto', sans-serif;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.dropdown a:hover {
    background: #2b1402;
}

.help-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-bottom: 10px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.help-btn img {
    width: 120px;
    height: 100px;
}

.help-dropdown {
    display: none;
    position: absolute;
    top: 50px;
    right: 0;
    background: #402108;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    min-width: 200px;
    z-index: 200;
    padding: 15px 20px;
    color: #F2B87A;
    font-family: 'Press Start 2P', monospace, 'Roboto', sans-serif;
    font-size: 0.8rem;
}

.help-dropdown .help-text {
    line-height: 1.6;
}

        @media (max-width: 768px) {
            .pixel-title { font-size: 1.5rem; }
            .game-container { margin: 20px 0; }
            .content-section { padding: 15px; }
        }