/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&display=swap');

/* --- Base & Global Styles --- */
body {
    background-color: #0a0a0a;
    background-image: url('../img/background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    font-family: 'Roboto Condensed', sans-serif;
    color: #8a151a;
    font-weight: 300;
}

/* --- Animations --- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Content Box (Glassmorphism) --- */
.content-box {
    background-color: rgba(10, 10, 10, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 0.75rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    animation: fadeIn 0.5s ease-out forwards;
}

/* --- Forms & Inputs --- */
.form-input {
    background-color: rgba(30, 30, 30, 0.7);
    border: 1px solid #4a4a4a;
    color: #e0e0e0; /* Keep light text in input fields */
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none; /* Entfernt den Standard-Fokus-Rahmen des Browsers */
    border-color: #8a151a;
    background-color: rgba(10, 10, 10, 0.7);
}

.btn {
    background-color: transparent;
    border: 2px solid #8a151a;
    color: #8a151a;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.btn:hover {
    background-color: #8a151a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(138, 21, 26, 0.5);
}

.btn.bg-red-600 {
    border-color: #dc2626; /* Tailwind red-600 */
    color: #fff;
}

.link {
    color: #8a151a;
    transition: color 0.3s ease;
}

.link:hover {
    color: #fff;
}

/* --- Admin Table --- */
.admin-table th {
    background-color: rgba(0, 0, 0, 0.4);
    border-bottom: 2px solid #8a151a;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.admin-table tr {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.admin-table tr:hover {
    background-color: rgba(138, 21, 26, 0.2);
}

/* --- Admin Sidebar --- */
.sidebar {
    background-color: rgba(10, 10, 10, 0.75);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.sidebar a {
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.sidebar a.active {
    border-bottom-color: #8a151a;
    background-color: rgba(138, 21, 26, 0.3);
}

.sidebar a.active span, .sidebar a.active i {
    color: #fff; /* Text and icon of the active link become white */
}

.sidebar a:hover span, .sidebar a:hover i {
    color: #fff; /* Text and icon become white on hover */
}

.sidebar a span {
    color: #8a151a; /* Standard-Textfarbe auf Rot setzen */
}

/* --- Video Player --- */
.video-container {
    box-shadow: 0 0 40px rgba(138, 21, 26, 0.4);
}

/* --- Tailwind Prose Customization for Disclaimer --- */
.prose-custom {
    background-color: rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.1);
}

.prose-custom h3, .prose-custom h4 {
    color: #fff;
}

/* --- Custom Scrollbar (for Webkit browsers) --- */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}
::-webkit-scrollbar-thumb {
    background: #8a151a;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #a32429;
}

/* --- Status Pills --- */
.status-pill {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(138, 21, 26, 0.4);
    color: #8a151a;
}
.status-pill.status-active {
    background-color: rgba(74, 222, 128, 0.1); /* green-400 with opacity */
    border-color: rgba(74, 222, 128, 0.4);
    color: #68d391; /* green-400 */
}
.status-pill.status-blocked {
    background-color: rgba(138, 21, 26, 0.4);
    border-color: rgba(138, 21, 26, 0.8);
    color: #f87171;
}

/* --- Footer --- */
footer, footer p {
    color: #8a151a;
}

footer a.link {
    color: #8a151a;
}