body {
    background-color: #121212;
    color: #e0e0e0; /* Helle Textfarbe für bessere Lesbarkeit */
    font-family: 'Arial', sans-serif;
    line-height: 1.6; /* Verbesserte Abstände für Text */
}

header {
    background: linear-gradient(rgba(13, 71, 161, 0.8), rgba(21, 101, 192, 0.8)), url('images/landingpage/landing.jpg') no-repeat center center;
    background-size: cover;
    padding: 100px 0;
    margin-bottom: 50px;
}

h1, h2, h3 {
    color: #ffffff; /* Weiße Überschriften für Kontrast */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3); /* Leichter Schatten für Tiefe */
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    color: #b0b0b0; /* Leicht grauer Text für Absätze */
    margin-bottom: 1rem;
}

a {
    color: #00bfff; /* Akzentfarbe für Links */
    transition: color 0.3s ease;
}

a:hover {
    color: #00ffff;
}

.btn-primary {
    background-color: #00bfff;
    border: none;
    color: #121212; /* Dunkler Text für Kontrast auf Blau */
    transition: background-color 0.3s ease, transform 0.2s ease; /* Sanfte Übergänge */
    border-radius: 5px; /* Leicht abgerundet */
    padding: 0.75rem 1.5rem; /* Etwas mehr Padding für bessere Klickbarkeit */
}

.btn-primary:hover {
    background-color: #00ffff;
    transform: translateY(-2px); /* Leichter Hover-Effekt */
    box-shadow: 0 0 10px rgba(0, 191, 255, 0.7); /* Glow beim Hover */
}

/* Neue Puls-Animation für den Button */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.btn-secondary {
    background-color: #1e1e1e;
    border: 1px solid #00bfff;
    color: #e0e0e0;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border-radius: 5px;
}

.btn-secondary:hover {
    background-color: #00bfff;
    color: #121212;
    transform: translateY(-2px);
}

.btn-outline-primary {
    border-color: #00bfff;
    color: #00bfff;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: #00bfff;
    color: #121212;
}

.form-control, .form-select {
    background-color: #1e1e1e;
    border: 1px solid #00bfff;
    color: #ffffff; /* Weißer Text in Formularen */
    border-radius: 5px; /* Einheitliche Abrundung */
    transition: border-color 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: #00ffff; /* Hellerer Akzent bei Focus */
    box-shadow: 0 0 5px rgba(0, 191, 255, 0.5); /* Glow-Effekt */
}

.form-label {
    color: #d0d0d0; /* Helle Labels */
}

.alert-info {
    background-color: #1a2a3a; /* Dunklerer Blau-Ton für Alert */
    border-color: #00bfff;
    color: #e0e0e0; /* Passender Text */
    border-radius: 5px;
}

.alert-danger {
    background-color: #3a1a1a; /* Dunkler Rot-Ton für Fehler */
    border-color: #ff4d4d;
    color: #e0e0e0;
    border-radius: 5px;
}

.nav-tabs .nav-link {
    background-color: #1e1e1e; /* Dunkler Tab-Hintergrund */
    border: 1px solid #00bfff;
    color: #e0e0e0;
    transition: background-color 0.3s ease;
    border-bottom: none; /* Nahtloser Übergang */
}

.nav-tabs .nav-link.active {
    background-color: #00bfff; /* Akzentfarbe für aktiven Tab */
    color: #121212; /* Dunkler Text für Kontrast */
    border-color: #00bfff;
}

.nav-tabs .nav-link:hover {
    background-color: #00ffff;
    color: #121212;
}

.tab-content {
    background-color: #1e1e1e; /* Dunkler Hintergrund für Tabs */
    padding: 20px;
    border: 1px solid #00bfff;
    border-top: none;
    border-radius: 0 0 5px 5px; /* Abrundung unten */
}

#card-element {
    padding: 10px;
    border-radius: 4px;
    height: 40px;
    background-color: #1e1e1e;
    border: 1px solid #00bfff;
}

