* {
	box-sizing: border-box
}

html {
	scroll-behavior: smooth
}

body {
	margin: 0;
	background: #080b0d;
	color: #eee;
	font-family: Arial, sans-serif
}

header {
	height: 78px;
	display: flex;
	align-items: center;
	padding: 0 2%;
	background: #080b0d;
	border-bottom: 1px solid #222;
	position: sticky;
	top: 0;
	z-index: 30
}

.live-events-panel {
    overflow: hidden;
}

.live-events-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 15px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.live-events-kicker {
    display: block;
    margin-bottom: 3px;
    color: #777f82;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.live-events-header h3 {
    margin: 0;
    color: #fff;
    font-size: 17px;
    letter-spacing: .5px;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 6px;

    padding: 6px 9px;

    background: rgba(64,190,65,.08);
    border: 1px solid rgba(64,190,65,.25);

    color: #67d65e;

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;
}

.live-indicator i {
    width: 7px;
    height: 7px;

    background: #62d457;
    border-radius: 50%;

    box-shadow: 0 0 8px rgba(98,212,87,.8);

    animation: livePulse 1.5s infinite;
}

@keyframes livePulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: .35;
    }
}


/* Aktives Event */

.live-event {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 12px 0;

    border-bottom: 1px solid rgba(255,255,255,.06);
}

.live-event-icon {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;

    padding: 0;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(220, 45, 35, .35);

    background: #111;
}

.live-event-icon img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/ Aktives Event /

.active-event .live-event-icon img {
    opacity: 1;
    filter: none;
}


/ Inaktives Event */

.inactive-event .live-event-icon img {
    opacity: .40;

    filter:
        grayscale(100%)
        brightness(.65);
}


.inactive-event:hover .live-event-icon img {
    opacity: .65;
}

.live-event-info {
    flex: 1;
    min-width: 0;
}

.live-event-info strong {
    display: block;

    color: #fff;

    font-size: 13px;
    font-weight: 900;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.live-event-info span {
    display: block;

    margin-top: 4px;

    color: #899093;

    font-size: 10px;
}

.live-event-time {
    text-align: right;
}

.live-event-time small {
    display: block;

    color: #61d45b;

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
}

.live-event-time b {
    display: block;

    margin-top: 4px;

    color: #fff;

    font-size: 14px;
    font-weight: 900;
}


/* Kein Event */

.no-live-event {
    padding: 20px 10px;

    text-align: center;

    color: #737a7d;

    font-size: 11px;
}


/* Nächstes Event */

.next-event-box {
    margin-top: 14px;

    padding: 13px 14px;

    background:
        linear-gradient(
            100deg,
            rgba(198,35,26,.14),
            rgba(20,23,25,.8)
        );

    border-left: 3px solid #db3026;
}

.next-event-label {
    margin-bottom: 10px;

    color: #db3026;

    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.6px;
}

.next-event-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.next-event-content strong {
    display: block;

    color: #fff;

    font-size: 13px;
    font-weight: 900;
}

.next-event-content span {
    display: block;

    margin-top: 4px;

    color: #747c7f;

    font-size: 9px;
}

.next-event-timer {
    text-align: right;
}

.next-event-timer small {
    display: block;

    color: #777f82;

    font-size: 8px;
    font-weight: 800;
}

.next-event-timer b {
    display: block;

    margin-top: 3px;

    color: #fff;

    font-size: 16px;
    font-weight: 900;
    letter-spacing: .5px;
}

.event-loading {
    padding: 20px;

    text-align: center;

    color: #777f82;

    font-size: 10px;
}

.brand {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #eee;
	text-decoration: none;
	font-size: 27px;
	font-weight: 900
}

.brand i {
	display: grid;
	place-items: center;
	width: 75px;
	height: 75px;
	background: #080b0d;
	color: #080b0d;
	font-style: normal;
	font-size: 13px;
	background-image: url("https://fuxrust.de/assets/images/logo.png");
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
}

.brand b,
.footbrand b {
	color: #df291e
}

.brand small,
.footbrand small {
	display: block;
	font-size: 10px;
	letter-spacing: 1px
}

.brand span {
	white-space: nowrap
}

nav {
	margin: auto;
	display: flex;
	gap: 27px
}

nav a {
	height: 78px;
	display: flex;
	align-items: center;
	color: #ddd;
	text-decoration: none;
	font-size: 14px;
	font-weight: 800
}

nav a.active,
nav a:hover {
	color: #df291e;
	border-bottom: 2px solid #df291e
}

.red {
	background: #c9231b !important;
	border-color: #c9231b !important;
	color: white !important
}

.topDiscord {
	padding: 14px 18px;
	text-decoration: none;
	font-size: 13px;
	font-weight: bold;
	border-radius: 4px
}

.menu {
	display: none;
	margin-left: auto;
	background: none;
	border: 0;
	color: white;
	font-size: 24px
}

.hero {
	height: 410px;
	position: relative;
	overflow: hidden
}

.photo {
	position: absolute;
	inset: 0;
	background: url("../images/hero.jpg") center right/cover no-repeat
}

.overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, #080b0d 0, rgba(8, 11, 13, .9) 34%, rgba(8, 11, 13, .08) 75%), linear-gradient(0deg, #080b0d, transparent 25%)
}

