/* Base Styles */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #121212;
    overflow: hidden;
}

/* Landing Page Styles */
#landing-page {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #42a5f5, #0277bd); 
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
}

.landing-content {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    max-width: 450px;
    width: 90%;
}

.game-logo {
    max-width: 250px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

h1 {
    color: #1b263b;
    font-size: 2.8em;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 900;
}

p {
    color: #4a4e69;
    font-size: 1.1em;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* Big Play Button */
.play-button {
    background-color: #ffb300; 
    color: #1b263b;
    border: none;
    padding: 18px 60px;
    font-size: 1.8em;
    font-weight: 900;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 6px 0 #f57c00, 0 10px 20px rgba(0,0,0,0.2);
    transition: all 0.15s ease;
    text-transform: uppercase;
    display: inline-block;
}

.play-button:hover {
    background-color: #ffc107;
    transform: translateY(-2px);
    box-shadow: 0 8px 0 #f57c00, 0 12px 25px rgba(0,0,0,0.2);
}

.play-button:active {
    transform: translateY(4px);
    box-shadow: 0 2px 0 #f57c00, 0 5px 10px rgba(0,0,0,0.2);
}

/* Seamless iframe container */
#game-container, #game-frame {
    width: 100vw;
    height: 100vh;
    border: none;
    display: block;
}