@font-face {
    font-family: 'Beaufort for LOL';
    src: url('fonts/BeaufortforLOL-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Beaufort for LOL';
    src: url('fonts/BeaufortforLOL-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Beaufort for LOL', Arial, sans-serif;
    background-image: url('https://i.imgur.com/xRyIeIV.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

.main-menu-container {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 2em;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

h1 {
    color: #f2d47e;
    font-size: 3em;
    margin-bottom: 1em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
    font-family: 'Beaufort for LOL', Arial, sans-serif;
}

.game-selection {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.game-button {
    padding: 1em 2em;
    font-size: 1.2em;
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    font-family: 'Beaufort for LOL', Arial, sans-serif;
}

.game-button:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 80%);
    transform: scale(0);
    transition: transform 0.5s;
}

.game-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.game-button:hover:before {
    transform: scale(1);
}

.game-button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.game-button.disabled:hover {
    transform: none;
    box-shadow: none;
}