.intro {
	position: relative;
	padding: 48px 3.4%;
	z-index: 2
}

.intro h2 {
	font-size: 29px;
	margin: 0
}

.intro h1 {
	font-size: 76px;
	letter-spacing: -5px;
	margin: 7px 0;
	line-height: .95
}

.intro h1 em {
	font-style: normal;
	color: #df291e
}

.intro h3 {
	font-size: 16px;
	letter-spacing: 2px
}

.perks {
	display: flex;
	gap: 22px;
	font-size: 10px;
	font-weight: bold;
	margin: 20px 0
}

.buttons {
	display: flex;
	gap: 14px
}

.buttons button {
	padding: 16px 23px;
	background: #111619;
	color: #fff;
	border: 1px solid #4a4e50;
	border-radius: 3px;
	font-weight: bold
}

.status {
	margin: 0 3.4% 14px;
	display: grid;
	grid-template-columns: 1fr .85fr 1.35fr 1.45fr;
	border: 1px solid #303537;
	border-radius: 5px;
	overflow: hidden;
	background: #0d1113
}

.status>div {
	min-height: 97px;
	padding: 15px 22px;
	border-right: 1px solid #282d2f;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative
}

.status small {
	font-size: 15px;
	color: #aaa
}

.status b {
	font-size: 15px;
	margin: 6px 0
}

.status span {
	font-size: 15px;
	color: #aaa
}

.online {
	color: #6ac94d
}

.status>div>i {
	height: 5px;
	background: #2b2f31;
	width: 80%
}

.status>div>i i {
	display: block;
	height: 100%;
	width: 37%;
	background: #e33227
}

.ip button {
	position: absolute;
	right: 18px;
	bottom: 25px;
	background: #171b1e;
	color: #fff;
	border: 0;
	padding: 10px
}

.map {
	padding: 0 !important;
	flex-direction: row !important
}

.map span {
	padding: 17px 15px;
	display: flex;
	flex-direction: column;
	justify-content: center
}

.map img {
	width: 48%;
	object-fit: cover
}

.grid {
	margin: 0 3.4% 15px;
	display: grid;
	grid-template-columns: 1.45fr .85fr .95fr 1.25fr;
	gap: 12px
}

