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

/* Body Styling */
body {
background: #f4f6f8;
color: #333;
max-width: 900px;
margin: auto;
padding: 20px;
}

/* ID Selector */
#main-title {
font-size: 40px;
text-align: center;
color: white;
}

/* Group Selector */
h1, h2 {
font-family: 'Poppins', sans-serif;
}

/* Class Selector */
.section-title {
color: #2563eb;
margin-top: 30px;
margin-bottom: 10px;
border-bottom: 3px solid #2563eb;
padding-bottom: 5px;
}

/* Element Selector */
p {
font-size: 18px;
line-height: 1.7;
margin-bottom: 15px;
}

/* Element + Class Selector */
p.highlight {
background: #fff7cc;
padding: 12px;
border-left: 5px solid #facc15;
border-radius: 4px;
}

/* Hero Banner */
.hero {
height: 350px;
background-image: url("https://images.unsplash.com/photo-1511512578047-dfb367046420");
background-size: cover;
background-position: center;
display: flex;
align-items: center;
justify-content: center;
border-radius: 10px;
margin-bottom: 30px;
position: relative;
}

.hero::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.5);
border-radius: 10px;
}

.hero-text {
position: relative;
text-align: center;
}

.tagline {
color: #e5e7eb;
font-size: 20px;
margin-top: 10px;
}

/* Image Styling */
img {
display: block;
margin: 20px auto;
border-radius: 10px;
width: 100%;
max-width: 500px;
box-shadow: 0 6px 12px rgba(0,0,0,0.15);
transition: 0.3s;
}

img:hover {
transform: scale(1.05);
}

/* Descendant Selector */
ul.game-list li {
margin: 8px 0;
font-size: 18px;
}

/* List Styling */
ul.game-list {
background: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
margin-bottom: 20px;
}

/* Attribute Selector */
a[target="_blank"] {
color: #2563eb;
font-weight: bold;
text-decoration: none;
}

/* Gaming Neon Button */
.gaming-button {
display: inline-block;
margin-top: 15px;
padding: 12px 20px;
background: #111;
color: #00ffea;
text-decoration: none;
font-weight: bold;
border-radius: 6px;
border: 2px solid #00ffea;
transition: 0.3s;
}

.gaming-button:hover {
background: #00ffea;
color: #111;
box-shadow: 0 0 10px #00ffea,
            0 0 20px #00ffea,
            0 0 40px #00ffea;
}