/* Navbar Styling für bessere Integration */
.navbar {
    background-color: #1e1e1e !important; /* Dunkler Hintergrund passend zum Theme */
    border-bottom: 1px solid #00bfff; /* Akzent-Rahmen unten */
    padding: 0.75rem 1rem; /* Leichter Padding */
}

.navbar-dark .navbar-toggler {
    border-color: #00bfff;
}

.navbar-brand {
    color: #ffffff !important; /* Weiße Textfarbe für das Logo/Home */
    font-weight: bold;
    font-size: 1.5rem; /* Etwas größer für Hervorhebung */
    transition: color 0.3s ease;
}

.navbar-brand:hover {
    color: #00bfff !important; /* Akzentfarbe bei Hover */
}

.dropdown-menu {
    background-color: #1e1e1e; /* Dunkler Dropdown-Hintergrund */
    border: 1px solid #00bfff;
    border-radius: 5px;
}

.dropdown-item {
    color: #e0e0e0; /* Helle Textfarbe */
    transition: background-color 0.3s ease;
}

.dropdown-item:hover {
    background-color: #00bfff;
    color: #121212;
}

.dropdown-divider {
    border-top: 1px solid #00bfff; /* Akzent-Trennlinie */
}

/* Rank-Progress-Bereich */
.rank-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.rank-progress div {
    min-width: 100px; /* Für Ausrichtung */
    text-align: center;
}

.rank-progress span {
    font-size: 50px; /* Größerer Pfeil */
    color: #00bfff; /* Akzentfarbe */
    margin: 0 20px; /* Abstand */
}

/* Order Summary Hervorhebungen */
#buying-net-wins-rank, #buying-net-wins {
    font-weight: bold;
    font-size: 1.2em;
    color: #00bfff; /* Akzentfarbe */
    margin-bottom: 15px;
}

#total-lp-gain-rank, #estimated-wins-rank, #total-cost-rank,
#estimated-lp-gain-wins, #total-cost-wins {
    font-size: 1.1em;
    color: #ffffff; /* Weiß für Wichtigkeit */
    margin-bottom: 10px;
}

/* Badge für Tooltip */
.badge.bg-info {
    background-color: #00bfff !important; /* Einheitliche Akzentfarbe */
    cursor: pointer;
}

/* Allgemeine Container */
.container {
    max-width: 1200px; /* Begrenzte Breite für bessere Lesbarkeit */
}

.my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}

/* Bild-Styling für Ranks (ohne Kreise, leicht abgerundet) */
img[src] {
    border-radius: 10px; /* Leichte Abrundung statt Kreis */
    transition: transform 0.3s ease;
}

img[src]:hover {
    transform: scale(1.05); /* Leichter Zoom-Effekt, reduziert */
}

/* Table Styling für Dark Theme */
.table {
    --bs-table-bg: #1e1e1e; /* Dunkler Hintergrund */
    --bs-table-color: #e0e0e0; /* Helle Textfarbe */
    --bs-table-border-color: #00bfff; /* Akzent-Rahmen */
    border-color: #00bfff;
}

.table-bordered th,
.table-bordered td {
    border: 1px solid #00bfff; /* Blaue Rahmen für Zellen */
}

.table-light {
    --bs-table-bg: #2a2a2a !important; /* Dunklerer Header-Hintergrund */
    --bs-table-color: #e0e0e0 !important;
}

.table-hover tbody tr:hover {
    background-color: #2a2a2a; /* Hover-Effekt */
}

.table a {
    color: #00bfff; /* Links in Tabelle mit Akzentfarbe */
    text-decoration: none;
}

.table a:hover {
    color: #00ffff; /* Hover für Links */
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
    --bs-table-accent-bg: rgba(0, 191, 255, 0.05); /* Leichter Akzent für Streifen */
}

/* Card Styling für Features */
.card {
    border: 1px solid #00bfff;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.5);
}

.card-title {
    color: #ffffff;
}

.card-text {
    color: #b0b0b0;
}

.text-primary {
    color: #00bfff !important;
}