@charset "utf-8";

/* Black-Red-Silver theme inspired by bellatorride.com */
html, body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', 'Arial', sans-serif;
    color: #f4f4f4;
    background: radial-gradient(circle at top, rgba(230, 57, 47, 0.08), transparent 30%), #070707;
    text-rendering: optimizeLegibility;
}

body {
    min-height: 100vh;
    background-attachment: fixed;
}

/* Typography */
h1 {
    font-family: 'Bebas Neue', 'Arial Black', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    text-align: center;
    color: #c00; /* red */
    text-shadow: 3px 3px 6px #000;
    margin: 1rem 0;
}

@media (max-width: 768px) {
    h1 { font-size: 3.5rem; }
}

h2 {
    font-family: 'Bebas Neue', 'Arial Black', sans-serif;
    font-size: 2.8rem;
    text-align: center;
    color: #c0c0c0; /* silver */
    text-shadow: 2px 2px 4px #000;
}

h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-align: center;
    color: #e6392f;
}

h4 {
    font-family: 'Montserrat', sans-serif;
    color: #b5b5b5;
    margin-left: 0;
}

p, ul, li, blockquote {
    font-family: 'Open Sans', sans-serif;
    color: #e0e0e0;
    line-height: 1.6;
}

p {
    margin: 1rem 0;
}

/* Links */
a {
    color: #e6392f;
    text-decoration: none;
    border-bottom: 1px solid rgba(230, 57, 47, 0.3);
    transition: color 0.25s ease, border-color 0.25s ease;
}

a:hover {
    color: #ffffff;
    border-color: rgba(230, 57, 47, 0.65);
}

/* Horizontal rules */
hr, .golden-hr {
    max-width: 1000px;
    margin: 2rem auto;
    height: 2px;
    border: none;
    background: #c0c0c0; /* silver */
}

/* Images */
img {
    max-width: 95%;
    border-radius: 10px;
    margin: 1rem auto;
    display: block;
}

/* Tables */
table, th, td {
    border-collapse: collapse;
    color: #e0e0e0;
    padding: 0.5rem;
}

/* Menu */
.menu {
    text-align: center;
    font-size: 1.1rem;
    padding: 1rem 0;
    background: rgba(15, 15, 20, 0.94);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.menu a {
    background: rgba(255, 255, 255, 0.04);
    color: #f4f4f4;
    padding: 10px 16px;
    margin: 0 5px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease;
}

.menu a:hover {
    background: rgba(230, 57, 47, 0.18);
    color: #ffffff;
}

/* Social menu */
.menu2 a {
    background: rgba(255, 255, 255, 0.04);
    color: #f4f4f4;
    padding: 10px 14px;
    margin: 0 6px;
    border-radius: 10px;
    font-size: 1.4rem;
}

.menu2 a:hover {
    background: rgba(230, 57, 47, 0.18);
    color: #ffffff;
}


.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);
    z-index: -5;
}

/* Content containers */
.div_main {
    background: rgba(18, 18, 23, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
    color: #e4e4e4;
}



/* Floats */
.float-left { float: left; margin: 0 1.5rem 1rem 0; }
.float-right { float: right; margin: 0 0 1rem 1.5rem; }
.container { overflow: auto; }