/* Game Page Styles */
.game-page {
    background: #1E293B;
}

.game-main {
    padding: 100px 0 40px;
    min-height: calc(100vh - 140px);
}

.demo-section {
    padding: 6rem 0;
    background: #1E293B;
    position: relative;
    text-align: center;
}

.demo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(rgba(30, 58, 138, 0.1), rgba(30, 58, 138, 0.1)),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><rect width="1" height="1" fill="rgba(255,255,255,0.05)"/></svg>');
    z-index: 0;
}

.demo-content {
    background: rgba(30, 58, 138, 0.7);
    border: 3px solid #F97316;
    padding: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.3);
}

.demo-content p {
    font-family: 'Montserrat', sans-serif;
    color: #E2E8F0;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}