/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
header {
    background: linear-gradient(90deg, #ff416c, #ff4b2b);
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

header .logo {
    font-size: 1.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

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

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #ffda79;
}

/* Hero Section */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('game-background.jpg') no-repeat center center/cover;
    text-align: center;
    padding: 20px;
}

.hero h1 {
    font-size: 3rem;
    text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.3);
}

.hero p {
    font-size: 1.4rem;
    margin-top: 10px;
    opacity: 0.8;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    margin-top: 20px;
    font-size: 1.2rem;
    color: white;
    background: #ff416c;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}

.btn:hover {
    background: #ff4b2b;
    transform: scale(1.05);
}

/* Footer */
footer {
    background: #222;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}

footer p {
    font-size: 1rem;
    opacity: 0.7;
}