/* General Reset */
body, h1, h2, h3, p, ul, li, a, input, button {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #1a1a1a;
    color: #fff;
    line-height: 1.6;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #111;
    padding: 20px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #ff6600;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    color: #fff;
    text-decoration: none;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-right input {
    padding: 5px 10px;
    border-radius: 5px;
    border: none;
}

.login-btn {
    padding: 10px 20px;
    background-color: #ff6600;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background-image: url('hero-background.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 80px 20px;
    color: #fff;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.cta-buttons {
    margin-top: 20px;
}

.cta-buttons button {
    padding: 15px 30px;
    margin: 5px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.play-btn {
    background-color: #ff6600;
    color: #fff;
}

.learn-more-btn {
    background-color: transparent;
    color: #ff6600;
    border: 2px solid #ff6600;
}

/* Featured Games Section */
.featured-games {
    padding: 50px 20px;
    text-align: center;
}

.featured-games h2 {
    margin-bottom: 20px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.game-card {
    background-color: #222;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s;
}

.game-card:hover {
    transform: translateY(-10px);
}

.game-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* News & Updates Section */
.news-updates {
    padding: 50px 20px;
    background-color: #111;
    text-align: center;
}

.news-updates h2 {
    margin-bottom: 20px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.news-card {
    background-color: #222;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s;
}

.news-card:hover {
    transform: translateY(-10px);
}

.news-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* Footer Section */
footer {
    background-color: #111;
    padding: 30px 20px;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-content h3 {
    margin-bottom: 10px;
}

.footer-content ul {
    list-style: none;
}

.footer-content a {
    color: #ff6600;
    text-decoration: none;
}

.social-icons a {
    margin-right: 10px;
}

.newsletter input {
    padding: 10px;
    border: none;
    border-radius: 5px;
    margin-right: 10px;
}
