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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f4f4f4;
}

header {
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

nav {
    margin-top: 1.5rem;
}

nav a {
    color: white;
    margin: 0 1.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
    font-size: 1.1rem;
}

nav a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

section {
    background: white;
    margin: 2rem 0;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

section h2 {
    color: #8B0000;
    margin-bottom: 1rem;
    border-bottom: 3px solid #8B0000;
    padding-bottom: 0.5rem;
    font-size: 2rem;
}

section p {
    margin-bottom: 1rem;
}

section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

section li {
    margin-bottom: 0.5rem;
}

.game-card {
    border: 2px solid #8B0000;
    padding: 2rem;
    margin: 1.5rem 0;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
    background: #fff;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.3);
}

.game-card h3 {
    color: #8B0000;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.play-button {
    display: inline-block;
    background: #8B0000;
    color: white;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
    transition: background 0.3s;
    font-weight: 600;
}

.play-button:hover {
    background: #DC143C;
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}

.screenshot {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin: 1rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }
    
    nav a {
        display: block;
        margin: 0.5rem 0;
    }
    
    .game-grid {
        grid-template-columns: 1fr;
    }
}