.panel {
	min-height: 200px;
	padding: 14px;
	background: linear-gradient(155deg, #111517, #0b0e10);
	border: 1px solid #303537;
	border-radius: 5px
}

.panel h3 {
	font-size: 15px;
	margin: 0 0 14px
}

.title {
	display: flex;
	justify-content: space-between
}

.title button {
	background: none;
	color: #e43b31;
	border: 1px solid #d52a20;
	font-size: 9px;
	border-radius: 3px
}

.event {
	height: 74px;
	display: grid;
	grid-template-columns: 65px 1fr auto;
	align-items: center;
	gap: 10px;
	border-top: 1px solid #282d2f
}

.event img {
	width: 65px;
	height: 58px;
	object-fit: cover;
	border-radius: 3px
}

.event b {
	font-size: 11px;
	color: #e43a30
}

.event p {
	font-size: 9px;
	margin: 5px 0;
	line-height: 1.4
}

.event mark {
	background: #971c16;
	color: white;
	padding: 7px;
	font-size: 9px;
	border-radius: 3px
}

.event .orange {
	color: #e99b14
}

.event .green {
	color: #68c83c
}

.event .timer {
	background: #0b0e10;
	border: 1px solid #c78300
}

.event .greenbg {
	background: #326f1e
}

.events footer {
	text-align: center;
	font-size: 9px;
	color: #aaa;
	padding-top: 8px
}

.panel li {
	font-size: 10px;
	margin: 11px 0
}

.panel ul,
.panel ol {
	padding-left: 22px
}

.panel li::marker {
	color: #e42c21
}

.rules {
	width: 100%;
	padding: 13px;
	border: 0;
	font-size: 10px;
	font-weight: bold
}

.wipe .next {
	text-align: center;
	color: #e33227;
	font-size: 20px;
	margin-top: 20px
}

.wipe>strong {
	display: block;
	text-align: center;
	font-size: 25px;
	margin: 10px
}

.wipe>p {
	text-align: center;
	font-size: 12px
}

.wipepic {
	height: 600px;
	position: relative;
	margin-top: 18px
}

.wipepic img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(.55);
	border-radius: 4px
}

.wipepic b {
	position: absolute;
	inset: 0;
	display: grid;
	place-content: center;
	text-align: center;
	font-size: 30px
}

.bottom {
	min-height: 72px;
	border-block: 1px solid #24292b;
	display: grid;
	grid-template-columns: 1.25fr repeat(3, 1fr) .9fr;
	padding: 0 3.4%;
	align-items: center
}

.footbrand {
	font-size: 22px;
	font-weight: bold
}

.bottom a {
	height: 72px;
	border-left: 1px solid #222;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	color: white;
	text-decoration: none
}

.bottom a span {
	display: flex;
	flex-direction: column
}

.bottom a b {
	font-size: 15px
}

.bottom a small {
	font-size: 12px;
	color: #aaa
}

.social {
	text-align: center;
	letter-spacing: 10px
}

.copy {
	text-align: center;
	padding: 14px;
	color: #aaa;
	font-size: 9px
}

@media(max-width:1050px) {
	nav {
		gap: 12px
	}

	.topDiscord {
		display: none
	}

	.grid {
		grid-template-columns: 1fr 1fr
	}

	.status {
		grid-template-columns: 1fr 1fr
	}
}

@media(max-width:700px) {
	header {
		height: 64px
	}

	.brand {
		font-size: 20px
	}

	.brand i {
		width: 40px;
		height: 40px
	}

	.menu {
		display: block
	}

	nav {
		display: none;
		position: absolute;
		top: 64px;
		left: 0;
		right: 0;
		background: #0b0e10;
		flex-direction: column;
		padding: 15px 25px
	}

	nav.open {
		display: flex
	}

	nav a {
		height: 35px
	}

	.hero {
		height: 520px
	}

	.intro {
		padding: 50px 22px
	}

	.intro h1 {
		font-size: 48px
	}

	.intro h2 {
		font-size: 21px
	}

	.intro h3 {
		font-size: 12px
	}

	.perks {
		flex-wrap: wrap
	}

	.buttons {
		flex-direction: column
	}

	.status,
	.grid {
		margin-left: 14px;
		margin-right: 14px;
		grid-template-columns: 1fr
	}

	.map {
		min-height: 100px
	}

	.bottom {
		grid-template-columns: 1fr 1fr
	}

	.footbrand,
	.social {
		padding: 18px
	}
}

section[id],
article[id],
a[id] {
	scroll-margin-top: 95px
}

.longSection {
	padding: 90px 5%;
	border-top: 1px solid #252a2c;
	background: #0a0d0f;
	scroll-margin-top: 78px
}

.longSection:nth-of-type(even) {
	background: #0d1113
}

.sectionHead {
	max-width: 780px;
	margin-bottom: 38px
}

.sectionHead small,
.joinSection>small {
	color: #df291e;
	font-size: 10px;
	font-weight: 900;
	letter-spacing: 3px
}

.sectionHead h2,
.joinSection h2 {
	font-size: 40px;
	margin: 8px 0 12px
}

.sectionHead em,
.joinSection em {
	color: #df291e;
	font-style: normal
}

.sectionHead p,
.joinSection p {
	color: #92989b;
	line-height: 1.7
}

