/* Custom styles for a clean, modern feel */
body {
    /* Use Noto Sans JP for Japanese text */
    font-family: 'Noto Sans JP', 'Inter', sans-serif;
    background-color: #f8f9fa; /* Soft, light gray background */
    color: #333;
}

.genre-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
}

/* Set a fixed height for the iframe container on larger screens */
.game-iframe-container {
    height: 500px; /* Adjust as needed */
}

/* Make the iframe responsive for smaller screens */
@media (max-width: 768px) {
    .game-iframe-container {
        position: relative;
        padding-top: 56.25%; /* 16:9 Aspect Ratio */
        height: 0;
    }
    .game-iframe-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}