/* ============================================================
   FUNLEGACY ULTIMATE CLEAN BLUE DESIGN
   ============================================================ */

/* 1. AUFRÄUMEN: Alte Leisten und Fehlermeldungen entfernen */
.ui.fixed.menu, .navbar, .ie-warning, .browser-warning, .ui.negative.message { 
    display: none !important; 
}

/* 2. HINTERGRUND: Hellblau-Weiß Verlauf (Portal-Style) */
body { 
    background: linear-gradient(135deg, #f7f9fc 0%, #eef6ff 100%) !important;
    background-attachment: fixed !important;
    padding-top: 30px !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

/* 3. FOREN-HEADER: Die blauen Balken (Category) */
.ui.table thead th, .ui.top.attached.header {
    background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%) !important;
    color: white !important;
    border-radius: 20px 20px 0 0 !important;
    padding: 18px !important;
    border: none !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 114, 255, 0.2) !important;
}

/* 4. DIE BOXEN: Forum & Widgets (Schwebend & Abgerundet) */
.ui.table, .ui.segment, .ui.card {
    border-radius: 25px !important;
    border: 2px solid white !important;
    box-shadow: 0 10px 30px rgba(0, 114, 255, 0.08) !important;
    background: rgba(255, 255, 255, 0.98) !important;
    margin-bottom: 30px !important;
}

/* 5. HOVER-EFFEKT: Forum-Zeilen werden hellblau beim Drüberfahren */
.ui.table tbody tr {
    transition: 0.3s ease;
}

.ui.table tbody tr:hover td {
    background-color: #f0f7ff !important; /* Sanftes Hellblau */
    cursor: pointer;
}

/* 6. BREADCRUMBS: Der Pfad (Startseite / Forum) */
.ui.breadcrumb {
    background: white !important;
    padding: 12px 25px !important;
    border-radius: 50px !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05) !important;
    margin-bottom: 25px !important;
    border: 1px solid #eef2f6 !important;
}

/* 7. WIDGET TITEL (Rechte Seite) */
.ui.header {
    color: #0072ff !important;
    font-weight: 700 !important;
    margin-bottom: 15px !important;
}

/* 8. PROFILBILDER: Rund machen */
.ui.avatar.image, .ui.card .image img {
    border-radius: 50% !important;
    border: 2px solid #00c6ff !important;
}

/* 9. BUTTONS: Überall im blauen Portal-Stil */
.ui.primary.button, .ui.blue.button {
    background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%) !important;
    border-radius: 50px !important;
    padding: 12px 25px !important;
    font-weight: bold !important;
    box-shadow: 0 4px 15px rgba(0, 114, 255, 0.3) !important;
    transition: 0.3s !important;
}

.ui.primary.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 114, 255, 0.4) !important;
}
/* Erzwungenes Ausblenden der Standard-Navigation und des User-Bereichs oben */
.ui.fixed.inverted.menu, 
#navbar, 
.ui.menu.inverted.secondary,
.ui.right.stackable.inverted.menu {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Entfernt den weißen Balken ganz oben, falls vorhanden */
.ui.menu:not(.portal-nav) {
    display: none !important;
}
/* Hover-Effekt für die Menü-Links */
.portal-nav a {
    transition: all 0.3s ease !important;
}

.portal-nav a:hover {
    color: #00c6ff !important; /* Das Hellblau beim Drüberfahren */
    transform: translateY(-2px); /* Kleiner Sprung-Effekt */
    text-shadow: 0 0 10px rgba(0, 198, 255, 0.3);
}
/* --- TOTALE ENTFERNUNG DES DOPPELTEN TITELS --- */

/* 1. Versteckt den Seitentitel-Header in allen Varianten */
.ui.header:first-child, 
h2.ui.header, 
h3.ui.header:first-of-type,
.brand-header h1,
#page-title {
    display: none !important;
}

/* 2. Versteckt spezifisch den Text, der "FunLEGACY" heißt, falls er im Main-Container ist */
.ui.main.container > h2,
.ui.main.container > h3,
.ui.segment > h2:first-child {
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
    visibility: hidden !important;
}

/* 3. Falls es ein Breadcrumb-Relikt ist */
.ui.breadcrumb {
    display: none !important;
}

/* 4. Platz nach oben korrigieren, damit die Foren-Boxen nicht zu hoch rutschen */
.ui.main.container {
    padding-top: 50px !important;
}