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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.container {
    max-width: 800px;
    width: 90%;
    text-align: center;
    padding: 2rem;
}

header {
    margin-bottom: 3rem;
}

.game-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.1em;
}

.tagline {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.9;
}

.status-banner {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.status-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
}

.content {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.content p:last-child {
    margin-bottom: 0;
}

footer {
    margin-top: 2rem;
    opacity: 0.7;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .game-title {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .status-text {
        font-size: 1.4rem;
    }
    
    .content p {
        font-size: 1rem;
    }
}
