﻿:root {
    --main-orange: #4f6c82;
    --secondary-color: #4f7882;
    --background-color: #121212ad; /* Dunkler Hintergrund */
    --section-bg: #121212ad; /* Dunklerer Hintergrund für Sektionen */
    --text-color: #ffffff; /* Weiße Texte */
    --accent-color: #2a3a46;
    --font-primary: 'Oswald', sans-serif; /* Moderne Gaming-Schriftart */
    --font-secondary: 'Oswald', sans-serif; /* Gleiche Schriftart für Konsistenz */
    --transition-speed: 0.5s; /* Angemessene Transition-Geschwindigkeit */
}

/* Global Styles */
body {
    color: var(--text-color);
    font-family: var(--font-primary);
    margin: 0;
    padding: 0;
    scrollbar-width: thin;
    scrollbar-color: var(--main-orange) var(--background-color);
    background-image: url('../images/bg2.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}



/* Versteckte Hauptinhalte */
.hidden {
    display: none;
}

/* Scroll-Top Button */
#scrollTopBtn {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 99;
    background-color: var(--main-orange);
    color: #121212; /* Dunkle Farbe für den Kontrast */
    border: none;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: opacity var(--transition-speed), transform var(--transition-speed);
}

#scrollTopBtn:hover {
    background-color: var(--accent-color);
    transform: scale(1.1);
}

/* Fade-In Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--transition-speed) ease-out, transform var(--transition-speed) ease-out;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
body::-webkit-scrollbar {
    width: 12px;
}

body::-webkit-scrollbar-track {
    background: var(--background-color);
}

body::-webkit-scrollbar-thumb {
    background-color: var(--main-color-solid);
    border-radius: 0.2vw;
    border: 3px solid var(--background-color);
}

body::-webkit-scrollbar-thumb:hover {
    background-color: var(--accent-color);
}

/* Header */
.header {
    background-color: var(--background-color);
    padding: 20px 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
    /* Animation für Header nach Preloader */
    animation: headerSlideIn 0.5s ease-out forwards;
    opacity: 0;
    transform: translateY(-100%);
}

@keyframes headerSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: transform var(--transition-speed);
}

.logo-wrapper:hover {
    transform: scale(1.05);
}

.logo {
    width: 180px;
    height: auto;
    object-fit: contain;
    transition: transform var(--transition-speed);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: transform var(--transition-speed), opacity var(--transition-speed);
}

@media (max-width: 768px) {
    .header-nav {
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background-color: var(--background-color);
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 10px;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition-speed) ease-in-out;
    }

    .header-nav.active {
        max-height: 300px; /* Anpassung je nach Anzahl der Links */
    }

    .hamburger {
        display: flex;
    }
}

/* Animation für Hamburger Menü */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Header Navigation */
.header-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Header Navigation Links */
.header-nav .nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-family: var(--font-secondary);
    font-size: 16px;
    margin-left: 25px;
    position: relative;
    transition: color var(--transition-speed);
}

.header-nav .nav-link::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--main-orange);
    transition: width var(--transition-speed);
    position: absolute;
    bottom: -5px;
    left: 0;
}

.header-nav .nav-link:hover::after {
    width: 100%;
}

/* Header Buttons */
.header-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 0.2vw;
    cursor: pointer;
    font-size: 14px;
    font-family: var(--font-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background var(--transition-speed), transform var(--transition-speed);
}

.btn-login {
    background-color: var(--main-orange);
    color: #ffffff; /* Weiße Farbe für den Text */
}

.btn-login:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

.btn-register {
    background-color: transparent;
    border: 2px solid var(--main-orange);
    color: var(--main-orange);
}

.btn-register:hover {
    background-color: var(--main-orange);
    color: #ffffff; /* Weiße Farbe für den Text */
    transform: translateY(-2px);
}

.btn-primary {
    background-color: var(--main-orange);
    color: #ffffff; /* Weiße Farbe für den Text */
    text-decoration: none;
    padding: 12px 25px;
    display: inline-block;
    transition: background var(--transition-speed), transform var(--transition-speed);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

.btn-download {
    background-color: var(--main-orange);
    color: #ffffff; /* Weiße Farbe für den Text */
    transition: transform var(--transition-speed);
    padding: 10px 20px;
    border-radius: 0.2vw;
    display: block;        /* Block-Element */
    margin: 0 auto;        /* Automatische Ränder für horizontale Zentrierung */
    width: fit-content;    /* Optional: Passe die Breite an den Inhalt an */
}


.btn-download:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px) scale(1.05);
}

