/* =========================================
   BULLS & FRIENDS - GLOBAL STYLES
   ========================================= */

:root {
    --dart-green: #309F6A; /* Das typische Dart-Board Grün */
    --dart-red: #E3292E;   /* Das typische Dart-Board Rot */
    --dark-bg: #0a0a0f;    /* Sehr dunkles, edles Blau/Schwarz für den Hintergrund */
    --panel-bg: #1a1a2e;
    --text-light: #f4f4f5;
    --text-muted: #a1a1aa;
}

/* --- RESET & BASICS --- */
html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
}

*, *::before, *::after {
    box-sizing: inherit;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    font-weight: 800;
    line-height: 1.2;
}

a {
    color: var(--dart-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #fff;
}

main {
    min-height: 80vh;
    padding-bottom: 50px;
}

/* --- GLOBALE KOMPONENTEN --- */

/* Standard Premium Button */
.btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--dart-green), #237a50);
    color: #fff;
    border: 1px solid #1b6641;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(48, 159, 106, 0.3);
    text-decoration: none;
    text-align: center;
}

.btn:hover {
    background: linear-gradient(135deg, #3bd18a, var(--dart-green));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(48, 159, 106, 0.5);
    color: #fff;
}

.btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(48, 159, 106, 0.4);
}

/* Roter/Warn Button */
.btn-danger {
    background: linear-gradient(135deg, var(--dart-red), #b01e22);
    border-color: #8c1619;
    box-shadow: 0 4px 15px rgba(227, 41, 46, 0.3);
}

.btn-danger:hover {
    background: linear-gradient(135deg, #ff3b41, var(--dart-red));
    box-shadow: 0 6px 20px rgba(227, 41, 46, 0.5);
}

/* Standard Eingabefelder (Formulare) */
.form-input {
    background: #111;
    color: #fff;
    border: 1px solid #333;
    padding: 12px 15px;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: var(--dart-green);
    box-shadow: 0 0 10px rgba(48, 159, 106, 0.3);
    background: #1a1a1a;
}

/* Dropdowns / Selects stylen */
select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 15px top 50%;
    background-size: 12px auto;
    padding-right: 40px;
}

select.form-input option {
    background: #111;
    color: #fff;
}

/* Hero Section (Banner oben auf den Seiten) */
.hero {
    background: #111;
    border-bottom: 1px solid #222;
    margin-bottom: 30px;
}

/* Scrollbar f��r Chrome, Edge und Safari dunkel machen */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dart-green);
}