/* Base layout and background */
body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: url("https://www.transparenttextures.com/patterns/dark-mosaic.png");
    background-color: #1a1a1a;
    color: #eee;
}

/* Header styling */
header {
    background: linear-gradient(to bottom, #111, #1a1a1a);
    padding: 30px 20px;
    text-align: center;
    border-bottom: 4px solid darkred;
}

.logo {
    display: block;
    margin: 0 auto 10px auto;
    max-width: 250px;
    height: auto;
    border: 2px solid #550000;
    border-radius: 6px;
    box-shadow: 0 0 10px #000000aa;
}

/* Title styling */
.title {
    font-family: 'Bebas Neue', Impact, sans-serif;
    font-weight: 900;
    font-size: 4em;
    text-transform: uppercase;
    text-align: center;
    color: #e63946;
    margin: 0;
    line-height: 1;
    letter-spacing: 2px;
}

.title .words {
    font-size: 0.8em;
    color: #8B0000;
    text-shadow: 2px 2px 0 #000, 4px 4px 8px rgba(0, 0, 0, 0.5);
    display: block;
}

/* Main content */
main {
    background: rgba(0, 0, 0, 0.85);
    margin: 30px auto;
    max-width: 900px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px black;
}

section {
    margin-bottom: 40px;
}

section h2 {
    color: #f44336;
    border-bottom: 1px solid #444;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

/* Mod entry box */
.mod-entry {
    background: #222;
    border-left: 5px solid darkred;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 8px #000;
}

.mod-entry h3 {
    margin-top: 0;
    color: #ff4c4c;
}

/* Big red download button */
.big-download-button {
    display: inline-block;
    background-color: #e63946;
    color: #fff;
    font-size: 2.2em;
    font-weight: bold;
    padding: 24px 50px;
    margin: 40px auto 0 auto;
    border-radius: 16px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s, background-color 0.3s;
}

.big-download-button:hover {
    background-color: #c92a36;
    transform: scale(1.05);
}

/* Footer */
footer {
    text-align: center;
    background: rgba(10, 10, 10, 0.95);
    color: #aaa;
    padding: 15px;
    font-size: 0.9em;
}
/* Embedded video styling */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border: 4px solid darkred;
    border-radius: 10px;
    box-shadow: 0 0 12px #000;
    margin-top: 20px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
