* {
    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: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    min-height: 100vh;
}

header {
    background: rgba(0, 0, 0, 0.8);
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e94560;
    text-transform: uppercase;
    letter-spacing: 3px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

nav a:hover {
    color: #e94560;
}

#hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
}

#hero h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

#hero p {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 2rem;
    max-width: 600px;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #e94560;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.cta-button:hover {
    background: #ff6b6b;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.4);
}

.content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.content-section h2 {
    font-size: 2.5rem;
    color: #fff;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

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

.game-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: #e94560;
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.2);
}

.game-card h3 {
    color: #e94560;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.game-card p {
    color: #ccc;
    margin-bottom: 1.5rem;
}

.download-btn {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background: transparent;
    border: 2px solid #e94560;
    color: #e94560;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s;
}

.download-btn:hover {
    background: #e94560;
    color: #fff;
}

.emulator-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.emulator-info h3 {
    color: #e94560;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.emulator-info ul {
    list-style: none;
    margin-top: 1.5rem;
}

.emulator-info li {
    color: #ccc;
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.emulator-info li:before {
    content: "✓";
    color: #e94560;
    position: absolute;
    left: 0;
    font-weight: bold;
}

footer {
    background: rgba(0, 0, 0, 0.8);
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}

footer p {
    color: #666;
    margin: 0.5rem 0;
}

footer a {
    color: #e94560;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 2rem;
    }
    
    nav ul {
        gap: 1rem;
    }
}
