@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

/* General Styles: Futuristic Cyberpunk Theme */
body {
    font-family: 'Roboto', sans-serif; /* Modern font */
    margin: 0;
    background-color: #111; /* Dark background */
    color: #eee; /* Light text color */
    line-height: 1.6; /* Improved readability */
}

a {
    color: #64b5f6; /* Light blue link color */
    text-decoration: none;
    transition: color 0.3s ease; /* Smooth transition */
}

a:hover {
    color: #90caf9; /* Lighter blue on hover */
    text-decoration: underline;
}

.button {
    background-color: #00bcd4; /* Teal button color */
    color: #111;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #26c6da;
}

.button.small {
    padding: 8px 16px;
    font-size: 0.9em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles: Sleek Navigation */
header {
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent dark header */
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); /* Stronger shadow */
    position: sticky; /* Stick to top on scroll */
    top: 0;
    z-index: 100; /* Ensure it's above other content */
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    max-height: 40px;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

header nav ul li {
    margin-left: 30px;
}

/* Hero Section Styles: Dramatic Entrance */
#hero {
    background-image: url("https://via.placeholder.com/1920x1080?text=Hero+Image"); /* Dark/Mysterious image */
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 150px 0;
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 1;
}

#hero .container {
    position: relative; /* Bring content above overlay */
    z-index: 2;
}

#hero h1 {
    font-size: 4em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); /* Text shadow for emphasis */
}

#hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Featured Games Styles: Showcase Games */
#featured-games {
    padding: 60px 0;
    background-color: #222; /* Darker background for contrast */
}

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

.game-card {
    background-color: #333; /* Dark card background */
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Hover effect */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.game-card:hover {
    transform: translateY(-5px); /* Slight lift on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

.game-card img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 15px;
}

.game-card h3 {
    margin-bottom: 10px;
    color: #fff;
    font-size: 1.4em;
}

/* News Styles: Stay Updated */
#news {
    padding: 60px 0;
    background-color: #1a1a1a; /* Even darker background */
}

.news-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-item {
    background-color: #333;
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.news-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.news-item h3 a {
    color: #64b5f6; /* Keep links visible */
}

.news-item small {
    color: #888; /* Subdued metadata */
    display: block;
    margin-top: 5px;
}

/* Contact Styles: Reach Out */
#contact {
    padding: 60px 0;
    background-color: #222;
}

#contact form {
    display: flex;
    flex-direction: column;
    max-width: 600px; /* Wider form */
    margin: 0 auto;
}

#contact form input,
#contact form textarea {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #555; /* Darker border */
    border-radius: 6px;
    font-size: 1.1em;
    background-color: #444; /* Dark form fields */
    color: #eee;
}

/* Footer Styles: End Transmission */
footer {
    background-color: #000;
    color: #777;
    padding: 30px 0;
    text-align: center;
    font-size: 0.9em;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

footer nav ul li {
    margin-left: 20px;
}