/* ==========================================================================
   1. GLOBAL RESET & VARIABLES
   ========================================================================== */
@font-face {
    font-family: 'MyMeiryo';
    src: url('MEIRYO.TTC') format('truetype-collection'),
         url('MEIRYO.TTC') format('collection');
    font-weight: 300;
    font-style: normal;
}

:root {
    --bg-dark: #0b0c10;
    --card-bg: rgba(18, 20, 26, 0.75);
    --card-border: rgba(255, 255, 255, 0.08);
    --accent-orange: #ff5500;
    --accent-orange-glow: rgba(255, 85, 0, 0.25);
    --text-white: #ffffff;
    --text-muted: #b0b5c0;
    --font-heading: 'MyMeiryo', 'Rajdhani', sans-serif;
    --font-body: 'MyMeiryo', 'Montserrat', sans-serif;
	text-shadow: 0 0 10px #0b0c10;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Sanftes Weitercrollen aktivieren */
html {
    scroll-behavior: smooth;
}

html, body {
	margin: 0;
    padding: 0;
    width: 100%;
	height: 100%;
    min-height: 100vh;
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    overflow: hidden;
}

/* ==========================================================================
   2. NAVBAR
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 6%;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(11, 12, 16, 0.9) 0%, rgba(11, 12, 16, 0) 100%);
    backdrop-filter: blur(8px);
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.logo span {
    color: var(--accent-orange);
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-orange);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-orange);
    box-shadow: 0 0 8px var(--accent-orange);
}

/* ==========================================
   NAVBAR DROPDOWN
   ========================================== */
.nav-dropdown {
    position: relative;
    display: inline-flex;
}

.dropdown-arrow {
    display: inline-block;
    font-size: 0.75rem;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 160px;
    background: rgba(18, 20, 26, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 6px 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    z-index: 1000;
    margin-top: 8px;
}

/* Unsichtbare Brücke über die 8px Lücke */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 10px;
}

.nav-dropdown:hover .dropdown-menu {
    display: flex;
    flex-direction: column;
}

.dropdown-item {
    padding: 10px 16px;
    color: #a0a5b5;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s ease;
    white-space: nowrap;
    text-align: left;
}

.dropdown-item:hover,
.dropdown-item.active {
    color: #ffffff;
    background: rgba(255, 85, 0, 0.15);
    border-left: 3px solid #ff5500;
    padding-left: 13px;
}
/* ==========================================================================
   3. SECTIONS & HERO BASE LAYOUT
   ========================================================================== */
.page-container {
    position: relative;
    width: 100%;
    height: 100vh;
	overflow: hidden;
}

/* Sektionen übereinander stapeln */
.page-section {
position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
	background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    opacity: 0;
    visibility: hidden;
    pointer-events: none; /* WICHTIG: Unsichtbare Sektionen blockieren nichts mehr */
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out, visibility 0.6s;
    transform: scale(0.97);
    z-index: 1;
    overflow: hidden;
}

/* Aktive Sektion sichtbar machen */
.page-section.active-section {
    opacity: 1;
    visibility: visible;
	pointer-events: auto; /* Klicks & Interaktionen nur hier aktivieren */
    transform: scale(1);
    z-index: 2;
}

/* Dunkles Vignette-Overlay über den Hintergründen */
.section-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
    pointer-events: none;
}

.section-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1600px;
    height: 100%;
    margin: 0 auto;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

/* ==========================================================================
   4. CHARAKTER SHADOW & GLOW EFFECT
   ========================================================================== */
.character-box {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    line-height: 0;
    pointer-events: none;
}

.character-img_sitting {
    max-height: 85dvh;
    max-width: 85dvw;
    width: auto;
    display: block;
    filter: drop-shadow(-10px 0 25px rgba(0, 0, 0, 0.6));
}

/* ==========================================================================
   5. HOME SECTION SPECIFIC
   ========================================================================== */
.home-layout {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 50px;
    box-sizing: border-box;
}

.hero-text {
    max-width: 550px;
    z-index: 5;
}

.sub-headline {
    color: var(--accent-orange);
    font-weight: 800;
    font-size: clamp(0.85rem, 1.2vw, 1.1rem);
    letter-spacing: 2px;
}

.main-headline {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 4.2vw, 4.8rem);
    font-weight: 700;
    line-height: 1;
    margin: 10px 0 15px;
    letter-spacing: 2px;
}

