/* --- 1. VARIABLEN & RESET --- */
:root {
    --primary-blue: #00b4ff;     /* Das leuchtende Blau aus dem Logo */
    --dark-blue: #004a82;        /* Tiefblau für Akzente */
    --dark-bg: #030a12;          /* Sehr dunkles Blau-Schwarz */
    --card-bg: #0a1622;          /* Dunkle Blau-Graue Karten */
    --nav-bg: rgba(3, 10, 18, 0.95);
    --text-main: #ffffff;
    --text-muted: #a0c4d6;       /* Bläuliches Grau */
    --font-primary: 'Rajdhani', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-main);
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.highlight {
    color: var(--primary-blue);
    text-shadow: 0 0 10px rgba(0, 180, 255, 0.5);
}

/* --- 2. NAVIGATION --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--nav-bg);
    border-bottom: 2px solid var(--primary-blue);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-main);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    color: var(--text-main);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.1rem;
    transition: 0.3s ease;
}

nav ul li a:hover, 
nav ul li a.active {
    color: var(--primary-blue);
}

/* --- 3. HERO SEKTION --- */
.hero {
    height: 100vh;
    /* Nutzt dein Banner.jpg und legt einen dunklen Verlauf darüber */
    background: linear-gradient(rgba(3, 10, 18, 0.8), rgba(3, 10, 18, 0.8)), 
                url('../assets/Banner.webp') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: relative;
    z-index: 2; /* Liegt über dem Logo-Wasserzeichen */
}

.hero-overlay h1 {
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 5px;
    margin-bottom: 10px;
    text-transform: uppercase;
    /* Glow-Effekt für den Namen */
    text-shadow: 0 0 30px rgba(0, 180, 255, 0.4);
}

.hero-subtitle {
    font-size: 1.2rem;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-bottom: 30px;
    text-transform: uppercase;
}

.cta-btn {
    background-color: var(--primary-blue);
    color: white;
    padding: 15px 40px;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    box-shadow: 0 0 20px rgba(0, 180, 255, 0.3);
}

.cta-btn:hover {
    background-color: white;
    color: var(--primary-blue);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 180, 255, 0.6);
}

/* --- 4. PLAYER CARDS & TEAM GRID --- */
.teams-container {
    padding: 120px 20px 60px;
    max-width: 1300px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 50px;
    border-left: 4px solid var(--primary-blue);
    padding-left: 20px;
}

.subtitle {
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
}

.title {
    font-size: 3rem;
    text-transform: uppercase;
}

.player-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.player-card {
    background-color: var(--card-bg);
    border: 1px solid #1a2e3e;
    padding: 25px;
    position: relative;
    overflow: hidden;
    height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    z-index: 1; /* Basis-Schicht */
}

/* DAS LOGO ALS EIGENE SCHICHT GANZ UNTEN */
.player-card::after {
    content: "";
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 50%;
    background-image: url('../assets/transparent.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.15;
    z-index: -1; /* Zwingt das Logo HINTER den Namen */
    pointer-events: none;
}

.player-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 180, 255, 0.15);
}

.player-card:hover::after {
    opacity: 0.25;
}

.player-bg-text {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5rem;
    font-weight: 900;
    color: rgba(0, 180, 255, 0.05);
    text-transform: uppercase;
    z-index: 0; /* Liegt über dem Logo, aber unter dem Text */
    pointer-events: none;
}

.country {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--text-muted);
    font-weight: bold;
    z-index: 3;
}

.player-main-info {
    z-index: 3;
    margin-top: 80px;
}

.ign {
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin: 0;
    text-transform: uppercase;
    font-weight: 700;
}

.real-name {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.player-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(26, 46, 62, 0.5);
    padding-top: 15px;
    z-index: 3;
}

.role {
    font-weight: bold;
    color: #4a6a8a;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.stat {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-blue);
}

/* --- 5. ABOUT US SEKTION --- */
.about-section {
    padding: 120px 20px 80px;
    max-width: 1300px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.about-card {
    background-color: var(--card-bg);
    border: 1px solid #1a2e3e;
    padding: 40px 30px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
}

.about-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-blue);
    transition: 0.3s;
}

.about-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 180, 255, 0.15);
}

.about-card:hover::before {
    width: 100%;
    opacity: 0.05;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-card h3 {
    font-size: 2rem;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.about-card p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.05rem;
}

.about-card p + p {
    margin-top: 15px;
}

/* --- 6. FOOTER --- */
footer {
    text-align: center;
    padding: 40px;
    background-color: #02060a;
    border-top: 1px solid #1a2e3e;
    color: var(--text-muted);
    margin-top: 50px;
}

/* --- 7. RESPONSIVE DESIGN --- */
@media (max-width: 768px) {
    .hero-overlay h1 { font-size: 3rem; }
    .nav-content { flex-direction: column; gap: 15px; }
    .about-grid { grid-template-columns: 1fr; }
    .title { font-size: 2.2rem; }
}