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 ===== */
: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.2);
border-radius: 20px;
background:
linear-gradient(135deg, rgba(60,20,14,0.95), rgba(110,40,20,0.92)),
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.25), transparent 28%),
linear-gradient(to right, rgba(20,8,6,0.8), rgba(20,8,6,0.3));
}
.sc-hero-content {
position: relative;
z-index: 1;
max-width: 760px;
padding: 2.5rem;
}
.sc-hero-kicker {
font-size: 0.78rem;
font-weight: 700;
letter-spacing: 0.18em;
color: var(--dsa-orange);
}
.sc-hero h1 {
margin: 0 0 0.75rem 0;
font-size: clamp(2rem, 4vw, 3.4rem);
font-weight: 800;
}
.sc-hero p {
color: rgba(255,255,255,0.9);
}
/* ===== BUTTONS ===== */
.sc-btn-primary {
background: linear-gradient(135deg, var(--dsa-red), var(--dsa-orange));
color: #1a0a05;
}
.sc-btn-secondary {
background: rgba(255,255,255,0.08);
border: 1px solid rgba(255,138,31,0.25);
}
/* ===== CARDS ===== */
.sc-card-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
gap: 1rem;
}
.sc-card {
background: linear-gradient(180deg, #5a2a1d, #3a1b13);
border: 1px solid rgba(255,170,90,0.35);
border-radius: 18px;
padding: 1.2rem;
transition: all 0.2s ease;
}
.sc-card:hover {
transform: translateY(-3px);
box-shadow: 0 0 20px rgba(255,138,31,0.25);
}
.sc-card p {
color: rgba(255,255,255,0.85);
}
/* ===== PANELS ===== */
.sc-columns {
display: grid;
grid-template-columns: 2fr 1fr;
gap: 1rem;
}
.sc-panel-box {
background: linear-gradient(180deg, #5a2a1d, #3a1b13);
border: 1px solid rgba(255,170,90,0.35);
border-radius: 18px;
padding: 1.25rem;
}
/* ===== TABLE ===== */
.sc-table-row {
background: linear-gradient(180deg, #5a2a1d, #3a1b13);
border: 1px solid rgba(255,170,90,0.35);
padding: 1rem;
border-radius: 14px;
margin-bottom: 0.5rem;
}
.sc-table-row:hover {
box-shadow: 0 0 20px rgba(255,138,31,0.25);
}
/* ===== FARM TABLE ===== */
.sc-farm-row {
background: linear-gradient(180deg, #5a2a1d, #3a1b13);
border: 1px solid rgba(255,170,90,0.35);
padding: 1rem;
border-radius: 14px;
}
.sc-farm-header {
background: linear-gradient(180deg, rgba(120,40,20,0.95), rgba(70,20,10,0.95)) !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.15);
padding: 1rem;
border-radius: 12px;
}
/* ===== LINKS ===== */
.sc-mainpage a:hover {
color: var(--dsa-orange);
}
/* ===== MOBILE ===== */
@media (max-width: 900px) {
.sc-columns {
grid-template-columns: 1fr;
}
}