.btn-download i {
    font-size: 14px;
}

/* Main Content */
.main-content {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Hero-Bereich */
.hero {
    background: url('../images/bg2.jpg') no-repeat center center/cover;
    color: var(--text-color);
    padding: 100px 20px;
    text-align: center;
    border-radius: 0.2vw;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-50px);
    animation: heroFadeIn 1s ease forwards;
    animation-delay: 1.5s;
}

@keyframes heroFadeIn {
    to { opacity: 1; transform: translateY(0); }
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 18, 18, 0.7); /* Leicht transparenter dunkler Overlay */
    border-radius: 0.2vw;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    font-family: var(--font-secondary);
    opacity: 0;
    transform: translateY(-20px);
    animation: heroTextFadeIn 1s ease forwards;
    animation-delay: 1.6s;
}

@keyframes heroTextFadeIn {
    to { opacity: 1; transform: translateY(0); }
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(-20px);
    animation: heroTextFadeIn 1s ease forwards;
    animation-delay: 1.7s;
}

.hero .btn-primary {
    font-size: 1em;
    opacity: 0;
    transform: scale(0.8);
    animation: heroBtnFadeIn 1s ease forwards;
    animation-delay: 1.8s;
}

@keyframes heroBtnFadeIn {
    to { opacity: 1; transform: scale(1); }
}

/* Sections */
.section {
    background-color: var(--section-bg);
    padding: 40px 30px;
    scroll-margin-top: 80px; /* Passe diesen Wert an die Höhe deines Headers an */
    border-radius: 0.2vw;
    margin-bottom: 40px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--transition-speed), transform var(--transition-speed);
}

/* Abschnitt Überschriften */
.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.section::before {
    content: "";
    display: block;
    height: 80px; /* Höhe des Headers */
    margin-top: -80px; /* Negative Margin gleiche Höhe wie das Pseudo-Element */
}

