/* --- GLOBÁLIS STÍLUSOK ÉS VÁLTOZÓK --- */
:root {
    --bg-dark: #0a0a0a;
    --bg-card: #111111;
    --bg-section: #161616;
    --primary-red: #d90429;
    --primary-red-hover: #ef233c;
    --text-muted: #9ca3af;
    --text-light: #ffffff;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Egyéni elemek blokkosítása a helyes elrendezésért */
main-header {
    display: block;
}
main-footer {
    display: block;
}

/* --- NAVIGÁCIÓ (KÖZÖS) --- */
/* --- NAVIGÁCIÓ (KÖZÖS) --- */
.navbar {
    display: flex;
    justify-content: center; /* Ez teszi tökéletesen középre a menüpontokat */
    align-items: center;
    padding: 20px 50px;
    background-color: rgba(10, 10, 10, 0.95);
    position: fixed;
    width: 100%;
    box-sizing: border-box;
    z-index: 1000;
    border-bottom: 1px solid #1f1f1f;
    top: 0;
    left: 0;
}

.logo {
    position: absolute; /* Kiszabadítjuk a flexboxból, hogy ne tolja el a menüt */
    left: 50px; /* Megtartja az eredeti bal oldali igazítást */
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo span {
    color: var(--primary-red);
}

.logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-red);
}

.btn-login {
    background: transparent;
    color: #fff;
    border: 2px solid var(--primary-red);
    padding: 8px 20px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-login:hover {
    background: var(--primary-red);
    box-shadow: 0 0 15px rgba(217, 4, 41, 0.4);
}

/* --- GOMBOK --- */
.btn-primary {
    background-color: var(--primary-red);
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--primary-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(217, 4, 41, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    padding: 10px 23px;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid #fff;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #000;
}

/* --- SZEKCIÓ CÍMEK --- */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--primary-red);
}

.center-btn { text-align: center; }


/* --- BELSŐ OLDALAK KÖZÖS HEADER TÉRVEZÉSE --- */
.page-header {
    padding: 140px 20px 60px 20px;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(10,10,10,1)), url('https://upload.wikimedia.org/wikipedia/commons/thumb/1/1d/Football_pitch_at_night.jpg/1024px-Football_pitch_at_night.jpg') center/cover;
    text-align: center;
    border-bottom: 2px solid var(--primary-red);
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 2px;
}


/* --- FOOTER (KÖZÖS) --- */
footer {
    padding: 40px 20px;
    background-color: #050505;
    border-top: 1px solid #111;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 25px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
}

.footer-logo span { color: var(--primary-red); }

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-links a:hover { color: #fff; }

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 0.8rem;
    color: #444;
}

/* --- RESZPONZIVITÁS --- */
@media (max-width: 768px) {
    .navbar { padding: 15px 20px; }
    .nav-links, .nav-actions { display: none; }
    .footer-content { flex-direction: column; text-align: center; }
    .page-header h1 { font-size: 2.2rem; }
}