/* Allgemeine Stile */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    margin: 0;
    padding: 0;
    font-family: 'Cinzel', serif;
    background-color: #0b0b0b;
    background-image: url('https://www.transparenttextures.com/patterns/dark-mosaic.png');
    color: #ddd;
    /* display: flex; ❌ entfernen */
    /* flex-direction: column; ❌ entfernen */
    min-height: 100vh;
}



@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}





.social-media {
    display: flex;
    justify-content: center;
    padding: 1em 0;
    background-color: #000;
}

.social-media a img {
    height: 20px;
    margin: 0 10px;
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0; 
    background-color: #000;
    z-index: 10; 
    margin: 0; 
    position: relative; 
    width: 100%; 
}

.nav-bar .logo img {
    height: 100px;
    margin-right: 82px; 
}

.nav-bar nav ul {
    list-style: none;
    display: flex;
    gap: 1em;
    padding: 0;
    margin: 0;
}

.nav-bar nav ul li {
    display: flex;
    align-items: center; 
    position: relative;
}

.nav-bar nav ul li img {
    height: 20px;
    margin-right: 8px; 
}

.nav-bar nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 0.5em 1em;
    position: relative;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}


.nav-bar nav ul li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ff0000;
    transition: width 0.3s ease;
}

.nav-bar nav ul li a:hover::after,
.nav-bar nav ul li a:focus::after {
    width: 100%;
}

.nav-bar nav ul li.active a::after {
    width: 100%;
    background-color: #0000ff;
}

.nav-bar .server-status {
    color: #fff;
}

.nav-bar .server-status .online {
    color: #0f0;
}


.nav-bar nav ul li.dropdown {
    position: relative;
}

.nav-bar nav ul li.dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%; 
    left: 0;
    background-color: #000;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    padding: 0;
    list-style: none; 
    margin: 0;
    min-width: 230px;
    z-index: 100; 
}

.nav-bar nav ul li.dropdown .dropdown-menu li {
    padding: 0.5em 1em;
    display: flex;
    align-items: center; 
}

.nav-bar nav ul li.dropdown .dropdown-menu li a {
    color: #fff;
    text-decoration: none;
    display: flex; 
    align-items: center;
    transition: background-color 1.3s ease;
    border-radius: 3px;
    width: 100%;
}

.nav-bar nav ul li.dropdown .dropdown-menu li a img {
    height: 25px;
    width: 25px;
    margin-right: 20px;
}

.nav-bar nav ul li.dropdown .dropdown-menu li a:hover,
.nav-bar nav ul li.dropdown .dropdown-menu li a:focus {
    background-color: #ff0000;
    border-radius: 3px;
}


.nav-bar nav ul li.dropdown:hover .dropdown-menu {
    display: block;
}


.hero-container {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    z-index: 1;
}

.hero-shadow {
  position: absolute;
  bottom: 0;
  left: 10px;
  width: 100%;
  height: 50px;  /* Höhe vom Schatten */
  background: rgba(0,0,0,0.7);
  filter: blur(15px);
  z-index: 1;
}


.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height:  100vh;
    
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 3s ease-in-out, transform 5s ease-in-out; 
    transform: scale(1.55);
    
}

.hero-image.zoom {
    animation: zoomEffect 8s ease-in-out forwards;
    
}



@keyframes zoomEffect {
    0% {
        transform: scale(1) translate(0%, 0%);
        background-position: top center;
    }
    25% {
        transform: scale(1.1) translate(-2%, -2%); /* leicht nach oben-links */
    }
    50% {
        transform: scale(1.2) translate(3%, 5%); /* leicht nach unten-rechts */
        background-position: center;
    }
    75% {
        transform: scale(1.3) translate(7%, -18%); /* oben-rechts / unten-links */
    }
    110% {
        transform: scale(1.35) translate(0%, 0%); /* wieder Mitte */
        background-position: bottom center;
    }
}


