.game-outer-wrapper {
    margin: auto;
    width: 100%;
}

.hero-nexus::before,
.hero-flow::before {
    max-width: 100%;
}

.game-play-area-wrapper {
    margin: auto;
    width: 100%;
    max-width: 900px;
    /* height: 200px; */
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 65px 3rem;
    backdrop-filter: blur(10px);
    clip-path: polygon(30px 0%, 100% 0%, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0% 100%, 0% 30px);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.1);
}

.game-play-area-wrapper .section-header {
    margin-bottom: 0;
}

.game-title-container {
    margin: auto;
    width: 100%;
    max-width: 760px;
}

.game-play-area-wrapper .section-title {
    font-family: "Oxanium", sans-serif;
    font-size: 2rem;
    line-height: 36px;
    letter-spacing: 1px;
    margin: 0 0 60px 0;
}

.game-play-area-wrapper .hero-buttons {
    gap: 2rem;
}

.game-play-area-wrapper .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
    color: #fff;
    font-size: 30px;
}

.game-play-menu-button {
    position: absolute;
    top: 12px;
    right: 0;
    padding: 10px 16px;
    background: #00e0ff;
    /* Electric blue */
    color: #000;
    font-weight: bold;
    border-radius: 12px 0 0 12px;
    box-shadow: 0 0 12px #00e0ff;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
}

.game-play-menu-button:hover {
    background: #00b8cc;
    box-shadow: 0 0 16px #00e0ff;
    transform: scale(1.05);
}

.game-play-menu-button:active {
    background: #0099aa;
    box-shadow: 0 0 8px #00e0ff;
    transform: scale(0.98);
}

.menu-panel-container {
    position: relative;
}

.game-play-menu-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: fit-content;
    min-width: 300px;
    padding: 20px;
    border-left: 10px solid #00e0ff;
    border-radius: 10px;
    /* box-shadow: -4px 0 12px rgba(0, 224, 255, 0.5); */
    display: none;
    z-index: 999;
}

.game-play-menu-panel li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
    border-bottom: 1px solid #444;
}

.game-play-menu-panel li a:hover {
    color: #00e0ff;
    text-decoration: underline;
}

@media only screen and (max-width: 600px) {
    .hero.game-outer-hero {
        padding-top: 115px;
    }
}