.detailGrid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px
}

.detailGrid article {
	background: #111517;
	border: 1px solid #303537;
	overflow: hidden
}

.detailGrid img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	image-rendering: auto
}

.detailGrid article>div {
	padding: 22px
}

.detailGrid span {
	color: #df291e;
	font-size: 9px;
	font-weight: 900;
	letter-spacing: 2px
}

.detailGrid h3 {
	font-size: 22px;
	margin: 8px 0
}

.detailGrid p {
	color: #969b9d;
	font-size: 13px;
	line-height: 1.65;
	min-height: 65px
}

.detailGrid b {
	font-size: 9px;
	color: #ddd
}

.featureCards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px
}

.featureCards article {
	min-height: 180px;
	padding: 25px;
	background: linear-gradient(145deg, #121719, #0c0f11);
	border: 1px solid #303537
}

.featureCards strong {
	color: #df291e;
	font-size: 28px
}

.featureCards h3 {
	font-size: 15px;
	margin: 18px 0 8px
}

.featureCards p {
	color: #8c9294;
	font-size: 12px;
	line-height: 1.6
}

.ruleCards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px
}

.ruleCards article {
	display: flex;
	gap: 20px;
	padding: 22px;
	background: #111517;
	border: 1px solid #303537
}

.ruleCards article>b {
	color: #df291e;
	font-size: 32px
}

.ruleCards h3 {
	margin: 2px 0 7px;
	font-size: 14px
}

.ruleCards p {
	margin: 0;
	color: #93999b;
	font-size: 12px;
	line-height: 1.6
}

.bigDiscord {
	display: inline-block;
	margin-top: 25px;
	padding: 15px 22px;
	background: #c9231b;
	color: #fff;
	text-decoration: none;
	font-size: 11px;
	font-weight: 900
}

.wipeLarge {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 250px;
	border: 1px solid #303537;
	background: #101416
}

.wipeLarge>div {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 35px
}

.wipeLarge small {
	color: #df291e;
	font-weight: bold
}

.wipeLarge strong {
	font-size: 36px;
	margin: 12px 0
}

.wipeLarge p {
	color: #969b9d
}

.wipeLarge img {
	width: 100%;
	height: 100%;
	min-height: 250px;
	object-fit: cover;
	filter: brightness(.65)
}

.joinSection {
	text-align: center;
	padding: 100px 20px;
	background: radial-gradient(circle, rgba(215, 42, 32, .13), transparent 45%), #080b0d;
	border-top: 1px solid #252a2c
}

.joinSection p {
	margin: 0 auto 28px;
	max-width: 650px
}

.joinSection>div {
	display: flex;
	gap: 12px;
	justify-content: center
}

.joinSection button,
.joinSection a {
	padding: 16px 24px;
	border: 1px solid #414648;
	background: #121719;
	color: white;
	text-decoration: none;
	font-size: 11px;
	font-weight: 900;
	cursor: pointer
}

@media(max-width:900px) {

	.detailGrid,
	.featureCards {
		grid-template-columns: 1fr 1fr
	}

	.ruleCards,
	.wipeLarge {
		grid-template-columns: 1fr
	}
}

@media(max-width:600px) {
	.longSection {
		padding: 65px 20px
	}

	.sectionHead h2,
	.joinSection h2 {
		font-size: 31px
	}

	.detailGrid,
	.featureCards,
	.ruleCards {
		grid-template-columns: 1fr
	}

	.detailGrid img {
		height: 190px
	}

	.wipeLarge strong {
		font-size: 26px
	}

	.joinSection>div {
		flex-direction: column
	}

	.joinSection button,
	.joinSection a {
		width: 100%
	}
}

.detailGrid {
	grid-template-columns: repeat(3, 1fr)
}

.eventVisual>.visualLabel {
	height: 220px;
	display: flex;
	align-items: flex-end;
	padding: 22px;
	font-size: 28px;
	font-weight: 900;
	letter-spacing: 2px;
	text-shadow: 0 3px 10px #000
}

.convoyVisual>.visualLabel {
	background: radial-gradient(circle at 70% 30%, rgba(226, 55, 35, .35), transparent 25%), linear-gradient(145deg, rgba(9, 12, 14, .1), rgba(9, 12, 14, .85)), url("../assets/images/convoy.jpg") center/cover
}