/* ---------- Info Bar modern, wie Ranking Theme ---------- */
.info-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 10px 20px;
    margin: 20px auto;
    width: 90%;
    max-width: 1200px;
    background: linear-gradient(145deg, #0c0c0c, #161616);
    border: 1px solid #2a2a2a;
    border-radius: 14px;
    box-shadow: 0 0 20px rgba(255,200,100,0.2);
}

.info-item {
    flex: 1 1 200px; /* responsiv, min 200px */
    margin: 10px;
    padding: 15px;
    background: linear-gradient(145deg, #121212, #1a1a1a);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    font-weight: 500;
    transition: transform 0.2s, box-shadow 0.2s;
}

.info-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(231,193,120,0.3);
}

.info-item img {
    width: 32px;
    height: 32px;
}

.info-item span {
    display: block;
    color: #ddd;
}

.info-item a {
    color: #3a8bd5;
    text-decoration: none;
    font-weight: bold;
}

.info-item a:hover,
.info-item a:focus {
    color: #e7c178;
}

/* Responsive Anpassung */
@media (max-width: 900px) {
    .info-bar { flex-direction: column; align-items: center; }
    .info-item { flex: 1 1 80%; margin: 5px 0; }
}



main {
    flex: 1;
    display: flex;
    flex-direction: column; 
    align-items: center; 
    padding: 2em;
}


.content {
    display: flex;
    flex-direction: row;
    width: 70%;
    padding: 2em;
    gap: 6em; 
}


.left-column {
    flex: 1; 
    display: flex;
    flex-direction: column; 
    gap: 4em;
}


.box {
    background-color: #222;
    padding: 1em;
     box-shadow: 5px 10px 18px rgb(0, 0, 0);
    border-radius: 5px;
    box-sizing: border-box;
}


.guild-column {
    background-color: #222;
    padding: 1em;
     box-shadow: 5px 10px 18px rgb(0, 0, 0);
    border-radius: 5px;
    box-sizing: border-box;
    margin-top: 1em;
}

/* -------------------------------
   Einheitlicher, moderner Box-Stil
   ------------------------------- */

.left-column .box,

.right-column .box {
    background: linear-gradient(145deg, #121212, #1a1a1a);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.right-column .updates img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    object-fit: cover;
}

.archive-button {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background-color: #c98f13;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.archive-button:hover {
    background-color: #e7c178;
    color: #000;
}

.left-column .box:hover,
.right-column .updates:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(231,193,120,0.4);
}



/* Überschriften in Boxen */
.left-column .box .title-block h2,
.right-column .updates .title-block h2 {
    color: #e7c178;
    font-size: 24px;
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 0 0 8px rgba(231,193,120,0.3);
}

