/* Landing Page Styles */
.subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #daa520;
    margin-bottom: 2rem;
    font-style: italic;
}

.game-description {
    text-align: center;
}

.requirements ul {
    list-style-type: none;
    padding: 0;
}

.requirements li {
    background: rgba(255, 107, 53, 0.1);
    padding: 0.8rem;
    margin: 0.5rem 0;
    border-radius: 8px;
    border-left: 4px solid #ff6b35;
}

.compatibility-check {
    text-align: center;
}

#compatibility-status {
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    font-weight: bold;
}

.status-compatible {
    background: rgba(68, 255, 68, 0.2);
    border: 1px solid #44ff44;
    color: #44ff44;
}

.status-incompatible {
    background: rgba(255, 68, 68, 0.2);
    border: 1px solid #ff4444;
    color: #ff4444;
}

.actions {
    text-align: center;
    margin-top: 2rem;
}

footer {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    color: #888;
    font-size: 0.9rem;
} 