.divider {
    /*width: 60px;*/
    height: 4px;
    background-color: var(--accent-orange);
    box-shadow: 0 0 10px var(--accent-orange);
    margin-bottom: 25px;
}

.description {
    font-size: clamp(0.9rem, 1.1vw, 1.1rem);
    line-height: 1.6;
    color: var(--text-muted);
}

/* ==========================================================================
   6. SIMRACING SECTION (CHARAKTER LINKS, CONTENT RECHTS)
   ========================================================================== */
.simracing-layout {
    width: 100%;
    height: 100%;
    position: relative;            /* Bezugspunkt für das absolute Bild unten links */
    display: flex;
    justify-content: flex-end;     /* Drückt den Content-Bereich nach rechts */
    align-items: center;
    padding: 90px 50px 40px 50px;
    box-sizing: border-box;
}

/* Positionierung des Charakters fest unten links */
.character-box-left {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    line-height: 0;
    margin: 0;
    padding: 0;
    pointer-events: none;
}

.character-img_standing {
    display: block;
    max-height: 85dvh;
    max-width: 45dvw;                /* Verhindert, dass das Bild zu weit nach rechts ragt */
    width: auto;
    height: auto;
    filter: drop-shadow(10px 0 25px rgba(0, 0, 0, 0.6));
}

/* Inhaltsblock auf der rechten Seite */
.simracing-content-right {
    position: relative;
    z-index: 10;                    /* Liegt über dem Charakter-Bild */
    width: 100%;
    max-width: 850px;
    max-height: calc(100dvh - 140px);
    overflow-y: auto;               /* Scrollen bei kleineren Monitoren */
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-right: 10px;
}

.simracing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* Cards für Teams, Skins und Ergebnisse */
.info-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 24px;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.info-card.full-width {
    grid-column: 1 / -1;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--accent-orange);
    margin-bottom: 18px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--card-border);
    padding-bottom: 8px;
}

/* Team Section mit perfekter Zentrierung & Hover-Effekt */
.team-logos {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.team-logos a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-decoration: none;
}

.team-logos img {
    max-width: 75%;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.team-logos a:hover img {
    transform: scale(1.06);
    filter: drop-shadow(0 0 12px var(--accent-orange-glow)) drop-shadow(0 4px 10px rgba(0, 0, 0, 0.6));
}

/* Skins Preview */
.skin-gallery {
    display: flex;
    gap: 15px;
}

.skin-img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--card-border);
    transition: transform 0.3s ease;
}

.skin-img:hover {
    transform: scale(1.03);
}

/* Platzierungen Liste/Tabelle */
.placements-table {
    width: 100%;
    border-collapse: collapse;
}

.placements-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background-color 0.2s ease;
}

.placements-table tr:hover {
    background-color: rgba(255, 255, 255, 0.03);
}

.placements-table td {
    padding: 10px 12px;
    font-size: 0.95rem;
}

.track-name {
    font-weight: 600;
    color: var(--text-white);
}

.car-name {
    color: var(--text-muted);
}

.rank-badge {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--accent-orange);
    text-align: right;
}

.race-date {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-align: right;
}

/* Macht die Ergebnis-Tabelle bei vielen Einträgen scrollbar */
.table-container {
    max-height: 260px;
    overflow-y: auto;
    padding-right: 5px;
}

/* Dezent gestylte Scrollbalken (für Content & Tabelle) */
.simracing-content-right::-webkit-scrollbar,
.table-container::-webkit-scrollbar {
    width: 6px;
}
.simracing-content-right::-webkit-scrollbar-thumb,
.table-container::-webkit-scrollbar-thumb {
    background: var(--accent-orange);
    border-radius: 3px;
}
.simracing-content-right::-webkit-scrollbar-track,
.table-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

/* Card Header mit Logo rechts */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--card-border);
    padding-bottom: 8px;
    margin-bottom: 18px;
}

/* Entfernt den doppelten Strich & Abstand von der Überschrift, wenn sie im Header liegt */
.card-header .card-title {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

/* Styling für das Logo oben rechts */
.card-header-logo {
    max-height: 32px; /* Steuert die Höhe des Logos */
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.4));
}

/* ==========================================================================
   7. MEDIA QUERIES: VERTIKAL MODE (TABLET & MOBILE - unter 1025px)
   ========================================================================== */