/* Top Players / Guilds List Items */
.top-players li,
.top-guilds li {
    background: linear-gradient(145deg, #121212, #1b1b1b);
    border-radius: 10px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s, box-shadow 0.2s, background 0.3s;
}

.top-players li:hover,
.top-guilds li:hover {
    background: linear-gradient(145deg, #1a1a1a, #222);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(231,193,120,0.3);
}

/* Archive-Link wie moderner Button */
.right-column .updates a {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: linear-gradient(145deg, #121212, #1a1a1a);
    color: #3a8bd5;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.3s, color 0.3s, background 0.3s;
}

.right-column .updates a:hover {
    color: #e7c178;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231,193,120,0.3);
    background: linear-gradient(145deg, #1a1a1a, #222);
}


.right-column {
    width: 60%;
    background-color: #222;
     box-shadow: 5px 10px 18px rgb(0, 0, 0);
    border-radius: 5px;
    box-sizing: border-box;
    margin-left: 1em; 
}

/* -------------------------------
   Moderner Title Block für Boxen
   ------------------------------- */
.title-block-modern {
    background: linear-gradient(145deg, #0f0f0f, #1a1a1a);
    border-radius: 14px;
    padding: 15px 20px;
    margin-bottom: 15px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(231,193,120,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.title-block-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(231,193,120,0.5);
}

.title-block-modern h2 {
    color: #e7c178;
    font-size: 24px;
    margin: 0;
    text-shadow: 0 0 8px rgba(231,193,120,0.3);
    font-weight: 700;
}

/* Optional: kleiner Untertitel */
.title-block-modern span {
    display: block;
    font-size: 14px;
    color: #aaa;
    margin-top: 5px;
}


.archive-button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: linear-gradient(145deg, #121212, #1a1a1a);
    color: #d1a410;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.3s, color 0.3s, background 0.3s;
}

.archive-button:hover {
    color: #e7c178;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231,193,120,0.3);
    background: linear-gradient(145deg, #1a1a1a, #222);
}


.title-block {
    background-color: #333; 
     box-shadow: 5px 10px 18px rgb(0, 0, 0);
    padding: 1em;
    border-radius: 5px;
	color: #00a400;

    margin-bottom: 1em; 
}


.left-column h2,
.right-column h2 {
    color: #ebaa33;
}

.top-players {
    list-style: none;
    padding: 0;
}

.top-players li {
    margin: 0.5em 0;
}

.updates p {
    margin: 0.5em 0;
	font-size: smaller;
}


.updates img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 1em;
}

.update-title {
    font-weight: bold;
    margin-bottom: 10px;
	font-size: 26px;
}


.top-players {
    list-style: none; 
    padding: 0;
    margin: 0;
}

.top-players li {
    display: flex; 
    align-items: center; 
    padding: 0.5em;
    border-bottom: 1px solid #333; 
    background-color: #333; 
    border-radius: 5px; 
    margin-bottom: 0.5em; 
    transition: background-color 0.3s; 
}

.top-players li:last-child {
    border-bottom: none; 
}

.top-players img {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 10px; 
}

.top-players span {
    color: #fff;
    font-weight: bold;
}

.top-players li:hover {
    background-color: #444;
}


.top-guilds-block {
    background-color: #222; 
    padding: 1em; 
    border-radius: 5px;
}

.top-guilds {
    list-style: none; 
    padding: 0;
    margin: 0;
}

.top-guilds li {
    display: flex; 
    align-items: center; 
    padding: 0.5em;
    border-bottom: 1px solid #333; 
    background-color: #333; 
    border-radius: 5px; 
    margin-bottom: 0.5em;
    transition: background-color 0.3s; 
}

.top-guilds li:last-child {
    border-bottom: none; 
}

.top-guilds img {
    width: 20px; 
    height: 20px;
    vertical-align: middle;
    margin-right: 10px; 
}

.top-guilds span {
    color: #fff;
    font-weight: bold;
}

.top-guilds li:hover {
    background-color: #444; 
}

.title-block h2 {
    margin: 0; 
    color: #FFFFFF; 

}


footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em;
    background-color: #000;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.footer-left {
    flex: 1;
}

.footer-center {
    flex: 2;
    text-align: center;
}

.footer-right {
    flex: 1;
    text-align: right;
}

.social-media-links {
    display: flex;
    justify-content: center;
    padding: 1em 0;
    background-color: #000;
}

.social-media-links a img {
    height: 50px;
    margin: 0 10px;
}

.social-media-links a:hover {
    color: #ff0000;
}

.footer-line {
    position: absolute;
    top: 0%;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, rgba(255, 0, 0, 1), rgba(0, 0, 255, 1), rgba(0, 255, 0, 1));
    animation: blink 3s infinite;
}

.logout-button {
    display: inline-block;
    margin-top: 10px;
    padding: 5px 10px;
    background-color: #d9534f; 
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}

.logout-button:hover {
    background-color: #c9302c; 
}


@keyframes blink {
    0% {
        background: linear-gradient(to right, rgba(255, 0, 0, 1), rgba(0, 0, 255, 1), rgba(0, 255, 0, 1));
        opacity: 1;
    }
    50% {
        background: linear-gradient(to right, rgba(255, 0, 0, 1), rgba(0, 0, 255, 1), rgba(0, 255, 0, 1));
        opacity: 0.5;
    }
    100% {
        background: linear-gradient(to right, rgba(255, 0, 0, 1), rgba(0, 0, 255, 1), rgba(0, 255, 0, 1));
        opacity: 1;
    }
}

        
        ::-webkit-scrollbar {
            width: 12px;
            height: 12px;
        }

        ::-webkit-scrollbar-track {
            background: #111;
        }

        ::-webkit-scrollbar-thumb {
            background: #ff0000;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #cc0000;
            box-shadow: 0 0 15px rgba(255, 0, 0, 0.8);
        }

        
        * {
            scrollbar-width: thin;
            scrollbar-color: #ff0000 #111;
        }
		
		
.donation-section {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.donation-list, .donation-rules {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    color: #fff;
    max-width: 48%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.donation-list .title-block, .donation-rules .title-block {
    margin-bottom: 20px;
}

.donation-list .title-block h2, .donation-rules .title-block h2 {
    font-size: 24px;
    margin: 0;
}

.donation-list .packages {
    list-style: none;
    padding: 0;
    margin: 0;
}

.donation-list .packages li {
    background-color: #333;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.donation-list .packages li:hover {
    background-color: #ff0000;
}

.donation-list .packages .price {
    font-weight: bold;
    font-size: 18px;
    margin-right: 15px; 
}

.donation-rules p {
    margin: 10px 0;
    line-height: 1.5;
}


.rule-title::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background-color: #ff0000;
    transition: width 0.3s;
    position: absolute;
    left: 0;
    bottom: -5px;
}

.rule-title:hover::after {
    width: 100%;
}

.highlight {
    color: #ff0000;
    font-weight: bold;
}


.rules-section {
    padding: 20px;
    background-color: transparent;
    margin: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.rule-box {
    padding: 20px;
    border: 2px solid #ccc;
    border-radius: 10px;
    position: relative;
}

.rule-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-align: center;
    color: white;
}

.rule-item {
    margin-bottom: 20px;
}

.rule-item h3 {
    font-size: 18px;
    font-weight: bold;
    color: white;
    margin-bottom: 5px;
}

.rule-item p {
    font-size: 14px;
    color: white;
    margin: 0;
}


.schedule-container {
    margin: 20px;
    padding: 20px;
    background-color: transparent;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
}

.schedule-table th,
.schedule-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.schedule-table th {
    background-color: transparent;
    font-weight: bold;
}

.schedule-table tr:hover {
    background-color: red;
	 transition: background-color 0.6s;
}

.schedule-table td {
    color: #333;
    font-size: 16px;
}

.schedule-table .system-name {
    font-weight: bold;
    color: white;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.schedule-table .day {
    color: white;
}

.schedule-table .time {
    color: white;
}


.event-container {
    margin: 20px;
    padding: 20px;
    background-color: transparent;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.event-item {
    margin-bottom: 20px;
}

.event-item h3 {
    font-size: 18px;
    color: white;
    margin-bottom: 10px;
}

.event-item p {
    font-size: 14px;
    color: white;
    line-height: 1.6;
}

.event-item a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.event-item a:hover {
    text-decoration: underline;
}


.userpanel-content {
    background: transparent;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.character-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.character-table th, .character-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.character-table th {
    background-color: transparent;
}

.class-img {
    width: 30px;
    height: auto;
    vertical-align: middle;
    margin-right: 8px;
}

.userpanel-buttons {
    text-align: center;
}

.userpanel-buttons .btn {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    margin: 5px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.userpanel-buttons .btn:hover {
    background-color: #0056b3;
}

.userpanel-buttons .btn:active {
    background-color: #003d80;
}

/* === New NOX-like 3 column layout === */

.content-nox {
    width: 90%;
    margin: 40px auto;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
}

/* Left + Right Columns */
.side-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Center Column (News) */
.center-column .box {
    width: 100%;
}

.news-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}


/* Responsive */
@media (max-width: 1200px) {
    .content-nox {
        grid-template-columns: 1fr;
    }
}
/* ===========================
   HEADER GALLERY (PNG LIST)
   =========================== */

.header-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 10px 0;
    justify-content: center;
}

.header-thumb {
    width: 140px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s;
    border: 1px solid rgba(255,215,128,0.25);
}

.header-thumb:hover {
    transform: scale(1.08);
    box-shadow: 0 0 15px rgba(255,215,128,0.4);
}


/* LIGHTBOX */

#lightbox {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(4px);
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

#lightbox.show {
    display: flex;
}

#lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 0 25px rgba(255,215,128,0.4);
    animation: popIn 0.25s ease;
}

@keyframes popIn {
    0% { transform: scale(0.6); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}
/* Header Gallery (1 Bild + Left/Right Switch) */
.header-gallery {
    width: 420px;
    margin: 40px auto;
    position: relative;
    padding: 15px;
    background: linear-gradient(145deg, #121212, #1a1a1a);
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.hg-frame {
    width: 100%;
    height: 260px;
    overflow: hidden;
    border-radius: 10px;
}

.hg-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .7s ease-in-out;
    opacity: 1;
}

.hg-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(20,20,20,0.65);
    border: 1px solid rgba(255,255,255,0.12);
    width: 38px;
    height: 55px;
    cursor: pointer;
    color: #e7c178;
    font-size: 26px;
    border-radius: 6px;
    transition: background .2s, color .2s;
}

.hg-btn:hover {
    background: rgba(255,215,0,0.25);
    color: #fff;
}

.hg-left {
    left: -15px;
}

.hg-right {
    right: -15px;
}
/* ===== Header Gallery ===== */

.header-gallery {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto 0 auto;
    padding: 20px 0;
}

.header-gallery h2 {
    color: #e7c178;
    margin-bottom: 15px;
    text-shadow: 0 0 8px rgba(231,193,120,0.3);
}

.gallery-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.gallery-window {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-track {
    display: flex;
    transition: transform 0.6s ease;
}

/* 5 Bilder gleichzeitig */
.gallery-img {
    width: calc(20% - 10px);
    margin-right: 10px;
    height: 120px; 
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0,0,0,0.6);
}

/* Buttons */
.gallery-btn {
    background: rgba(0,0,0,0.6);
    border: 1px solid #e7c178;
    color: #e7c178;
    padding: 10px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    transition: 0.2s;
}

.gallery-btn:hover {
    background: rgba(231,193,120,0.3);
}
/* --- WoG Header Gallery --- */

.wog-gallery {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px 0;
}

.wg-window {
    width: 100%;
    overflow: hidden;
}

.wg-track {
    display: flex;
    gap: 10px;
    transition: transform 0.4s ease;
}

/* 5 Bilder sichtbar */
.wg-img {
    width: calc(20% - 10px);
    height: 110px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0,0,0,0.6);
}

.wg-btn {
    background: rgba(0,0,0,0.55);
    border: 1px solid #e7c178;
    color: #e7c178;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s;
    font-size: 18px;
}

.wg-btn:hover {
    background: rgba(231,193,120,0.3);
}
/* ============================
   Auctionhouse Landingpage Style
   ============================ */

.auctionhouse-layout {
    width: 90%;
    max-width: 1650px;
    margin: 50px auto;
    display: grid;
    grid-template-columns: 300px 1fr 300px;
    gap: 35px;
}

/* GOLD BOX */
.ah-box {
        overflow: visible !important;
    background: #0d0d0d;
    border: 1px solid rgba(255,200,90,0.25);
    box-shadow: 0 0 35px rgba(255,200,90,0.12);
    border-radius: 10px;
    padding: 25px;
}

/* TITLE */
.ah-title {
    font-size: 24px;
    color: #e7c178;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 0 8px rgba(231,193,120,0.4);
    font-weight: 700;
}


/* NEWS IMAGE REDUCED */
.news-image {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}


/* ===== HEADER GALLERY ===== */
.gallery-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.gallery-window {
    width: 100%;
    overflow: hidden;
}

.gallery-track {
    display: flex;
    gap: 10px;
    transition: transform 0.6s ease;
}

.gallery-img {
    width: calc(20% - 10px);
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.2s;
}

.gallery-img:hover {
    transform: scale(1.05);
}

.gallery-btn {
    background: none;
    color: #e7c178;
    border: none;
    font-size: 32px;
    cursor: pointer;
    padding: 10px;
}

.gallery-btn:hover {
    color: #fff;
}


/* Lightbox */
#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

#lightbox.show {
    display: flex;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
}
/* Smaller text for Top 10 Players list */
.top-players li,
.top-players li span {
    font-size: 13px !important;
}
.news-content {
    text-align: center;
}

.news-content p,
.news-content li,
.news-content span {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
}
.ah-title {
    text-align: center;
}
.news-header-rotator {
    position: relative;
    width: 100%;
    height: 180px; /* Höhe News Header */
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 15px;
}

.nh-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out, transform 5s ease-in-out;
    transform: scale(1.2);
}

.nh-image.show {
    opacity: 1;
    transform: scale(1.0);
}
.nox-shoutbox {
    background: #0b0b0b;
    border: 1px solid rgba(231,193,120,0.25);
    border-radius: 8px;
    box-shadow: 0 0 25px rgba(231,193,120,0.15);
    overflow: hidden;
    margin-top: 15px;
}

.nox-shoutbox-title {
    background: linear-gradient(135deg, #161616, #0e0e0e);
    padding: 8px;
    color: #e7c178;
    text-align: center;
    font-weight: 700;
    font-size: 15px;
    border-bottom: 1px solid rgba(231,193,120,0.2);
}

.nox-shoutbox-scroll {
    max-height: 260px;
    overflow-y: auto;
    padding: 10px 12px;
    font-size: 13px;
    color: #ccc;
    font-family: 'Cinzel', serif;
    line-height: 1.4;
}

/* Nox scrollbar */
.nox-shoutbox-scroll::-webkit-scrollbar {
    width: 8px;
}

.nox-shoutbox-scroll::-webkit-scrollbar-track {
    background: #111;
    border-radius: 10px;
}

.nox-shoutbox-scroll::-webkit-scrollbar-thumb {
    background: #6a4b26;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(255,200,90,0.4);
}

.nox-shoutbox-scroll::-webkit-scrollbar-thumb:hover {
    background: #8f6333;
}

.nox-message {
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* Glow Animations */
@keyframes pulse-online {
    0% { box-shadow: 0 0 5px rgba(0,255,50,0.5); }
    50% { box-shadow: 0 0 12px rgba(0,255,50,1); }
    100% { box-shadow: 0 0 5px rgba(0,255,50,0.5); }
}

@keyframes pulse-idle {
    0% { box-shadow: 0 0 5px rgba(255,200,0,0.5); }
    50% { box-shadow: 0 0 12px rgba(255,200,0,1); }
    100% { box-shadow: 0 0 5px rgba(255,200,0,0.5); }
}

@keyframes pulse-dnd {
    0% { box-shadow: 0 0 5px rgba(255,80,80,0.7); }
    50% { box-shadow: 0 0 12px rgba(255,20,20,1); }
    100% { box-shadow: 0 0 5px rgba(255,80,80,0.7); }
}

.status-online  { background: #00ff4c; animation: pulse-online 1.7s infinite; }
.status-idle    { background: #ffd000; animation: pulse-idle 1.9s infinite; }
.status-dnd     { background: #ff3c3c; animation: pulse-dnd 1.6s infinite; }
.status-offline { background: #444; }
.activity-text  { color: #888; font-size: 12px; margin-left: 50px; }


/* ====== Glowbar + Caption (wie bei Donation) ====== */
.glowbar-wrap{max-width:1120px; margin:42px auto 18px}
.glowbar{
    width: 100%;
    height: 2px;
    margin: 20px 0;
    background: linear-gradient(to right, rgba(255,0,0,0.8), rgba(0,0,255,0.8), rgba(0,255,0,0.8));
    animation: glowShift 5s linear infinite;
}
@keyframes glowSweep{
  0%{filter:brightness(1)}
  50%{filter:brightness(1.25)}
  100%{filter:brightness(1)}
}
.glowbar-caption{
  text-align:center; margin-top:10px; font-size:.95rem;
  color:var(--text-dim);
}
.glowbar-caption strong{
  color:var(--gold-2);
  text-shadow:0 0 10px rgba(231,195,92,.5);
}


@media (prefers-reduced-motion: reduce){
  .glowbar{animation:none}
  .packages li:hover{transform:none}
}
/* Glowbar Container */
.glowbar-wrap {
    position: relative;
    margin-top: 20px;
    padding: 25px 15px;
    text-align: center;
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255, 216, 128, 0.25);
    border-radius: 6px;
    box-shadow: inset 0 0 12px rgba(255, 210, 100, 0.15), 0 0 12px rgba(255, 210, 100, 0.15);
}

/* The glowing line */
.glowbar {
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 215, 120, 0.9),
        rgba(255, 180, 80, 0.9),
        transparent
    );
    margin-bottom: 12px;
    animation: glowbar-move 3.5s linear infinite;
    opacity: 0.8;
    border-radius: 5px;
}

/* Glow movement */
@keyframes glowbar-move {
    0% { opacity: .4; }
    50% { opacity: 1; }
    100% { opacity: .4; }
}

.glowbar-caption {
    font-family: "Trajan Pro", serif;
    font-size: 15px;
    color: #e8c68c;
    text-shadow: 0 0 8px rgba(255, 219, 140, 0.45);
}
.glowbar-caption strong {
    color: #ffd98a;
}
/* GLOWBAR BASE */
.glowbar-wrap {
    text-align: center;
    padding: 20px 10px 25px;
    position: relative;
    margin-top: 10px;
}

.glowbar {
    height: 2px;
    width: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 215, 0, 0) 0%,
        rgba(255, 215, 0, .9) 50%,
        rgba(255, 215, 0, 0) 100%
    );
    position: relative;
    overflow: hidden;
}

/* TEXT */
.glowbar-caption {
    margin-top: 8px;
    font-size: 15px;
    color: #d9c07a;
    text-shadow: 0 0 4px #000;
}


/* ========================================= */
/* 1) GOLDEN PULSE (leichtes Auf- und Abglühen) */
/* ========================================= */
.animated-glowbar {
    animation: glowPulse 3.5s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.65;
        filter: drop-shadow(0 0 3px rgba(255, 210, 90, 0.4));
    }
    50% {
        opacity: 1;
        filter: drop-shadow(0 0 7px rgba(255, 220, 120, 0.8));
    }
}


/* ========================================= */
/* 2) SHINE SWEEP (golden stripe fährt durch) */
/* ========================================= */
.glowbar::before {
    content: "";
    position: absolute;
    top: 0;
    left: -30%;
    width: 30%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,.7) 50%,
        rgba(255,255,255,0) 100%
    );
    animation: shineSweep 4.5s ease-in-out infinite;
}

@keyframes shineSweep {
    0% { left: -30%; }
    40% { left: 100%; }
    100% { left: 100%; }
}


/* ========================================= */
/* 3) FADE IN BEIM LADEN (sehr weich) */
/* ========================================= */
.animated-glowbar {
    animation: fadeInGlow 1.3s ease-out, glowPulse 3.5s ease-in-out infinite;
}

@keyframes fadeInGlow {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Panel darf nicht scrollen */
.discord-panel {
    overflow: visible !important;
}

/* Nur die Userliste scrollt */
.discord-users {
    height: 420px;
    overflow-y: auto;
    padding-right: 5px;
}

/* Scrollbar */
.discord-users::-webkit-scrollbar {
    width: 6px;
}
.discord-users::-webkit-scrollbar-thumb {
    background: rgba(255, 215, 0, 0.4);
    border-radius: 10px;
}
.discord-users::-webkit-scrollbar-track {
    background: transparent;
}

.discord-user {
    position: relative;
    background: #0a0a0a;
    border-radius: 10px;
    margin: 10px 0;
    padding: 12px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.06);
    height: 62px;
}

/* Banner hinter allem */
.discord-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 62px;
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    z-index: 1;
}

/* Avatar */
.discord-avatar,
.discord-info,
.discord-status-dot {
    z-index: 2;
    position: relative;
}

.discord-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    margin-right: 10px;
}

