Hinweis: Leere nach dem Veröffentlichen den Browser-Cache, um die Änderungen sehen zu können.
- Firefox/Safari: Umschalttaste drücken und gleichzeitig Aktualisieren anklicken oder entweder Strg+F5 oder Strg+R (⌘+R auf dem Mac) drücken
- Google Chrome: Umschalttaste+Strg+R (⌘+Umschalttaste+R auf dem Mac) drücken
- Edge: Strg+F5 drücken oder Strg drücken und gleichzeitig Aktualisieren anklicken
/* ===== DSA Rot/Orange Theme (Balanced / heller) ===== */
:root {
--dsa-red: #b3261e;
--dsa-red-dark: #4a0f0b;
--dsa-orange: #ff8a1f;
--dsa-gold: #ffc15a;
}
/* ===== Hauptseite ===== */
.sc-mainpage {
max-width: 1400px;
margin: 0 auto;
padding: 1.5rem 0 3rem 0;
}
/* ===== HERO ===== */
.sc-hero {
position: relative;
overflow: hidden;
border: 1px solid rgba(255,138,31,0.25);
border-radius: 20px;
background:
linear-gradient(135deg, #3a1410, #6a2a18),
url("/images/hero-placeholder.jpg") center/cover no-repeat;
min-height: 360px;
display: flex;
align-items: center;
margin-bottom: 2rem;
box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}
.sc-hero::after {
content: "";
position: absolute;
inset: 0;
background:
radial-gradient(circle at top right, rgba(255,138,31,0.3), transparent 30%),
linear-gradient(to right, rgba(20,6,4,0.7), rgba(20,6,4,0.2));
}
/* ===== TEXT ===== */
.sc-hero-kicker {
color: var(--dsa-orange);
}
/* ===== BUTTONS ===== */
.sc-btn-primary {
background: linear-gradient(135deg, var(--dsa-red), var(--dsa-orange));
}
.sc-btn-secondary {
border: 1px solid rgba(255,138,31,0.3);
}
/* ===== CARDS (HIER IST DER FIX) ===== */
.sc-card {
background: linear-gradient(180deg, #4a2118, #33150f);
border: 1px solid rgba(255,138,31,0.25);
border-radius: 18px;
padding: 1.2rem;
box-shadow: 0 8px 18px rgba(0,0,0,0.22);
transition: all 0.18s ease;
}
.sc-card:hover {
transform: translateY(-3px);
border-color: rgba(255,138,31,0.55);
box-shadow: 0 14px 28px rgba(0,0,0,0.28);
}
/* ===== PANELS ===== */
.sc-panel-box {
background: linear-gradient(180deg, #4a2118, #33150f);
border: 1px solid rgba(255,138,31,0.25);
border-radius: 18px;
}
/* ===== TABLE ===== */
.sc-table-row {
background: linear-gradient(180deg, #4a2118, #33150f);
border: 1px solid rgba(255,138,31,0.25);
border-radius: 14px;
}
.sc-table-row:hover {
border-color: rgba(255,138,31,0.5);
}
/* ===== FARM ===== */
.sc-farm-row {
background: linear-gradient(180deg, #4a2118, #33150f);
border: 1px solid rgba(255,138,31,0.25);
}
.sc-farm-header {
background: linear-gradient(180deg, #7a2f1a, #4a1b10) !important;
border: 1px solid rgba(255,138,31,0.5) !important;
}
.sc-farm-header * {
color: var(--dsa-gold) !important;
}
/* ===== FOOTER ===== */
.sc-footer-note {
border-left: 3px solid var(--dsa-orange);
background: rgba(255,138,31,0.12);
}
/* ===== LINKS ===== */
.sc-mainpage a:hover {
color: var(--dsa-orange);
}
/* ===== MOBILE ===== */
@media (max-width: 900px) {
.sc-columns {
grid-template-columns: 1fr;
}
}