@media (max-width: 1024px) {



    .hero-text {
        max-width: 100%;
        margin-bottom: 20px;
    }

    /* Auf schmalen Schirmen verkleinern wir die Charakter-Grafik & setzen Opacity leicht herab */
    .character-box {
        position: absolute;
        right: -10px;
        bottom: 0;
        pointer-events: none;
    }

    .character-img {
        max-height: 45vh;
        max-width: 100vw;
    }


    /* --- SIMRACING SECTION (VERTIKAL) --- */
    .simracing-layout {
        flex-direction: column;
        justify-content: flex-start;
        padding: 90px 20px 30px 20px;
        overflow-y: auto;
    }

    .simracing-content-right {
        max-width: 100%;
        max-height: none; /* Auf mobilen Geräten nutzt der Content die normale Seitenhöhe */
        overflow-y: visible;
        padding-right: 0;
    }

    /* Charakter wird auf schmalen Bildschirmen dezent im Hintergrund platziert */
    .character-box-left {
        position: absolute;
        left: -10px;
        bottom: 0;
        z-index: 1; /* Rutscht hinter den Content */
    }
}

/* --- ZUSATZ FÜR SMALL MOBILE (unter 768px) --- */
@media (max-width: 768px) {
    /* Die 2 Nebeneinander-Cards werden auf Smartphones untereinander gestapelt */
    .simracing-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   LIGHTBOX MODAL (ROBUST)
   ========================================================================== */
.lightbox-trigger {
    cursor: pointer !important;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.lightbox-trigger:hover {
    opacity: 0.85;
    transform: scale(1.02);
}

/* Das Vollbild-Overlay */
.lightbox-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.9) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    
    /* Display: none statt opacity sorgt dafür, dass es im Hintergrund nicht stört */
    display: none; 
    justify-content: center;
    align-items: center;
    
    /* Sehr hoher Z-Index, damit es über Header/Navi liegt */
    z-index: 999999 !important;
}

/* Wird sichtbar, wenn .active hinzugefügt wird */
.lightbox-overlay.active {
    display: flex !important;
}

/* Großes Bild im Modal */
.lightbox-overlay img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    pointer-events: auto;
}

/* Schließen Button oben rechts */
.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #ffffff;
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    z-index: 1000000;
    user-select: none;
}

.lightbox-close:hover {
    color: var(--accent-orange);
}

/* ==========================================
   WORK IN PROGRESS (XL Charakter unten)
   ========================================== */
.wip-container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end; /* Zwingt den Charakter an den unteren Rand */
    overflow: hidden;
    text-align: center;
    box-sizing: border-box;
}

/* Textbereich oben fixiert */
.wip-content {
    position: absolute;
    top: 90px; /* Abstand zur Navbar */
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 90%;
    max-width: 650px;
    pointer-events: none; /* Klicks gehen durch den Text durch */
}

/* Status-Badge */
.wip-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(18, 20, 26, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 85, 0, 0.4);
    color: #ff5500;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.pulsing-dot {
    width: 8px;
    height: 8px;
    background-color: #ff5500;
    border-radius: 50%;
    box-shadow: 0 0 10px #ff5500;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 85, 0, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(255, 85, 0, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 85, 0, 0); }
}

.wip-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 8px;
    color: #ffffff;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
}

.wip-title .highlight {
    color: #ff5500;
    text-shadow: 0 0 20px rgba(255, 85, 0, 0.5);
}

.wip-description {
    color: #a0a5b5;
    font-size: 1.05rem;
    margin: 0 auto;
    max-width: 480px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

/* Charakter Container */
.wip-character-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    height: 80vh; /* Füllt 80% der Bildschirmhöhe */
    z-index: 2;
    pointer-events: none;
}

/* Großer Glowing-Effekt hinter dem Charakter */
.character-glow {
    position: absolute;
    bottom: 5%;
    width: 50vw;
    height: 50vw;
    max-width: 600px;
    max-height: 600px;
    background: radial-gradient(circle, rgba(255, 85, 0, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
}

/* Der extragroße Charakter */
.wip-character-img {
    height: 80vh; /* Exakt 80% Höhe */
    max-height: 80vh;
    width: auto;
    max-width: 95vw;
    object-fit: contain;
    object-position: bottom center; /* Steht fest auf dem unteren Rand */
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 35px rgba(0, 0, 0, 0.9));
}

/* Smartphone-Anpassungen */
@media (max-width: 768px) {
    .wip-content {
        top: 75px;
    }
    .wip-title {
        font-size: 2rem;
    }
    .wip-description {
        font-size: 0.95rem;
    }
    .wip-character-img {
        height: 65vh; /* Etwas kleiner auf Mobilgeräten, damit Text nicht verdeckt wird */
        max-height: 65vh;
    }
}

/* ==========================================
   SKINS SECTION (Split-Layout)
   ========================================== */
.skins-section-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1250px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 85vh;
    box-sizing: border-box;
}

