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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
    -webkit-overflow-scrolling: touch;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translateZ(0);
    will-change: transform;
    position: relative;
    scroll-padding-top: 80px; /* 为sticky header留出空间 */
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 50vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: -1;
}

/* GPU acceleration for better performance */
.game-iframe,
.nav-links,
.plus-promo-card {
    transform: translateZ(0);
    will-change: transform;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #667eea;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links a:hover,
.nav-links a:active {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active {
    transform: rotate(0deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (hover: none) and (pointer: coarse) {
    .nav-links a:hover {
        color: #333;
        background: transparent;
    }
    
    .nav-links a:active {
        color: #667eea;
        background: rgba(102, 126, 234, 0.1);
    }
}

.game-section {
    background: white;
    padding: 2rem 0 1rem;
    margin: 0;
    border-radius: 0 0 20px 20px;
    margin-bottom: 1rem;
}

.game-first {
    padding-top: 1rem;
}

.game-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.game-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.game-container p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

/* Main iframe styles - desktop first approach */
/* 这些样式已经移到 HTML 文件中的内联样式了 */

.content-section {
    background: white;
    padding: 2rem 0;
    margin: 1rem 0;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
}

.viral-story {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
    color: #333;
}

.story-timeline {
    margin: 2rem 0;
}

.timeline-item {
    background: white;
    padding: 1.5rem;
    margin: 1rem 0;
    border-radius: 10px;
    border-left: 4px solid #ff6b6b;
}

footer {
    background: #333;
    color: white;
    padding: 3rem 0;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #667eea;
}

.footer-links {
    list-style: none;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

/* News Section Styles */
.news-section {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin: 2rem 0;
}

.news-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.news-card h3 {
    color: #667eea;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.media-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.media-item {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.media-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
}

.media-item ul {
    list-style: none;
    margin: 0;
}

.media-item li {
    margin: 0.3rem 0;
}

.media-item a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.media-item a:hover {
    color: #ff6b6b;
    text-decoration: underline;
}

.headlines {
    max-height: 500px;
    overflow-y: auto;
}

.headline-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #ff6b6b;
}

.headline-date {
    background: #667eea;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    white-space: nowrap;
    height: fit-content;
}

.headline-content h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.3;
}

.headline-content p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.headline-content a {
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.headline-content a:hover {
    text-decoration: underline;
}

.scandal-timeline {
    margin-top: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.scandal-timeline h3 {
    color: #667eea;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.5rem;
}

.timeline-events {
    position: relative;
}

.timeline-events::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #667eea;
}

.timeline-event {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 80px;
}

.timeline-event::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 8px;
    width: 12px;
    height: 12px;
    background: #ff6b6b;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px #667eea;
}

.timeline-date {
    position: absolute;
    left: -80px;
    top: 0;
    background: #667eea;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    white-space: nowrap;
}

.timeline-content {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #ff6b6b;
}

.timeline-content h4 {
    color: #333;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.timeline-content p {
    color: #666;
    line-height: 1.5;
}

/* 为所有section添加scroll-margin，避免被sticky header遮挡 */
section[id] {
    scroll-margin-top: 80px;
}

@media (max-width: 768px) {
    section[id] {
        scroll-margin-top: 100px;
    }
}

/* Critical above-the-fold styles loaded first */

/* Tablet and Mobile Responsive - Clean slate approach */
@media (max-width: 768px) {
    /* Prevent horizontal scroll on mobile */
    body {
        overflow-x: hidden;
        scroll-padding-top: 100px; /* 移动端需要更多空间避免header遮挡 */
    }
    
    .game-section {
        overflow-x: hidden;
        width: 100%;
    }
    nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 0;
        position: relative;
    }
    
    .logo {
        font-size: 1.4rem;
        margin-bottom: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
        margin: 0;
        padding: 0;
        list-style: none;
    }
    
    .nav-links.active {
        transform: translateX(0);
    }
    
    .nav-links a {
        padding: 1rem 2rem;
        font-size: 1.2rem;
        font-weight: 600;
        text-decoration: none;
        color: #333;
        border-radius: 12px;
        transition: all 0.3s ease;
        min-width: 200px;
        text-align: center;
        display: block;
    }
    
    .nav-links a:hover,
    .nav-links a:active {
        background: rgba(102, 126, 234, 0.1);
        color: #667eea;
        transform: scale(1.05);
    }
    
    .game-container {
        padding: 0 10px;
    }
    
    .game-container h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .game-container p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    /* Remove conflicting mobile iframe styles - will be handled in dedicated section */
    
    .game-section {
        padding: 1rem 0 0.5rem;
    }
    
    .game-first {
        padding-top: 0.5rem;
    }
    
    .content-section {
        margin: 0.5rem 10px;
        padding: 1.5rem 0;
        border-radius: 15px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .viral-story {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .timeline-item {
        padding: 1.2rem;
        margin: 0.8rem 0;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .news-card {
        padding: 1.5rem;
    }
    
    .media-links {
        gap: 1rem;
    }
    
    .media-item {
        padding: 1rem;
    }
    
    .headlines {
        max-height: 350px;
    }
    
    .headline-item {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .headline-date {
        align-self: flex-start;
        font-size: 0.75rem;
    }
    
    .headline-content h4 {
        font-size: 0.95rem;
    }
    
    .headline-content p {
        font-size: 0.85rem;
    }
    
    .timeline-event {
        padding-left: 50px;
    }
    
    .timeline-date {
        left: -50px;
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
    }
    
    .timeline-events::before {
        left: 20px;
    }
    
    .timeline-event::before {
        left: 14px;
        width: 10px;
        height: 10px;
    }
    
    .timeline-content {
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 1rem 0;
    }
    
    .logo {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }
    
    .nav-links {
        flex-direction: row;
        gap: 0.5rem;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .nav-links a {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
        min-width: auto;
    }
    
    .game-container {
        max-width: 100%;
    }
    
    .game-container h1 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .game-container p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    /* Remove conflicting mobile iframe styles - will be handled in dedicated section */
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .news-card {
        padding: 1rem;
    }
    
    .media-item {
        padding: 0.8rem;
    }
    
    .headline-item {
        padding: 0.8rem;
    }
    
    .timeline-event {
        padding-left: 50px;
    }
    
    .timeline-date {
        left: -50px;
        font-size: 0.6rem;
        padding: 0.2rem 0.5rem;
    }
    
    .timeline-content {
        padding: 1rem;
    }
    
    .timeline-events::before {
        left: 20px;
    }
    
    .timeline-event::before {
        left: 14px;
        width: 10px;
        height: 10px;
    }
    
    /* Plus Version Promo Mobile Styles */
    .plus-version-promo {
        margin: 2rem 0;
    }
    
    .plus-promo-card {
        padding: 1.8rem;
        margin: 0 5px;
        border-radius: 15px;
    }
    
    .plus-promo-header {
        margin-bottom: 1.2rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .plus-promo-header h3 {
        font-size: 1.5rem;
        text-align: center;
        line-height: 1.2;
    }
    
    .plus-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
    
    .plus-promo-card p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    .plus-features {
        gap: 0.6rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.7rem;
    }
    
    .plus-cta-button {
        padding: 1rem 1.8rem;
        font-size: 1rem;
        gap: 0.6rem;
    }
}

/* Remove conflicting small screen styles - will be handled in dedicated section */
@media (max-width: 360px) {
    
    .game-container h1 {
        font-size: 1.6rem;
    }
    
    .plus-promo-card {
        padding: 1.2rem;
        margin: 0 2px;
        border-radius: 12px;
    }
    
    .plus-promo-header {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .plus-promo-header h3 {
        font-size: 1.3rem;
        line-height: 1.2;
    }
    
    .plus-badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.6rem;
    }
    
    .plus-promo-card p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .plus-features {
        gap: 0.4rem;
        margin-bottom: 1.2rem;
    }
    
    .feature-tag {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
    
    .plus-cta-button {
        padding: 0.8rem 1.3rem;
        font-size: 0.9rem;
        gap: 0.5rem;
    }
}

/* Remove conflicting landscape styles - will be handled in dedicated section */
@media (max-width: 768px) and (orientation: landscape) {
    
    .game-section {
        padding: 0.5rem 0;
    }
    
    .game-container h1 {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
    }
    
    .game-container p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .plus-version-promo {
        margin: 1rem 0;
    }
    
    .plus-promo-card {
        padding: 1rem;
    }
}

/* Remove conflicting ultra-wide styles - will be handled in dedicated section */

/* Remove duplicate mobile iframe handling */

.loading {
    display: block;
    text-align: center;
    padding: 2rem;
    position: fixed; /* 使用 fixed 而不是 absolute */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000; /* Higher z-index to ensure visibility */
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.loading[style*="display: none"] {
    pointer-events: none !important;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Plus Version Promotion Styles */
.plus-version-promo {
    margin: 3rem 0;
    text-align: center;
}

.plus-promo-card {
    background: linear-gradient(135deg, #ff6b6b 0%, #667eea 100%);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: pulseGlow 3s ease-in-out infinite;
    max-width: 800px;
    margin: 0 auto;
}

.plus-promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.4);
}

.plus-promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 3s infinite;
}

.plus-promo-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.plus-promo-header h3 {
    color: white;
    font-size: 2rem;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.plus-badge {
    background: #ff4757;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: bounce 2s infinite;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
}

.plus-promo-card p {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.plus-promo-card strong {
    color: #fff3cd;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.plus-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.plus-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: white;
    color: #667eea;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.plus-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    color: #5a6fd8;
}

.plus-cta-button:active {
    transform: translateY(-1px);
}

@media (hover: none) and (pointer: coarse) {
    .plus-cta-button:hover {
        transform: none;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        color: #667eea;
    }
    
    .plus-cta-button:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    .plus-promo-card:hover {
        transform: none;
        box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
    }
    
    .feature-tag:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: none;
    }
}

.button-arrow {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.plus-cta-button:hover .button-arrow {
    transform: translateX(5px);
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
    }
    50% {
        box-shadow: 0 15px 35px rgba(102, 126, 234, 0.5), 0 0 30px rgba(255, 107, 107, 0.3);
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

/* 删除所有 iframe 相关的样式，让 HTML 属性控制 */

/* ========================================= */
/* IFRAME RESPONSIVE STYLE SYSTEM - REFACTORED */
/* ========================================= */

/* Game container - simple wrapper */
.game-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Tablet styles (768px - 1024px) */
@media screen and (max-width: 1024px) {
    .game-container {
        padding: 0 15px;
    }
}

/* Mobile styles (max-width: 768px) */
@media screen and (max-width: 768px) {
    .game-container {
        padding: 0 10px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        margin-bottom: -20px;
    }
}

/* Small mobile styles (max-width: 480px) */
@media screen and (max-width: 480px) {
    .game-container {
        padding: 0 5px;
        width: 100%;
        box-sizing: border-box;
    }
}

/* Landscape orientation for mobile */
@media screen and (max-width: 768px) and (orientation: landscape) {
    body .game-container .game-iframe,
    .game-section .game-container .game-iframe {
        height: 85vh !important;
        min-height: 300px !important;
        max-height: 400px !important;
    }
}

/* Ultra-wide mobile screens */
@media screen and (max-width: 480px) and (max-height: 600px) {
    body .game-container .game-iframe,
    .game-section .game-container .game-iframe {
        height: 75vh !important;
        min-height: 280px !important;
        max-height: 350px !important;
    }
}