/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    line-height: 1.6;
}

/* Header and Banner */
header {
    width: 100%;
    text-align: center;
}

.banner {
    width: 30%;
    height: auto;
//    max-height: 300px;
    object-fit: cover;
}

/* Main content */
main {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}

h1, h2, h3 {
    color: #FF6000; /* Orange from Half-Life 2 palette */
    text-align: center;
    margin-bottom: 15px;
}

h1 {
    font-size: 2.5em;
    margin: 20px 0;
}

h2 {
    font-size: 1.8em;
}

h3 {
    font-size: 1.4em;
}
h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    font-weight: bold;
}
p {
    font-family: 'Orbitron', sans-serif;
    font-size:

.content-box {
    background-color: #111;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 96, 0, 0.3);
}

p, li {
    margin-bottom: 10px;
}

ol, ul {
    margin-left: 20px;
}

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

a:hover {
    text-decoration: underline;
}

code {
    background-color: #222;
    padding: 2px 5px;
    border-radius: 3px;
}

/* Stats section */
.stats {
    margin-top: 40px;
}

iframe {
    display: block;
    margin: 0 auto;
    background-color: #111;
    border-radius: 10px;
}