/* --- LINKE SEITE (Charakter & Header) --- */
.skins-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    max-width: 480px;
}

.skins-header-text {
    margin-bottom: 20px;
    z-index: 2;
}

.skins-badge {
    display: inline-block;
    background: rgba(255, 85, 0, 0.1);
    border: 1px solid rgba(255, 85, 0, 0.3);
    color: #ff5500;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.skins-header-text h2 {
    font-size: 2.6rem;
    font-weight: 800;
    font-family: 'Rajdhani', sans-serif;
    color: #fff;
    margin: 0 0 8px 0;
    line-height: 1.1;
}

.skins-header-text .highlight {
    color: #ff5500;
    text-shadow: 0 0 15px rgba(255, 85, 0, 0.4);
}

.skins-header-text p {
    color: #a0a5b5;
    font-size: 0.95rem;
    margin: 0;
}

.skins-character-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
}

.skins-char-glow {
    position: absolute;
    bottom: 0;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 85, 0, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
}

.skins-character-img {
    height: auto;
    max-height: 480px;
    width: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.8));
    animation: floatSkinsChar 4s ease-in-out infinite;
}

@keyframes floatSkinsChar {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

/* --- RECHTE SEITE (Liste & Scroll-Box) --- */
.skins-right {
    flex: 1.2;
    width: 100%;
    max-width: 650px;
}

.skins-scroll-box {
    max-height: 72vh;
    overflow-y: auto;
    padding-right: 12px;
}

/* Custom Scrollbar für die Liste */
.skins-scroll-box::-webkit-scrollbar {
    width: 6px;
}
.skins-scroll-box::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
}
.skins-scroll-box::-webkit-scrollbar-thumb {
    background: rgba(255, 85, 0, 0.5);
    border-radius: 4px;
}
.skins-scroll-box::-webkit-scrollbar-thumb:hover {
    background: #ff5500;
}

/* Skin-Karten Grid */
.skins-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.skin-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: rgba(18, 20, 26, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.skin-card:hover {
    border-color: rgba(255, 85, 0, 0.5);
    transform: translateX(4px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

/* Vorschaubild */
.skin-img-wrapper {
    position: relative;
    width: 140px;
    height: 90px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #0d0e12;
}

.skin-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.skin-card:hover .skin-img-wrapper img {
    transform: scale(1.08);
}

.skin-ext-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    background: rgba(0, 0, 0, 0.75);
    color: #ff5500;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid rgba(255, 85, 0, 0.3);
}

/* Info & Download */
.skin-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.skin-info h3 {
    font-size: 1.15rem;
    color: #ffffff;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    margin: 0 0 4px 0;
}

.skin-meta {
    font-size: 0.8rem;
    color: #8a8f9d;
    margin-bottom: 10px;
}

.skin-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    background: #ff5500;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 7px 16px;
    border-radius: 6px;
    transition: all 0.2s ease;
    box-shadow: 0 3px 12px rgba(255, 85, 0, 0.25);
}

.skin-download-btn:hover {
    background: #ff6611;
    box-shadow: 0 4px 18px rgba(255, 85, 0, 0.45);
}

.skins-empty {
    text-align: center;
    padding: 40px;
    color: #8a8f9d;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

/* --- MOBILE ANPASSUNG --- */
@media (max-width: 900px) {
    .skins-section-container {
        flex-direction: column;
        padding: 20px 15px;
    }
    
    .skins-left {
        max-width: 100%;
    }
    
    .skins-character-img {
        max-height: 250px;
    }
    
    .skins-scroll-box {
        max-height: 50vh;
    }
    
    .skin-card {
        padding: 10px;
        gap: 12px;
    }
    
    .skin-img-wrapper {
        width: 100px;
        height: 70px;
    }
}