.petVisual>.visualLabel {
	background: radial-gradient(circle at 30% 40%, rgba(103, 200, 60, .22), transparent 28%), linear-gradient(145deg, rgba(9, 12, 14, .15), rgba(9, 12, 14, .9)), url("../images/pets.jpg") center/cover
}

.miniCustom .miniIcon {
	width: 65px;
	height: 58px;
	display: grid;
	place-items: center;
	border-radius: 3px;
	background: linear-gradient(145deg, #35110e, #111517);
	font-size: 14px;
	font-weight: 900;
	color: #e43a30
}

.petMini .miniIcon {
	background: linear-gradient(145deg, #17330f, #111517);
	color: #68c83c
}

.events.panel {
	min-height: 445px
}

@media(max-width:900px) {
	.detailGrid {
		grid-template-columns: 1fr 1fr
	}
}

@media(max-width:600px) {
	.detailGrid {
		grid-template-columns: 1fr
	}
}



.marketMini .miniIcon {
	background: linear-gradient(145deg, #4a310d, #111517);
	color: #e6ad3b
}

.marketGold {
	color: #e6ad3b !important
}

.marketBg {
	background: #805714 !important
}

.marketVisual>.visualLabel {
	background:
		radial-gradient(circle at 65% 35%, rgba(230, 173, 59, .25), transparent 28%),
		linear-gradient(145deg, rgba(9, 12, 14, .12), rgba(9, 12, 14, .9)),
		url("../images/map.jpg") center/cover;
	color: #f1c15c
}

.rulesHint {
	margin-top: 18px;
	padding: 14px 16px;
	border-left: 3px solid #df291e;
	background: #111517;
	color: #8f9698;
	font-size: 11px;
	line-height: 1.6
}

.ruleLink {
	display: block;
	text-align: center;
	text-decoration: none;
	margin-top: 8px
}

.featureCards {
	grid-template-columns: repeat(4, 1fr)
}

@media(max-width:1100px) {
	.featureCards {
		grid-template-columns: repeat(2, 1fr)
	}
}

@media(max-width:600px) {
	.featureCards {
		grid-template-columns: 1fr
	}
}

/* ===== Größere obere Features-/Regel-Balken ===== */
.topInfoPanel {
	padding: 0 18px 18px !important;
	overflow: hidden;
}

.topInfoPanel .panelTitle {
	margin: 0 -18px 16px;
	padding: 15px 18px;
	min-height: 66px;
	display: flex;
	align-items: center;
	gap: 13px;
	background: linear-gradient(90deg, rgba(207, 31, 23, .20), rgba(18, 22, 24, .96) 55%, rgba(18, 22, 24, .82));
	border-bottom: 1px solid #343a3d;
	box-shadow: inset 3px 0 0 #df291e;
}

.topInfoPanel .panelIcon {
	width: 38px;
	height: 38px;
	flex: 0 0 38px;
	display: grid;
	place-items: center;
	border: 1px solid rgba(223, 41, 30, .65);
	background: rgba(223, 41, 30, .10);
	color: #ed3328;
	font-size: 20px;
}

.topInfoPanel .panelTitle h3 {
	margin: 0 !important;
	font-size: 17px !important;
	line-height: 1.15;
	letter-spacing: .4px;
	color: #f3f3f3;
}

.topInfoPanel .panelTitle small {
	display: block;
	margin-top: 5px;
	color: #858d90;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 1.5px;
}

.topFeatureList,
.topRuleList {
	margin-top: 0 !important;
}

.topFeatureList li {
	font-size: 16px !important;
	line-height: 1.55 !important;
	padding: 5px 0 !important;
}

.topRuleList li {
	font-size: 16px !important;
	line-height: 1.5 !important;
	padding: 5px 0 !important;
}

.topRuleList li::marker {
	color: #df291e;
	font-weight: 900;
}

.topInfoPanel .rules {
	font-size: 12px !important;
	padding: 13px 12px !important;
	margin-top: 14px !important;
}

@media(max-width:600px) {
	.topInfoPanel .panelTitle h3 {
		font-size: 16px !important
	}

	.topFeatureList li,
	.topRuleList li {
		font-size: 12.5px !important
	}
}