/* Name + Activity */
.discord-info {
    display: flex;
    flex-direction: column;
}

.discord-name {
    font-weight: bold;
    color: #fff;
    font-size: 15px;
}

.discord-activity {
    font-size: 12px;
    color: #ffdf8b;
    margin-top: 2px;
}

/* Status Dot */
.discord-status-dot {
    margin-left: auto;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.status-online  { background: #43b581; }
.status-idle    { background: #faa61a; }
.status-dnd     { background: #f04747; }
.status-offline { background: #747f8d; }

/* Hover Effekt */
.discord-user:hover {
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    transform: scale(1.01);
    transition: 0.15s;
}

.discord-role-icon {
    width: 20px;
    height: 20px;
    margin-right: 6px;
    border-radius: 4px;
    z-index: 2;
}

.discord-role-emoji {
    font-size: 20px;
    margin-right: 6px;
    z-index: 2;
}

.discord-role-badge {
    background: rgba(255,215,0,0.12);
    border: 1px solid rgba(255,215,0,0.25);
    padding: 2px 6px;
    border-radius: 6px;
    font-size: 11px;
    margin-top: 2px;
    display: inline-block;
    color: #ffd97a;
}
/* --- Nitro Banner Animated Effect --- */
.nitro-banner {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 55px;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    opacity: 0.55;
    mix-blend-mode: screen;
    pointer-events: none;
}

.nitro-gradient {
    width: 200%;
    height: 200%;
    background: linear-gradient(
        120deg,
        #ff73fa,
        #9f53ff,
        #4a8cff,
        #32ffd4,
        #ffe373,
        #ff73fa
    );
    background-size: 300% 300%;
    animation: nitroMove 12s ease infinite;
    filter: blur(12px);
}

@keyframes nitroMove {
    0%   { transform: translate(-20%, -20%); }
    50%  { transform: translate(20%, 20%);  }
    100% { transform: translate(-20%, -20%); }
}

/* Nitro Accent Glow if NO banner */
.accent-glow {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 55px;
    border-radius: 12px 12px 0 0;
    opacity: 0.35;
    pointer-events: none;
    background: radial-gradient(circle at 50% 20%, var(--accent), transparent 65%);
}
.discord-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    filter: brightness(0.8);
}
/* Nitro-like background panel */
.discord-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 55px;
    background-size: cover;
    background-position: center;
    border-radius: 10px 10px 0 0;
    opacity: 0.9;
    filter: blur(0px);
}

/* Userbox */
.discord-user {
    position: relative;
    background: #0b0b0b;
    border: 1px solid rgba(255, 215, 0, 0.06);
    margin: 12px 0;
    padding: 14px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Avatar */
.discord-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    margin-right: 12px;
    z-index: 2;
}

/* Text */
.discord-info {
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.discord-name {
    color: #fff;
    font-size: 15px;
    font-weight: bold;
}

.discord-activity {
    color: #ffe9a6;
    font-size: 13px;
}

/* Status */
.discord-status-dot {
    margin-left: auto;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.status-online { background: #43b581; }
.status-idle { background: #faa61a; }
.status-dnd { background: #f04747; }