.number-circle {
    width: 40px;
    height: 40px;
    background: var(--main-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #ffffff; /* Weiße Farbe für den Text */
    font-weight: bold;
    font-size: 18px;
}

.section h2 {
    font-size: 2em;
    font-family: var(--font-secondary);
}

/* Voraussetzungen Sektion */
.requirements-list {
    list-style: none;
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.requirements-list li {
    display: flex;
    align-items: center;
    background-color: #1e1e1e;
    padding: 15px;
    border-radius: 0.2vw;
    transition: background-color var(--transition-speed), transform var(--transition-speed);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Schatten hinzugefügt */
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInListItem 0.5s ease forwards;
}

.requirements-list li:nth-child(1) { animation-delay: 2s; }
.requirements-list li:nth-child(2) { animation-delay: 2.1s; }
.requirements-list li:nth-child(3) { animation-delay: 2.2s; }
.requirements-list li:nth-child(4) { animation-delay: 2.3s; }
.requirements-list li:nth-child(5) { animation-delay: 2.4s; }
.requirements-list li:nth-child(6) { animation-delay: 2.5s; }
.requirements-list li:nth-child(7) { animation-delay: 2.6s; }
.requirements-list li:nth-child(8) { animation-delay: 2.7s; }

@keyframes fadeInListItem {
    to { opacity: 1; transform: translateY(0); }
}

.requirements-list li:hover {
    background-color: var(--main-orange);
    color: #ffffff; /* Weiße Farbe für den Text */
    transform: scale(1.05);
}

.requirements-list li i {
    margin-right: 10px;
    font-size: 1.2em;
    color: inherit; /* Übernimmt die Textfarbe */
}

/* Downloads Sektion */
.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.download-card {
    background-color: var(--section-bg);
    padding: 20px;
    border-radius: 0.2vw;
    display: flex;               /* Flexbox aktivieren */
    flex-direction: column;      /* Vertikale Anordnung */
    align-items: center;         /* Horizontale Zentrierung */
    transition: transform var(--transition-speed), background-color var(--transition-speed), box-shadow var(--transition-speed);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Schatten hinzugefügt */
}


.download-card:nth-child(1) { animation-delay: 2.6s; }
.download-card:nth-child(2) { animation-delay: 2.7s; }
.download-card:nth-child(3) { animation-delay: 2.8s; }
.download-card:nth-child(4) { animation-delay: 2.9s; }

@keyframes fadeInDownloadCard {
    to { opacity: 1; transform: translateY(0); }
}

.download-card:hover {
    background-color: var(--main-orange);
    transform: translateY(-5px);
}

.download-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    font-family: var(--font-secondary);
}

.download-card p {
    font-size: 1em;
    margin-bottom: 15px;
}

.download-card .btn-download {
    font-size: 0.9em;
    background-color: var(--main-orange);
    color: #ffffff; /* Weiße Farbe für den Text */
    padding: 10px 20px;
    border-radius: 0.2vw;
    transition: background-color var(--transition-speed), transform var(--transition-speed), color var(--transition-speed);
}

.download-card .btn-download:hover {
    background-color: var(--accent-color);
    color: #ffffff; /* Weiße Farbe für den Text */
    transform: translateY(-2px);
}

/* Sonstiges Sektion */
.sonstiges-list {
    list-style: none;
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.sonstiges-list li {
    display: flex;
    align-items: center;
    background-color: #1e1e1e;
    padding: 15px;
    border-radius: 0.2vw;
    transition: background-color var(--transition-speed), transform var(--transition-speed);
    opacity: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Schatten hinzugefügt */
    transform: translateY(20px);
    animation: fadeInSonstigesItem 0.5s ease forwards;
}

.sonstiges-list li:nth-child(1) { animation-delay: 3.0s; }
.sonstiges-list li:nth-child(2) { animation-delay: 3.1s; }
.sonstiges-list li:nth-child(3) { animation-delay: 3.2s; }
.sonstiges-list li:nth-child(4) { animation-delay: 3.3s; }

@keyframes fadeInSonstigesItem {
    to { opacity: 1; transform: translateY(0); }
}

.sonstiges-list li:hover {
    background-color: var(--main-orange);
    transform: scale(1.05);
}

.sonstiges-list li i {
    margin-right: 10px;
    font-size: 1.2em;
    color: inherit; /* Übernimmt die Textfarbe */
}

.sonstiges-list li a {
    color: inherit; /* Übernimmt die Textfarbe */
    text-decoration: underline;
}

.sonstiges-list li a:hover {
    color: #ffffff; /* Weiße Farbe beim Hover */
}

/* Installationsanleitung Sektion */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 25px;
    height: 0;
    overflow: hidden;
    border-radius: 0.2vw;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-top: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInVideo 0.5s ease forwards;
    animation-delay: 3.4s;
}

@keyframes fadeInVideo {
    to { opacity: 1; transform: translateY(0); }
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.section h3 {
    margin-top: 20px;
    font-size: 1.5em;
    font-family: var(--font-secondary);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInSectionHeader 0.5s ease forwards;
    animation-delay: 3.5s;
}

@keyframes fadeInSectionHeader {
    to { opacity: 1; transform: translateY(0); }
}

.section ol {
    margin-top: 15px;
    padding-left: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInList 0.5s ease forwards;
    animation-delay: 3.6s;
}

@keyframes fadeInList {
    to { opacity: 1; transform: translateY(0); }
}

.section ol li {
    margin-bottom: 10px;
    font-size: 1em;
    color: var(--text-color);
}

/* Charakter-Bereich Sektion */
.characters {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInCharacters 0.5s ease forwards;
    animation-delay: 3.7s;
}

@keyframes fadeInCharacters {
    to { opacity: 1; transform: translateY(0); }
}

.character-card {
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 0.2vw;
    text-align: center;
    width: 200px;
    transition: transform var(--transition-speed), background-color var(--transition-speed);
    opacity: 0;
    transform: translateY(20px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Schatten hinzugefügt */
    animation: fadeInCharacterCard 0.5s ease forwards;
}

.character-card:nth-child(1) { animation-delay: 3.8s; }
.character-card:nth-child(2) { animation-delay: 3.9s; }
.character-card:nth-child(3) { animation-delay: 4.0s; }

@keyframes fadeInCharacterCard {
    to { opacity: 1; transform: translateY(0); }
}

/* Hover-Effekt für das gesamte Charakter-Kartelement */
.character-card:hover {
    background-color: var(--main-orange);
    transform: translateY(-5px) scale(1.05);
    transition: background-color var(--transition-speed), transform var(--transition-speed);
}

/* Bild-Stile */
.character-img {
    width: 100%;
    border-radius: 0.2vw;
    margin-bottom: 15px;
    /* Vermeide die Verwendung von 'zoom', da es nicht standardisiert ist */
    transform: scale(1.50); /* Entspricht 'zoom: 50%' */
    transition: transform var(--transition-speed);
}

.character-img:hover {
    transform: scale(1.85);
}

/* Text-Stile */
.character-card p {
    font-size:1.7em;
    font-family: var(--font-secondary);
    color: #ffffff; /* Weiße Farbe für den Text */
    transition: color 0.3s ease, font-size 0.3s ease; /* Übergangseffekte hinzufügen */
    pointer-events: auto; /* Sicherstellen, dass Hover-Ereignisse empfangen werden */
    cursor: pointer; /* Zeigt an, dass der Text interaktiv ist */
}

/* Footer */
.footer {
    background-color: var(--background-color);
    color: var(--text-color);
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
    animation: fadeInFooter 1s ease forwards;
    animation-delay: 4.2s;
    opacity: 0;
}

@keyframes fadeInFooter {
    to { opacity: 1; }
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer a {
    color: var(--main-orange);
    text-decoration: none;
    margin: 0 10px;
    font-size: 16px;
    transition: color var(--transition-speed);
}

.footer a i {
    margin-right: 5px;
}

.footer a:hover {
    color: var(--accent-color);
}

.footer p {
    margin-top: 10px;
    font-size: 14px;
}

/* Responsive Verhalten */
@media (max-width: 1200px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .header-nav {
        flex-wrap: wrap;
        gap: 10px;
    }

    .main-content {
        margin: 20px auto;
    }

    .download-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .requirements-list {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .sonstiges-list {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 768px) {
    .header-nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero h1 {
        font-size: 2.5em;
    }

    .hero p {
        font-size: 1em;
    }

    .download-grid {
        grid-template-columns: 1fr;
    }

    .requirements-list,
    .sonstiges-list {
        grid-template-columns: 1fr;
    }

    .characters {
        flex-direction: column;
        align-items: center;
    }

    .character-card {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .header-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .btn-login,
    .btn-register {
        width: 100%;
    }

    .hero h1 {
        font-size: 2em;
    }

    .hero p {
        font-size: 0.9em;
    }

    #scrollTopBtn {
        bottom: 20px;
        right: 20px;
        padding: 10px;
        font-size: 16px;
    }
}

/* Zusätzliche Animationen für sanftere Übergänge */
@keyframes heroFadeIn {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes heroTextFadeIn {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes heroBtnFadeIn {
    to { opacity: 1; transform: scale(1); }
}

@keyframes fadeInListItem {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDownloadCard {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInSonstigesItem {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInVideo {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInSectionHeader {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInList {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInCharacters {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInCharacterCard {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInFooter {
    to { opacity: 1; }
}

/* ========================================
   STARTSEITE - MODERN COLDRP STYLE
   ======================================== */

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Glassmorphism Effect */
.glass-card {
    background: rgba(18, 18, 18, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.2vw;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* Hero Section */
.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(79, 108, 130, 0.3) 0%, rgba(42, 58, 70, 0.3) 100%);
    padding: 20px 20px 430px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(18, 18, 18, 0.7) 0%, rgba(18, 18, 18, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    animation: heroFadeIn 1s ease forwards;
}

.hero-logo {
    margin-bottom: 20px;
    animation: heroFadeIn 1s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.hero-logo img {
    max-width: 830px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

.hero-title {
    font-size: 4.5em;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #ffffff 0%, var(--main-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.typewriter-cursor {
    opacity: 1;
    animation: blink 1s infinite;
    color: var(--main-orange);
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 30px;
    font-weight: 300;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1em;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--main-orange);
    color: var(--main-orange);
}

.btn-outline:hover {
    background-color: var(--main-orange);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(79, 108, 130, 0.4);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3em;
    font-weight: 700;
    color: var(--main-orange);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1em;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Titles */
.section-title {
    font-size: 3em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle {
    font-size: 1.2em;
    text-align: center;
    margin-bottom: 60px;
    opacity: 0.8;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(79, 108, 130, 0.3);
}

.feature-icon {
    font-size: 4em;
    color: var(--main-orange);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    font-size: 1em;
    line-height: 1.6;
    opacity: 0.9;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.2);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.2vw;
    aspect-ratio: 16/9;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 3em;
    color: #ffffff;
}

/* About Section */
.about-section {
    padding: 100px 0;
}

.about-content {
    padding: 60px 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.about-content p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1em;
}

.about-feature i {
    color: var(--main-orange);
    font-size: 1.5em;
}

/* Links Section */
.links-section {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.2);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.link-card {
    padding: 40px 30px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.link-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(79, 108, 130, 0.3);
    color: inherit;
}

.link-card i {
    font-size: 3em;
    color: var(--main-orange);
    margin-bottom: 20px;
}

.link-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    font-weight: 600;
}

.link-card p {
    font-size: 0.95em;
    line-height: 1.6;
    opacity: 0.8;
}

/* Footer Updates */
.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.footer-text {
    margin-top: 20px;
    opacity: 0.7;
}

/* Responsive Updates for Startpage */
@media (max-width: 968px) {
    .hero-title {
        font-size: 3em;
    }
    
    .hero-subtitle {
        font-size: 1.2em;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 30px 20px 40px;
    }
    
    .hero-title {
        font-size: 2.5em;
        letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: 1em;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
    
    .section-title {
        font-size: 2em;
    }
    
    .features-grid,
    .gallery-grid,
    .links-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        padding: 40px 20px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-logo img {
        max-width: 500px;
    }
    
    .hero-title {
        font-size: 2em;
    }
    
    .stat-number {
        font-size: 2em;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

/* ========================================
   NEUES DESIGN - TIMELINE & ZOOM GALERIE
   ======================================== */

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-color);
    font-size: 2em;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 3;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Guide Section with Timeline */
.guide-section {
    padding: 100px 20px;
    position: relative;
}

.guide-header {
    text-align: center;
    margin-bottom: 80px;
}

.timeline-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}

.timeline-item {
    position: relative;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.timeline-item:nth-child(even) {
    transform: translateX(50px);
}

.timeline-item:nth-child(even).visible {
    transform: translateX(0);
}

.timeline-line {
    position: absolute;
    left: 30px;
    top: 60px;
    bottom: -80px;
    width: 3px;
    background: linear-gradient(180deg, var(--main-orange) 0%, transparent 100%);
}

.timeline-item:last-child .timeline-line {
    display: none;
}

.timeline-dot {
    position: absolute;
    left: 18px;
    top: 0;
    width: 30px;
    height: 30px;
    background: var(--main-orange);
    border-radius: 50%;
    border: 4px solid rgba(18, 18, 18, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 0 20px rgba(79, 108, 130, 0.5);
}

.timeline-number {
    font-size: 0.9em;
    font-weight: 700;
    color: #ffffff;
}

.timeline-content {
    margin-left: 80px;
    background: rgba(18, 18, 18, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.2vw;
    padding: 40px;
    border-left: 4px solid var(--main-orange);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(79, 108, 130, 0.3);
}

.timeline-icon {
    font-size: 2.5em;
    color: var(--main-orange);
    margin-bottom: 20px;
}

.timeline-title {
    font-size: 2em;
    margin-bottom: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Requirements Flow */
.requirements-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.req-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(79, 108, 130, 0.1);
    border-radius: 0.2vw;
    border-left: 3px solid var(--main-orange);
    transition: background 0.3s ease, transform 0.3s ease;
}

.req-item:hover {
    background: rgba(79, 108, 130, 0.2);
    transform: translateX(5px);
}

.req-item i {
    font-size: 1.5em;
    color: var(--main-orange);
}

/* Downloads Flow */
.downloads-flow {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.download-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(79, 108, 130, 0.1);
    border-radius: 0.2vw;
    border-left: 4px solid var(--main-orange);
    transition: transform 0.3s ease, background 0.3s ease;
}

.download-item:hover {
    transform: translateX(10px);
    background: rgba(79, 108, 130, 0.2);
}

.download-icon {
    font-size: 2.5em;
    color: var(--main-orange);
    min-width: 50px;
}

.download-info {
    flex: 1;
}

.download-info h4 {
    font-size: 1.3em;
    margin-bottom: 5px;
    font-weight: 600;
}

.download-info p {
    opacity: 0.8;
    font-size: 0.95em;
}

.btn-download-small {
    padding: 10px 20px;
    background: var(--main-orange);
    color: #ffffff;
    border: none;
    border-radius: 0.2vw;
    cursor: pointer;
    font-size: 0.9em;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.btn-download-small:hover {
    background: var(--accent-color);
    transform: scale(1.05);
}

/* Installation Steps */
.installation-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.step-group {
    background: rgba(79, 108, 130, 0.1);
    padding: 25px;
    border-radius: 0.2vw;
    border-top: 3px solid var(--main-orange);
}

.step-group h4 {
    font-size: 1.3em;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--main-orange);
}

.step-group h4 i {
    font-size: 1.2em;
}

.step-list {
    padding-left: 25px;
}

.step-list li {
    margin-bottom: 10px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Admin & Guides Flow */
.admin-guides-flow {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.admin-card {
    text-align: center;
    background: rgba(79, 108, 130, 0.1);
    padding: 20px;
    border-radius: 0.2vw;
    border: 2px solid var(--main-orange);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.admin-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(79, 108, 130, 0.3);
}

.admin-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 0.2vw;
    margin-bottom: 15px;
}

.admin-note {
    padding: 20px;
    background: rgba(79, 108, 130, 0.1);
    border-radius: 0.2vw;
    border-left: 4px solid var(--main-orange);
    line-height: 1.8;
    opacity: 0.9;
}

/* Links Flow */
.links-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px 20px;
    background: rgba(79, 108, 130, 0.1);
    border-radius: 0.2vw;
    text-decoration: none;
    color: inherit;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.link-item:hover {
    border-color: var(--main-orange);
    background: rgba(79, 108, 130, 0.2);
    transform: translateY(-5px);
    color: inherit;
}

.link-item i {
    font-size: 2.5em;
    color: var(--main-orange);
}

.link-item span {
    font-size: 1.1em;
    font-weight: 600;
}

/* Gallery with Zoom */
.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-item-zoom {
    position: relative;
    overflow: hidden;
    border-radius: 0.2vw;
    aspect-ratio: 16/9;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.gallery-item-zoom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item-zoom:hover img {
    transform: scale(1.3);
}

/* About Section - Left/Right Layout */
.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-left {
    padding-right: 40px;
}

.about-left .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.about-left p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.about-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1em;
}

.about-feature-item i {
    color: var(--main-orange);
    font-size: 1.3em;
}

.about-right {
    display: flex;
    justify-content: center;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 40px;
    background: rgba(18, 18, 18, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.2vw;
    padding: 60px 40px;
    border-left: 4px solid var(--main-orange);
}

.about-stat {
    text-align: center;
}

.about-stat-number {
    font-size: 3.5em;
    font-weight: 700;
    color: var(--main-orange);
    margin-bottom: 10px;
}

.about-stat-label {
    font-size: 1.2em;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Updates */
@media (max-width: 968px) {
    .timeline-content {
        margin-left: 60px;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-left {
        padding-right: 0;
    }
    
    .about-left .section-title {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .timeline-item {
        margin-bottom: 60px;
    }
    
    .timeline-content {
        margin-left: 50px;
        padding: 30px 20px;
    }
    
    .timeline-dot {
        left: 15px;
        width: 25px;
        height: 25px;
    }
    
    .timeline-number {
        font-size: 0.8em;
    }
    
    .requirements-flow,
    .installation-steps {
        grid-template-columns: 1fr;
    }
    
    .download-item {
        flex-direction: column;
        text-align: center;
    }
    
    .download-icon {
        margin: 0 auto;
    }
    
    .about-features-list {
        grid-template-columns: 1fr;
    }
    
    .logo {
        width: 140px;
    }
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
    border-radius: 0.2vw;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 45px;
    color: #ffffff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: transform 0.3s ease, color 0.3s ease;
    line-height: 1;
}

.lightbox-close:hover {
    transform: scale(1.2);
    color: var(--main-orange);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
    color: #ffffff;
    font-size: 60px;
    cursor: pointer;
    pointer-events: all;
    transition: transform 0.3s ease, color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    transform: scale(1.2);
    color: var(--main-orange);
    background: rgba(79, 108, 130, 0.5);
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 20px;
        right: 25px;
        font-size: 40px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        font-size: 40px;
        width: 50px;
        height: 50px;
    }
    
    .lightbox-nav {
        padding: 0 15px;
    }
    
    .lightbox-content {
        max-width: 95%;
        max-height: 85%;
    }
}
