body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #111;
    color: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.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;
}

.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-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 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #222;
    padding: 1em;
    margin-bottom: 1em;
    width: 70%;
    margin: 1em auto; 
}

.info-item {
    flex: 1;
    padding: 1em;
    background-color: #333;
    border-radius: 5px;
    margin: 0 0.5em;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; 
}

.info-item a {
    color: #0f0;
    text-decoration: none;
}

.info-item img {
    width: 40px; 
    height: 40px;
}

.info-item span {
    display: block;
    color: #fff;
}


.info-item a:hover,
.info-item a:focus {
    color: #ff0000;
}


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;
    border-radius: 5px;
    box-sizing: border-box; 
}


.guild-column {
    background-color: #222;
    padding: 1em;
    border-radius: 5px;
    box-sizing: border-box;
    margin-top: 1em;
}


.right-column {
    width: 60%;
    background-color: #222;
    padding: 1em;
    border-radius: 5px;
    box-sizing: border-box; 
    margin-left: 1em; 
}

.title-block {
    background-color: #333; 
    padding: 1em;
    border-radius: 5px;
	color: #00a400;

    margin-bottom: 1em;
}


.left-column h2,
.right-column h2 {
    color: #00a400;
}

.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;
        }