body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: #e2e8f0;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    overflow-x: hidden;
}

.game-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.game-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(124, 58, 237, 0.2);
}

.game-title {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    background: linear-gradient(45deg, #fbbf24, #7c3aed, #06b6d4);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
    margin: 0;
}

.return-button {
    background: linear-gradient(45deg, #7c3aed, #06b6d4);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(124, 58, 237, 0.3);
}

.return-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.4);
}

.game-frame {
    flex: 1;
    background: linear-gradient(145deg, #1e293b, #334155);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(124, 58, 237, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lg-object {
    width: 100%;
    height: 100%;
    min-height: 600px;
    border-radius: 15px;
    border: none;
    background: #000;
}

.game-info {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(145deg, #0f172a, #1e293b);
    border-radius: 15px;
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.game-info p {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin: 0;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .game-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .game-title {
        font-size: 1.5rem;
    }
    
    .game-frame {
        min-height: 400px;
        padding: 15px;
    }
    
    .lg-object {
        min-height: 400px;
    }
    
    .return-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .game-container {
        padding: 10px;
    }
    
    .game-frame {
        min-height: 300px;
        padding: 10px;
    }
    
    .lg-object {
        min-height: 300px;
    }
    
    .game-title {
        font-size: 1.3rem;
    }
}