* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: #1a1a1a;
    color: #f5f5f5;
    line-height: 1.6;
}

a {
    color: #e7af01;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #111;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header h1 {
    font-size: 2rem;
    color: #e7af01;
}

nav a {
    margin-left: 20px;
    font-weight: bold;
}

#hero {
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)) no-repeat center center/cover;
}

#hero h2 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #e7af01;
}

#hero p {
    font-size: 1.2rem;
}

section {
    padding: 60px 50px;
}

#about h2, #games h2, #contact h2 {
    color: #e7af01;
    margin-bottom: 20px;
    text-align: center;
}


#about {
    background-color: #222;
    border-radius: 10px;
    max-width: 900px;
    margin: 20px auto;
    padding: 40px;
    text-align: center;
}

#about p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #ddd;
    line-height: 1.7;
}

#contact {
    background-color: #222;
    border-radius: 10px;
    max-width: 900px;
    margin: 20px auto;
    padding: 40px;
    text-align: center;
}

#contact p {
    text-align: center;
    font-size: 1.1rem;
}


.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-links a {
    padding: 10px 20px;
    border-radius: 5px;
    background-color: #222;
    color: #ffc922;
    font-weight: bold;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background-color: #ffc922;
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255,201,34,0.5);
}

footer {
    text-align: center;
    padding: 20px 0;
    background-color: #111;
    color: #777;
}

