/* Basic CSS Styling */
@font-face {
    font-family: 'AdelonBook';
    src: url('../fonts/adelonlregular-webfont.woff2') format('woff2'),
         url('../fonts/adelonlregular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'newton';
    src: url('../fonts/newton.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Supernatural_Knight';
    src: url('../fonts/Supernatural_Knight.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Strandall';
    src: url('../fonts/strandall.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

::-webkit-scrollbar {
    width: 5px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #fff;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: linear-gradient(0deg,#9b6620,#c27c1f);
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(0deg,#d98327,#d98327);
  }

body {
    font-family: 'AdelonBook', Times New Roman, Times, serif;
    margin: 0;
    padding: 0;
    overflow: auto;
	min-height: 100vh; /* Ensures the height covers the full viewport */
    top: 0px !important;
}



.custom-buttons {
    position: fixed;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.custom-button {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    background-image: url('../img/icons/social_border.png');
    padding: 24px 23px;
    border-radius: 5px;
    margin-bottom: 10px;
	transition: background-color 0.3s ease, transform 0.2s ease; /* Added transition for smoother hover */

}

.custom-button:hover {
    background-image: url('../img/icons/social_border_hover.png');
	transform: scale(1.05); /* Scale up slightly on hover */
		transition: background-color 0.3s ease, transform 0.2s ease; /* Added transition for smoother hover */
}

.button-icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.fa-discord {
	color:#b99669;
	font-size:20px;
	margin-left:-3px;
}

.fa-facebook {
	font-size:25px;
	margin-left:-3px;
	margin-top:-4px;
	color:#b99669;
}

.fa-youtube {
	margin-left:-3px;
	margin-top:-2px;
	font-size:22px;
	color:#b99669;
}

@media only screen and (max-width: 768px) {
.custom-buttons {
	display:none;
}
}

/* Media query for mobile view */
@media (max-width: 767px) {
  .custom-buttons {
    display: none; /* Hide sidebar on smaller screens */
  }
}

header {
	
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0.6;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 20px 0px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 30px;
    z-index: 9999;
		border-bottom: 1px solid #a5742f;
}



.logo {
    max-width: 220px;
    width: 100%;
    padding: 10px;
    margin-top: 3px;
	margin-right:20px;
	margin-left: 0;
}

.logo:hover {
    animation: navLogo 0.3s ease forwards;
}

nav {
    text-align: center;
    margin-left: 35px; /* Adjusted to align from the left */
    margin-right: auto; /* Adjusted to align from the left */
	margin-top:-10px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start; /* Changed to flex-start */
    align-items: center; /* Added to vertically center items */
}

nav ul li {
    margin: 0 10px;
    display: inline-block;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 10px 6px;
    transition: .5s;
	text-align:center;
	
}


nav ul li a:hover {
    position: relative;
    z-index: 1;
    color: #d39134;
    transition: background-color 0.3s ease;
}


nav ul li a img {
    margin:-12px auto;
}

.header__server {
    width: calc((100% - 24px) / 2);
    max-width: 1000px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 24px;
	top:120px;
    z-index: 9999;
    position: fixed;
    right: 0; /* Stick to the right side */
}



.header__server .header__server-item-position {
    width: calc((65% - 24px) / 2);
    position: relative; /* Keep this relative since the parent is fixed */
    z-index: 1;
    justify-content: flex-end;
}



.header__server .header__server-item {
    width: 70%;
    padding: 16px 18px 14px;
    background-color: rgba(31, 21, 16, .8);
    border-radius: 5px;
    border: 1px solid #a5742f;
    overflow: hidden;
    cursor: pointer;
    transition: all .3s ease-in-out;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px;
    transition: background-color .3s ease-in-out;
}

.header__server .header__server-item-icon {
    width: 46px;
	height: 52px;
    aspect-ratio: 1 / 1;
    position: relative;
    align-items: left;
}

.header__server .header__server-item-description {
    flex-grow: 1;
    overflow: hidden;
}

.header__server .header__server-item-name {
    font-family: var(--primary-font);
    font-size: 18px;
    line-height: 1em;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    display: block; /* Changed to block */
    justify-content: flex-start;
    align-items: left;
    flex-wrap: wrap;
    row-gap: 5px;
    column-gap: 10px;
}

.header__server .header__server-item-text {
	 font-family: 'AdelonBook';
    font-size: 14px;
    font-weight: normal;
    line-height: 1;
    color: #fff;
    margin-top: 5px;
    align-items: left;
}

.header__server .header__server-item-name-online {
    display: flex; /* Changed to flex for horizontal alignment */
    justify-content: flex-start;
    align-items: center;
    margin-top: 5px;
    gap: 5px;
}

.header__server .header__server-item-name-online img {
    margin-right: 10px;
    vertical-align: middle; /* Vertically align the image with the middle of the text */
}

.header__server .header__server-item-name-online span {
    align-items: center;
    margin-top: 8px;
}

@media (max-width: 768px) {

.header__server {
    position: absolute;
	margin-top:65px;
}

.header__server-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh; /* Adjust this to fit your layout */
	
}

.header__server {
    display: flex;
   align-items:center;
    z-index: 2;
}

.header__server .header__server-item-position {
    width: 200px; /* Full width of the container */
	    justify-content: center;
    align-items: center;
	
}

.header__server .header__server-item {
      width: 200px;
    border-radius: 15px;
		margin-top:110px;
    margin-left:-130px;
    justify-content: center;
    align-items: center;
    transition: background-color .3s ease-in-out;
}

}
.header__server2 {
    width: calc((100% - 24px) / 2);
    max-width: 1000px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 24px;
    top: 120px;
    z-index: 9999;
    position: fixed;
    left: 0; /* Stick to the left side */
}

.header__server2 .header__server-item-position {
    width: calc((65% - 24px) / 2);
    position: relative;
    z-index: 1;
    justify-content: flex-start;
}

.header__server2 .header__server-item {
    width: 89%;
    padding: 16px 18px 14px;
    background-color: rgba(31, 21, 16, .8);
    border-radius: 5px;
    border: 1px solid #a5742f;
    overflow: hidden;
    cursor: pointer;
    transition: all .3s ease-in-out;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px;
    transition: background-color .3s ease-in-out;
}

.header__server2 .header__server-item-icon {
    width: 46px;
    height: 52px;
    aspect-ratio: 1 / 1;
    position: relative;
    align-items: left;
}

.header__server2 .header__server-item-description {
    flex-grow: 1;
    overflow: hidden;
}

.header__server2 .header__server-item-name {
    font-family: var(--primary-font);
    font-size: 18px;
    line-height: 1em;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    display: block;
    justify-content: flex-start;
    align-items: left;
    flex-wrap: wrap;
    row-gap: 5px;
    column-gap: 10px;
}

.header__server2 .header__server-item-text {
    font-family: 'AdelonBook';
    font-size: 14px;
    font-weight: normal;
    line-height: 1;
    color: #fff;
    margin-top: 5px;
    align-items: left;
}

.header__server2 .header__server-item-name-online {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 5px;
    gap: 5px;
}

.header__server2 .header__server-item-name-online img {
    margin-right: 10px;
    vertical-align: middle;
}

.header__server2 .header__server-item-name-online span {
    align-items: center;
    margin-top: 8px;
}

@media (max-width: 768px) {
    .header__server2 {
        position: absolute;
        margin-top: 65px;
    }
    .header__server2-container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100vh;
    }
    .header__server2 {
        display: flex;
        align-items: center;
        z-index: 2;
    }
    .header__server2 .header__server-item-position {
        width: 200px;
        justify-content: center;
        align-items: center;
    }
    .header__server2 .header__server-item {
        width: 200px;
        border-radius: 15px;
        margin-top: 110px;
        margin-right: -130px;
        justify-content: center;
        align-items: center;
        transition: background-color .3s ease-in-out;
    }
}

	
#hero-section {
    background-image: url('../img/bgtop.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh; /* Ensures full screen height without forcing excessive scrolling */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    position: relative;
}


#hero-section::after {
    content: ""; /* Create the pseudo-element */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust the overlay color and opacity */
    z-index: 1; /* Ensure the overlay is above the background image */
}

#hero-section::before {
    content: "";
    background-image: url('../img/bgtop.jpg'); /* Background image */
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* Ensure the background image is below the overlay */
}

.mobile-heading {
    display: none; /* Initially hide the mobile heading */
}

/* Media query for mobile screens */
@media screen and (max-width: 767px) {
    .desktop-heading {
        display: none; /* Hide the desktop heading on mobile screens */
    }
    .mobile-heading {
        display: block; /* Display the mobile heading on mobile screens */
    }
}

#hero-section h2 {
font-family: 'AdelonBook';
    font-size: 30px;
    z-index: 2;
    color: #fff;
	margin: 0 auto;
	font-weight: 300;

}

#hero-section p {
     z-index: 2;
     max-width: 650px;
     color: #fff;
}

.forumwrapper {
    display: flex; /* Use flexbox layout */
    gap: 20px; /* Adjust gap between cards as needed */
    justify-content: center; /* Center the items horizontally */
    flex-wrap: wrap; /* Allow wrapping to new lines if needed */
}

.forumcontainer {
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    max-width: 200px;
    height: 250px;
    background-color: rgba(17, 25, 40, 0.25);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.125);  
    padding: 20px 20px 38px;  /* Adjusted padding: top padding is for the space between the title and paragraph */
    filter: drop-shadow(0 30px 10px rgba(0,0,0,0.125));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Changed to flex-start to align items to the top */
    text-align: center;
    position: relative; /* Make the container relative for absolute positioning of the title */
    z-index: 2;
    margin: 10px; /* Optional: margin around each card */
	bottom:-30px;
}


.forumcontainer h1 {
    font-family: 'AdelonBook';
    color: #f6a83a;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 400;
	width:220px;
    margin-top: 0;
    position: absolute; /* Position the title absolutely */
    top: 20px; /* Adjust this value as needed */
    left: 50%; /* Center horizontally */
    transform: translateX(-50%); /* Center horizontally */
    z-index: 1; /* Ensure it sits above other content */
}

.forumcontainer p {
    color: #fff;
    font-family: 'AdelonBook';
    text-align: center;
    font-size: 0.8rem;
    line-height: 120%;
    letter-spacing: 1px;
    margin-top: 80px; /* Ensure the paragraph starts below the title */
    flex: 1; /* Allow the paragraph to take up remaining space */
}

/* Tablet Screens (768px - 1024px) */
@media screen and (max-width: 1024px) {
    .forumcontainer {
        max-width: 180px; /* Slightly smaller card size */
        height: 230px; /* Reduce height */
        padding: 15px 15px 30px; /* Adjust padding */
    }
	
	.forumcontainer h1 {
		font-size:15px;
	}
	
	.forumcontainer p {
		font-size:0.7rem;
	}
}


.date-wrapper {
    bottom: 65px; /* Adjust this value to move the date up/down */
    position: absolute; /* Position the date absolutely */	
    margin-top: auto; /* Push date to the bottom */
}

.button-wrapper {
    bottom: 15px; /* Adjust this value to move the date up/down */
    position: absolute; /* Position the date absolutely */	
    margin-top: 10px;
}

.btn {
    border: none;
    padding: 8px 20px;
    border-radius: 12px;
    font-size: 12px;
    letter-spacing: 2px;  
    cursor: pointer;
}

.btn + .btn {
    margin-left: 10px;
}

.outline {
    background: transparent;
    color: #db9635;
    border: 1px solid #c1c1c1;
    transition: all .3s ease;
}

.outline:hover {
    transform: scale(1.125);
    color: rgba(255, 255, 255, 0.9);
    border-color: #a5742f;
    transition: all .3s ease;  
}

.fill {
    background: rgba(0, 212, 255, 0.9);
    color: rgba(255,255,255,0.95);
    filter: drop-shadow(0);
    font-weight: bold;
    transition: all .3s ease; 
}

.fill:hover {
    transform: scale(1.125);  
    border-color: rgba(255, 255, 255, 0.9);
    filter: drop-shadow(0 10px 5px rgba(0,0,0,0.125));
    transition: all .3s ease;    
}


.cta-button {
    padding: 20px 20px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: .2s;
    font-size: 15px;
	text-align:center;
    text-transform: uppercase;
	text-shadow: 0 0 10px rgba(0,0,0,.8);
	align-items: center;
	display:flex;
}

.cta-button:hover {
    filter: brightness(110%);

	text-shadow: 0 0 10px rgba(0,0,0,.8);
}

@media screen and (max-width: 1024px) {
	.cta-button {
		padding: 10px 10px;
		font-size:10px;
	}
}

.cta-divider {
    display: inline-block;
    width: 1px; /* Adjust the width of the divider */
    height: 45px; /* Adjust the height of the divider */
    background-color: #977e48; /* Adjust the color of the divider */
    margin: 0 5px; /* Adjust the spacing around the divider */
	opacity:0.3;
}

.cta-button2 {
    display: inline-block;
    padding: 18px 36px;
    background: url(../img/icons/button.png) no-repeat 50%/100% auto;
    color: #fff;
	width: 254px;
	height: 72px; /* Adjust the height to match the button */
    text-decoration: none;
    transition: .2s;
	font-family: 'AdelonBook';
    font-size: 28px;
    border: none;
    outline: none;
    cursor: pointer;
    margin-top: 60px;
    text-shadow: 0 0 10px rgba(0,0,0, 0.8);
    z-index: 999;
	filter: brightness(95%);
	line-height: 72px; /* Adjust this value as needed to move the text lower */
    text-align: center; /* Ensure text is centered */
    vertical-align: bottom; /* Align text vertically at the bottom */
}

.cta-button2:hover {
    filter: brightness(110%);
}


/* Define a keyframe animation for rotation */
@keyframes rotateImages {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.image-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px; /* Adjust the gap between images */
    position: relative; /* Establishes the positioning context */
    z-index: 9998; /* Set a high z-index value */
}

.image-wrapper {
    text-align: center;

}

.image-wrapper img {
    max-width: 100%;
    height: auto;
	animation: rotateImages 10s linear infinite; /* Apply the rotation animation */
}

.image-wrapper:hover img {
    filter: brightness(140%); /* Adjust the brightness level as needed */
	margin-top:-5px;
	 transition: transform 0.8s ease; /* Add a transition property */
}

.image-caption {
    margin-top: 10px; /* Adjust the spacing between image and text */
}

.tooltip-container {
  position: relative;
}

.tooltip {
  visibility: hidden;
  position: absolute;
  background-color: #533a17;
  color: #fff;
  padding: 5px;
  border-radius: 5px;
  border: 1px solid #a5742f;
  top:100%;
  cursor:pointer;
  
  z-index: 1;
  align-items:center;
}

.account-icon:hover .tooltip {
  visibility: visible;
}

.feature-card {
    width: 300px;
    background-color: #eaeae8;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.card-image {
    height: 140px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    font-size: 18px;
    color: #4e4e4e;
    text-transform: uppercase;
    height: 0;
}

.card-content h3.extra-details {
    font-size: 14px;
    text-transform: none;
    color: darkgoldenrod;
    margin-right: 15px;
    height: auto;
}

.card-content p {
    color: #a49478;
    font-size: 16px;
}

#vote-section {
    background-image: url('../img/bgvotes.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh; /* Ensures full screen height without forcing excessive scrolling */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    position: relative;
}

#vote-section h1 {
    font-size: 18px;
    color: #fff;
    margin-top: 5px;
	font-weight: bold;
}

#vote-section h2 {
	font-family: 'AdelonBook';
    font-size: 32px;
    color: #fff;
	font-weight: 300;
	margin: 0 auto;
	text-transform: uppercase;
	text-shadow: 0 0 10px rgba(0,0,0,.8);
	z-index: 2;
}
}

#vote-section h3 {
    font-size: 32px;
    margin-bottom: -130px;
    text-transform: uppercase;

}



#vote-section p {
    font-size: 18px;
    color: #fff;
    margin-top: 5px;
	margin-bottom:8px;
}

#download-section {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    text-align: center;
    background-image: url('../img/bgdownload.jpg');
    background-size: cover;
    background-position: center;
}

#download-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Adjust the color and opacity as needed */
    z-index: 0; /* Ensure the overlay is above the background image */
}


	
#download-section .downloadheader {
	font-family: 'AdelonBook';
    font-size: 32px;
    z-index: 2;
    color: #fff;
	font-weight: 300;
	margin: 0 auto;
	text-transform: uppercase;
	text-shadow: 0 0 10px rgba(0,0,0,.8);
}

.blurry-bg-download {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/bgdownload.html');
    background-size: cover;
    filter: blur(5px); /* Add the blur filter to the background image */
    opacity: 1; /* Adjust the opacity as needed */
    z-index: -1; /* Place the blurry background behind the content */
}

.margin-top {
	margin-top:120px;
}

.text-light {
    font-family: 'AdelonBook';
	    font-weight: normal;
    font-style: normal;
}

#download-section h2 {
	font-family: 'Supernatural_Knight';
    font-size: 32px;
    margin: 0 auto;
    color: #fff;
    text-transform: uppercase;
	text-shadow: 0 0 10px rgba(0,0,0,.8);
	z-index:2;
}

#download-section p {
    font-size: 18px;
    color: #fff;
    margin-top: 5px;
}

.menuicon {
	margin-bottom:-5px;
}

/* Progress Bars */

.containerdownload {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top:20px;
  	z-index:1;
}

.hero-chart {
    max-width: 600px; /* Adjust as needed */
	width:550px;
    margin: 0 50px;
}

.hero {
	margin-top:5px;
    margin-bottom: 15px;
}

.hero-name {
	font-weight: normal;
	font-size:20px;
    margin-bottom: 5px;
	color: #ffffff;
	text-decoration: none;
}

.progress-bar {
    position: relative;
    width: 100%;
    height: 20px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    overflow: hidden;
}

.progress {
    position: relative;
    width: 0; /* Start from 0 width */
    height: 20px;
    background-color: rgba(256, 256, 256, 0.5);
    overflow: hidden; /* Hide overflowing content */
    transition: width 1.5s ease-out; /* Transition for smoother animation */
}

.start-animation .progress {
    width: 100%; /* End at the full width */
}

.progress::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0; /* Start from 0 width */
    height: 100%;
    background: linear-gradient(135deg, #e8c9a2, #cca574, #e8c9a2);
    animation: progressAnimation 1.5s ease-out forwards; /* Animation to fill the progress bar */
}

@keyframes progressAnimation {
    0% {
        width: 0; /* Start from 0 width */
    }
    100% {
        width: 100%; /* End at the full width */
    }
}

/* Download Button Cards */

.dcardcontainer {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.dcardcolumn {
    flex: 1;
    margin-right: 50px;
}

.dcardcolumn:last-child {
    flex: 1;
    margin-right: 0;
}

/* Εναλλακτική Λύση: Προσθήκη margin-bottom στις πρώτες κάρτες κάθε στήλης */
.dcardcolumn .dcard:first-child {
    margin-bottom: 40px; /* Κενό μεταξύ πρώτης και δεύτερης κάρτας σε κάθε στήλη */
}

.dcardcard {
    width: 400px;
    padding: 5px;
    margin-bottom: 20px;
    border-width: 20px; /* Width of the border */
    border-style: solid; /* Style of the border */
    border-image-source: url('../img/icons/download_border.png'); /* Path to your border image */
    border-image-slice: 28; /* Slice value to define the border size */
    background-color: rgba(12, 12, 12, 0.5);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.dcardcard li {
    list-style-type: none;
}

.dcardcard:hover {
    box-shadow: 0 8px 12px 5px rgba(177, 164, 124, 0.2);
}

.dcardcard img {
    margin-top: -30px;
    border-radius: 15px;
    display: block; /* Ensures the image is treated as a block element */
    height: auto; /* Allows the image to scale proportionally */
    filter: brightness(100%); /* Initial state */
    transition: ease-in-out 0.5s; /* Smooth transition for brightness changes */
}

.dcardcard img:hover {
    filter: brightness(110%);
}

.dcardcard img:hover::after {
    transition: ease 0.5s;
}

.downloadtitle {
    font-size: 25px;
    text-transform: uppercase;
    color: #d39134;
}

.dcardcontent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.dcard {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Διορθώσαμε από left σε flex-start */
}

.dcardupdater {
    display: flex;
    margin: 0 auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.dcardleft {
    display: flex;
    align-items: center;
    margin-top: 25px;
}

.dcardleftupdater {
    display: flex;
    align-items: center;
    margin-top: 25px;
}

.text {
    margin-left: 5px; /* Adjust the spacing between the image and text */
	text-align:left;
	margin-top:-22px;
	
}

.text div {
    margin: 1px 0; /* Adjust the spacing between lines */
}


.dcardleft img {
    width: 80px;
    height: 80px;
    margin-right: 5px;
	vertical-align: middle; /* Align the image vertically */

}

.dcardleft p {
    margin: 0;
	text-align:center;
	font-size:18px !important;
}


.dcarddownload-button {
	width:175px;
	margin-top:25px;
    padding: 10px 20px;
    background-color: #533a17;
	margin-bottom: -25px;
    color: #fff;
    border: none;
    border-radius: 5px;
	border: 1px solid #d39134;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dcarddownload-button:hover {
    background-color: #9d671a;
}

.dcarddownload-button:active {
    background-color: #d39134;
}

.dcarddownload-button1 {
	width:300px;
	margin-top:25px;
    padding: 10px 20px;
    background-color: #533a17;
	margin-bottom: -25px;
    color: #fff;
    border: none;
    border-radius: 5px;
	border: 1px solid #d39134;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dcarddownload-button1:hover {
    background-color: #9d671a;
}

.dcarddownload-button1:active {
    background-color: #d39134;
}


#features-section {
    background-image: url('../img/bgfeatures.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh; /* Ensures full screen height without forcing excessive scrolling */
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    text-align: center;
    position: relative;
}

#features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Adjust the color and opacity as needed */
    z-index: 0; /* Ensure the overlay is above the background image */
}

#features-section h2 {
	font-family: 'AdelonBook';
    font-size: 32px;
    z-index: 2;
    color: #fff;
	font-weight: 300;
	margin: 0 auto;
	text-transform: uppercase;
	text-shadow: 0 0 10px rgba(0,0,0,.8);
	margin-bottom:20px;
}

#features-section p {
    font-size: 18px;
    color: #fff;
    margin-top: 5px;
	margin-bottom:8px;
}

/* Tablet Screens (768px - 1024px) */
@media screen and (max-width: 1024px) {
	
	#hero-section {
		height:110vh;
	}
	
	#features-section {
		height:140vh;
	}
	
	.content {
		height:100vh;
	}
	
}

/* features menu */
.sidebar-icons {
	margin-top:15px;
	width:900px;
    display: flex;
    justify-content: space-between;
    align-items: center;
	z-index:2;
	margin-bottom:-5px;
}

.sidebar-icons img{
    width: 107px;
    height: 107px;
    cursor: pointer;
    transition: ease-in-out 0.3s;
}

.sidebar-icons img:hover{
	filter:brightness(120%);
}

.sidebar-icons img:hover:after{
	transition: ease 0.3s;
}

.sidebar {
    width:100%;
	z-index:1;
	align-items: center;
    justify-content: center;
}


.featuresbutton {
	flex-direction: column;
    align-items: center;
    justify-content: center;
	width:155px;
	margin-top:10px;
    padding: 10px 20px;
    background-color: #533a17;
    color: #fff;
    border: none;
    border-radius: 5px;
	border: 1px solid #d39134;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.featuresbutton:hover {
    background-color: #7f5c2b;
}

.featuresbutton:active {
    background-color: #aa7b39;
}

.featuresbutton.active {
    background-color: #aa7b39;
}

.content {
    margin:20px auto; /* Adjust as needed based on sidebar width */
    padding: 20px;
    border-width: 5px; /* Width of the border */
    border-style: solid; /* Style of the border */
    border-image-source: url('../img/icons/download_border.png'); /* Path to your border image */
    border-image-slice: 5; /* Slice value to define the border size */
	background-color: rgba(12, 12, 12, 0.5);
	width:80%;
	height:auto;
	z-index:1;
}

/* Default style (for desktops) */
.responsive-img {
    width: auto; /* or any desired size */
    height: auto;
}

/* Mobile-specific style */
@media (max-width: 600px) {
    .responsive-img {
        content: url('../img/features/generalintro.jpg'); /* Change the image source */
        width: 100%; /* Ensure the image is responsive */
        height: auto;
    }
}

#section1 h2 {
	color:#f6a83a;
}

#section1 li {
	font-size:17px;
}

#section2 h2 {
	color:#f6a83a;
}

#section3 h2 {
	color:#f6a83a;
}

#section4 h2 {
	color:#f6a83a;
}

#section4 li {
	font-size:17px;
}

#section4 .spacemoreinfo {
	margin-top: 32px;
}

#section5 h2 {
	color:#f6a83a;
}

#section6 h2 {
	color:#f6a83a;
}

#section7 h2 {
	color:#f6a83a;
}

#section8 h2 {
	color:#f6a83a;
}
	
.section {
    display: none;
}

.section.active {
    display: block;
}

.section p {
	margin-bottom:-4px;
}

.section h1 {
	margin-top:-5px;
	font-size:18px;
	font-weight:normal;
	margin-bottom:-5px;
}

.section h2 {
	font-size:23px !important;
	margin-bottom:0;
}

#section2 p {
	margin-top:12px !important;
}

.sectionspace {
	margin-top:25px;
}

.mobile-only-paragraph {
    display: none;
}

.tablefeatures {
    margin: 15px 0;
    width: 100%;
    border-collapse: collapse;
    color: #fff;
    opacity: 0; /* Initially hide the table */
    animation: fadeInTable 0.5s ease forwards; /* Apply fadeInTable animation */
}

/* Define keyframes for fadeInTable animation */
@keyframes fadeInTable {
    from {
        opacity: 0;
        transform: translateY(-20px); /* Start slightly above and move down */
    }
    to {
        opacity: 1;
        transform: translateY(0); /* Move to original position */
    }
}

.tablefeatures img {
	margin-top:5px;
}

.tablefeatures th, td {
	font-weight: normal;
    padding: 2px;
    text-align: left;
	border-top: 1px solid #b98f59;
    border-bottom: 1px solid #735b3c;
	background: rgba(115, 91, 60, 0.4);
}

.tablefeatures th {
    text-align: left;
	text-shadow: 1px 1px 2px black;
	background: #b98f59;
}


.tablefeatures tr {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
    transition: background-color 0.3s ease; /* Smooth transition for background color */
	cursor:pointer;
	
}

.tablefeatures tr:nth-child(odd) {
    border: 1px solid #a5742f;
    border-radius: 5px;
    background-color: rgba(156, 112, 49, 0.7) !important;
}

.tablefeatures tr:nth-child(even) {
    border: 1px solid #a5742f;
    border-radius: 5px;
    background-color: rgba(216, 157, 82, 0.3) !important;
}


.tablefeatures tr:hover {
    background-color: rgba(255, 255, 100, 0.6); /* Hover color with higher opacity */
    box-shadow: 0 0 20px rgba(204, 149, 72, 0.5); /* Optional: Increase shadow on hover */
}



.tablefeatures td:first-child {
    width: 36px; /* Adjust the width for the icon column */
    padding-right: 0; /* Remove padding on the right for the icon column */
}

.tablefeatures td:nth-child(2) {
    width: auto; /* Allow the second column to expand */
		text-align:left;
		padding-left:0;
}
.tablefeatures td:nth-child(3) {
    width:36px; /* Allow the second column to expand */
	text-align:right;
		padding-right:20px;
}

.tablefeatures td:nth-child(4) {
    width: 36px; /* Adjust the width for the icon column */
    padding-right: 0; /* Remove padding on the right for the icon column */
	text-align:left;
}

.tablefeatures td:nth-child(5) {
    width: auto; /* Adjust the width for the icon column */
	text-align:left;
}

.tablefeatures td:nth-child(6) {
    width: auto; /* Adjust the width for the icon column */
	text-align:right;
		padding-right:20px;
}

.tablefeatures td:nth-child(7) {
    width: 36px; /* Adjust the width for the icon column */
    padding-right: 0; /* Remove padding on the right for the icon column */
	text-align:left;
}

.tablefeatures td:nth-child(8) {
    width: auto; /* Adjust the width for the icon column */
	text-align:left;
}

.tablefeatures td:nth-child(9) {
    width: auto; /* Adjust the width for the icon column */
	text-align:left;
}

.tablefeatures td:last-child, th:last-child {
    text-align: right;
}

.tablefeatures th:first-child {
    width: 36px; /* Adjust the width for the icon column */
    padding-right: 0; /* Remove padding on the right for the icon column */
}

.tablefeatures th:nth-child(2) {
    width: auto; /* Allow the second column to expand */
		text-align:left;
		padding-left:0;
}
.tablefeatures th:nth-child(3) {
    width:auto; /* Allow the second column to expand */
	text-align:right;
	padding-right:20px;
}

.tablefeatures th:nth-child(6) {
    width:auto; /* Allow the second column to expand */
	text-align:right;
	padding-right:20px;
}

.tableolympiad {
    margin: 15px 0;
    width: 100%;
    border-collapse: collapse;
    color: #fff;
    opacity: 0; /* Initially hide the table */
    animation: fadeInTable 0.5s ease forwards; /* Apply fadeInTable animation */
}

/* Define keyframes for fadeInTable animation */
@keyframes fadeInTable {
    from {
        opacity: 0;
        transform: translateY(-20px); /* Start slightly above and move down */
    }
    to {
        opacity: 1;
        transform: translateY(0); /* Move to original position */
    }
}

.tableolympiad img {
	margin-top:5px;
}

.tableolympiad th, td {
	font-weight: normal;
    padding: 2px;
    text-align: left;
	border-top: 1px solid #b98f59;
    border-bottom: 1px solid #735b3c;
	background: rgba(115, 91, 60, 0.4);
}

.tableolympiad th {
    text-align: left;
	text-shadow: 1px 1px 2px black;
	background: #b98f59;
}


.tableolympiad tr {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
    transition: background-color 0.3s ease; /* Smooth transition for background color */
	cursor:pointer;
	
}

.tableolympiad tr:nth-child(odd) {
    border: 1px solid #a5742f;
    border-radius: 5px;
    background-color: rgba(156, 112, 49, 0.7) !important;
}

.tableolympiad tr:nth-child(even) {
    border: 1px solid #a5742f;
    border-radius: 5px;
    background-color: rgba(216, 157, 82, 0.3) !important;
}


.tableolympiad tr:hover {
    background-color: rgba(255, 255, 100, 0.6); /* Hover color with higher opacity */
    box-shadow: 0 0 20px rgba(204, 149, 72, 0.5); /* Optional: Increase shadow on hover */
}


.tableolympiad td:first-child {
    width: auto; /* Adjust the width for the icon column */
    padding-right: 0; /* Remove padding on the right for the icon column */
}

.tableolympiad td:nth-child(2) {
    width: auto; /* Allow the second column to expand */
		text-align:left;
		padding-left:0;
}
.tableolympiad td:nth-child(3) {
    width:auto; /* Allow the second column to expand */
	text-align:right;
		padding-right:20px;
}

.tableolympiad td:nth-child(4) {
    width: 36px; /* Adjust the width for the icon column */
    padding-right: 0; /* Remove padding on the right for the icon column */
	text-align:left;
}

.tableolympiad td:nth-child(5) {
    width: auto; /* Adjust the width for the icon column */
	text-align:left;
}

.tableolympiad td:nth-child(6) {
    width: auto; /* Adjust the width for the icon column */
	text-align:right;
		padding-right:20px;
}

.tableolympiad td:nth-child(7) {
    width: 36px; /* Adjust the width for the icon column */
    padding-right: 0; /* Remove padding on the right for the icon column */
	text-align:left;
}

.tableolympiad td:nth-child(8) {
    width: auto; /* Adjust the width for the icon column */
	text-align:left;
}

.tableolympiad td:nth-child(9) {
    width: auto; /* Adjust the width for the icon column */
	text-align:left;
}

.tableolympiad td:last-child, th:last-child {
    text-align: right;
}

.tableolympiad th:first-child {
    width: 36px; /* Adjust the width for the icon column */
    padding-right: 0; /* Remove padding on the right for the icon column */
}

.tableolympiad th:nth-child(2) {
    width: auto; /* Allow the second column to expand */
		text-align:left;
		padding-left:0;
}
.tableolympiad th:nth-child(3) {
    width:auto; /* Allow the second column to expand */
	text-align:right;
	padding-right:20px;
}

.tableolympiad th:nth-child(6) {
    width:auto; /* Allow the second column to expand */
	text-align:right;
	padding-right:20px;
}

.tablemoreinfo {
    margin: 15px 0;
    width: 100%;
    border-collapse: collapse;
    color: #fff;
    opacity: 0; /* Initially hide the table */
    animation: fadeInTable 0.5s ease forwards; /* Apply fadeInTable animation */
}

/* Define keyframes for fadeInTable animation */
@keyframes fadeInTable {
    from {
        opacity: 0;
        transform: translateY(-20px); /* Start slightly above and move down */
    }
    to {
        opacity: 1;
        transform: translateY(0); /* Move to original position */
    }
}

.tablemoreinfo img {
	margin-top:5px;
}

.tablemoreinfo th, td {
	font-weight: normal;
    padding: 2px;
    text-align: left;
	border-top: 1px solid #b98f59;
    border-bottom: 1px solid #735b3c;
	background: rgba(115, 91, 60, 0.4);
}

.tablemoreinfo th {
    text-align: left;
	text-shadow: 1px 1px 2px black;
	background: #b98f59;
}


.tablemoreinfo tr {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
    transition: background-color 0.3s ease; /* Smooth transition for background color */
	cursor:pointer;
	
}

.tablemoreinfo tr:nth-child(odd) {
    border: 1px solid #a5742f;
    border-radius: 5px;
    background-color: rgba(156, 112, 49, 0.7) !important;
}

.tablemoreinfo tr:nth-child(even) {
    border: 1px solid #a5742f;
    border-radius: 5px;
    background-color: rgba(216, 157, 82, 0.3) !important;
}


.tablemoreinfo tr:hover {
    background-color: rgba(255, 255, 100, 0.6); /* Hover color with higher opacity */
    box-shadow: 0 0 20px rgba(204, 149, 72, 0.5); /* Optional: Increase shadow on hover */
}

.tablemoreinfo td:first-child {
    width: 36px; /* Adjust the width for the icon column */
    padding-right: 0; /* Remove padding on the right for the icon column */
}

.tablemoreinfo td:nth-child(2) {
    width: auto; /* Allow the second column to expand */
		text-align:left;
		padding-left:0;
}
.tablemoreinfo td:nth-child(3) {
    width:20%; /* Allow the second column to expand */
	text-align:right;
		padding-right:20px;
}

.tablemoreinfo td:last-child, th:last-child {
    text-align: right;
}

.tablemoreinfo th:first-child {
    width: 36px; /* Adjust the width for the icon column */
    padding-right: 0; /* Remove padding on the right for the icon column */
}

.tablemoreinfo th:nth-child(2) {
    width: auto; /* Allow the second column to expand */
		text-align:left;
		padding-left:0;
}
.tablemoreinfo th:nth-child(3) {
    width:auto; /* Allow the second column to expand */
	text-align:right;
	padding-right:20px;
}


/* Media query for mobile screens */
@media screen and (max-width: 767px) {
    .mobile-only-paragraph {
        display: block; /* Display the element on mobile screens */
        text-align: center; /* Align the content at center */
    }

.tableolympiad th, td {
    padding: 5px;
}
.tableolympiad td:nth-child(2) {
    width:130px; /* Allow the second column to expand */
	padding-left:3px;

}
.tableolympiad td:nth-child(3) {
    width:150px; /* Allow the second column to expand */
	text-align:right;
	padding-right:0;
}
.tableolympiad td:nth-child(5) {

	padding-left:0;
}
.tableolympiad td:nth-child(6) {
    width:150px; /* Allow the second column to expand */
	text-align:right;
	padding-right:0;
}
.tableolympiad th:nth-child(3) {
    width:auto; /* Allow the second column to expand */
	text-align:right;
	padding-right:0;
}
.tableolympiad th:nth-child(6) {
    width:auto; /* Allow the second column to expand */
	text-align:right;
	padding-right:0;
}
}


#rules-section {
    background-image: url('../img/bgrules.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh; /* Ensures full screen height without forcing excessive scrolling */
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    text-align: center;
    position: relative;
}

#rules-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Adjust the color and opacity as needed */
    z-index: 0; /* Ensure the overlay is above the background image */
}

#rules-section .rulesheader {
	font-family: 'AdelonBook';
    font-size: 32px;
    color: #fff;
	font-weight: 300;
	margin: 0 auto;
	text-transform: uppercase;
	text-shadow: 0 0 10px rgba(0,0,0,.8);
	z-index: 2;
}

#rules-section h2 {
	font-family: 'AdelonBook';
    font-size: 32px;
    color: #fff;
	font-weight: 300;
	margin: 0 auto;
	text-transform: uppercase;
	text-shadow: 0 0 10px rgba(0,0,0,.8);
	z-index: 2;
}

#rules-section p {
    font-size: 18px;
    color: #fff;
    margin-top: 5px;
	
}


	
.rules-table {
    width: 80%;
    border-collapse: collapse;
    border-bottom: 1px solid #a5742f !important;
    box-shadow: 0 0 20px rgba(204, 149, 72, 0.2);
    cursor: pointer;
	z-index:2;
	margin-bottom:40px;
}

/* Tablet Screens (768px - 1024px) */
@media screen and (max-width: 1024px) {

	#rules-section {
		height:140vh;
	}
	
	#vote-section {
		height:140vh;
	}
}


.rules-table tr {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
    transition: background-color 0.3s ease; /* Smooth transition for background color */
	
}

.rules-table tr:nth-child(odd) {
    border: 1px solid #a5742f;
    border-radius: 5px;
    background-color: rgba(156, 112, 49, 0.7) !important;
}

.rules-table tr:nth-child(even) {
    border: 1px solid #a5742f;
    border-radius: 5px;
    background-color: rgba(216, 157, 82, 0.3) !important;
}

.rules-table tr:hover {
    background-color: rgba(255, 255, 100, 0.6); /* Hover color with higher opacity */
    box-shadow: 0 0 20px rgba(204, 149, 72, 0.4); /* Optional: Increase shadow on hover */
}

.rules-table td {
    padding: 13px;
    vertical-align: middle;
    text-align: left;
}

.rule-icon img {
    width: 32px;
    height: 32px;
    margin-right: 2px;
}

.rule-text {
    color: #fff;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

/* Media query for mobile devices */
@media screen and (max-width: 768px) {
    #rules-section {
        height: auto; /* Adjust height as needed */
        padding: 20px; /* Add padding for better spacing */
    }

    #rules-section::before {
        background-color: rgba(0, 0, 0, 0.8); /* Darker overlay for better contrast */
    }

    #rules-section .rulesheader {
        font-size: 28px; /* Reduce font size for smaller screens */
		margin-top:-80px;
    }
	
	#download-section {
	margin-top:-80px;
	}
	

	
    #rules-section h2 {
        font-size: 20px; /* Reduce font size for smaller screens */
    }

    #rules-section p {
        font-size: 14px; /* Reduce font size for smaller screens */
    }

    .rules-table {
        width: 100%; /* Full width on smaller screens */
        max-width: 100%; /* Ensure table takes full width */
    }

    .rule-icon img {
        width: 16px; /* Reduce icon size for smaller screens */
        height: 16px; /* Reduce icon size for smaller screens */
        margin-right: 6px; /* Reduce margin for smaller screens */
    }
}

footer {
    background-color: rgba(15, 15, 15, 1);
    color: #fff;
    text-align: center;
    padding: 20px 0; /* Increase the padding to make the footer bigger */
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
}

footer .fa-discord {
	color: #d8943d;
}

footer p {
    font-size: 16px; /* Adjust the font size as needed */
    margin: 0;
}

footer a {
  color: #d8943d;
  text-decoration: none;
  border-radius: 4px;
  font-size: 16px;
  transition: .2s;
  text-transform: uppercase;
}

footer a:hover {
   color: #fdaf4b;
}

.smoke {
    position: absolute;
    left: 0;
    right: 0;
    height: 923px;
    width: 100%;
    background-image: url(../img/smoke.png);
    background-position: left top;
    -webkit-animation: smoke 20s linear infinite;
    animation: smoke 20s ease-in-out infinite;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    z-index: 1;
}

.main_logo {
	margin-bottom: 50px;
    z-index: 999;
}

/* logotype */

.logotype {
	display: block;
    width: 100%;
	margin-top:100px;
	margin-bottom:0;
	max-width: 650px;
	position: relative;
	z-index: 0;
}

.logotype__img {
	display: block;
	max-width: 100%;
}

.logotype__img_hover {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	opacity: 0;
	transition: 0.3s all;
	pointer-events: none;
}

.logotype:hover .logotype__img_hover {
	animation: logotype 0.2s ease forwards;
}


.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 50%); 
    z-index: 1; 
  }


/* Content CSS */
#content-section {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
    padding-bottom: 50px; /* Add padding to avoid content overlap with the fixed footer */
}

#content-section.show {
    opacity: 1;
    visibility: visible;
}


  .header_menu_item a {
    font-size: 16px;
    align-items: center;
	font-style:bold;
	text-transform:uppercase;
    transition: 0.3s all;
    position: relative;
    z-index: 0;
    cursor: pointer;
    vertical-align: -webkit-baseline-middle;
}

.header_menu_item img {
	margin-top:3px;
    margin-right: 8px;
    transition: 0.2s all;
    pointer-events: none;
}

.header_menu_item:hover img {
    animation: navImg 0.3s ease forwards;
}

/* Tablet Screens (768px - 1024px) */
@media screen and (max-width: 1024px) {
    .header_menu_item a {
	font-size:10px;
    }
	
	.header_menu_item img {
		margin-right:0;
	}
	
	.logo {
		max-width:150px;
	}
	

}

.border {
    width: 100%;
    height: 40px;
    background: url(../img/icons/border_line_mobile.png) center center repeat-x;
    margin: -20px auto;
    position: relative;
    z-index: 9;
}

.download-button {
    align-items: center; /* Align items vertically */
    justify-content: center; /* Center the content horizontally */
    padding: 10px 20px; /* Adjust the padding to make the buttons smaller */
    background: url(../img/aden-button.html) no-repeat 50%/100% auto;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: .2s;
    font-size: 24px;
    cursor: pointer;
    text-shadow: 0 0 10px rgba(206,111,0,.8);
    z-index: 999;
    margin-top: 50px;
}

.download-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 50%;
    margin: 0 auto; /* Center the buttons horizontally */
}

.download-button:hover {
    filter: brightness(130%);
}

.download-button span img {
    float: right;
}

.cta-button3 {
    display: inline-block;
    padding: 6px 2px;
    background: url(../img/server-button.html) no-repeat 50%/100% auto;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: .2s;
    font-size: 18px;
    border: none;
    outline: none;
    cursor: pointer;
    z-index: 999;
    width: 200px;
}

.cta-button3:hover {
    filter: brightness(130%);
}

#back-to-top-btn {
	  display: none; /* Hide the button by default */
  position: fixed;
  bottom: 70px;
  right: 30px;
  padding: 13px 5px;
   background: url(../img/icons/social_border.png) no-repeat;

  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  z-index: 99;
  transition: all 0.3s ease-out;
}

#back-to-top-btn:hover{
   filter: brightness(140%);
}

#back-to-top-btn:active {
   filter: brightness(80%);
}

#back-to-top-btn a {
  display: block;
  padding: 11px 14px;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 16px;
  transition: .2s;
  text-transform: uppercase;
}

#back-to-top-btn a:hover {
   filter: brightness(140%);
}



.categories-container {
    display: flex;
  }

  .category-container {
    /* Your existing styles for the category container */
    width: calc(50% - 10px); /* Adjust the width as needed */
    margin-bottom: 20px; /* Add spacing between the categories */
  }

  .category-container h2 {
    /* Your existing styles for the category headings */
    margin-bottom: 10px; /* Add spacing between the heading and content */
  }

  .extra-details {
    margin-left: 15px; /* Add indentation for the extra details */
  }

  .hamburger-icon {
    display: none; /* Hide the hamburger icon by default */
    cursor: pointer;
    margin-left: 10px; /* Adjust the left margin to create space between the logo and the menu icon */
}

  .hamburger-icon:active {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8); /* Add glow effect */
	transition: ease 0.2s;
}

.bar {
    width: 30px;
    height: 3px;
    background-color: #fff;
    margin: 6px 0;
}

/* Styles for the mobile navigation */
.mobile-nav {
    display: none; /* Hide the mobile navigation by default */
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav li {
    margin: 0 auto;
	font-size:15px;
}

.mobile-nav li a {
    color: #fff;
    text-decoration: none;
	margin-left:-10px;
}

@media only screen and (max-width: 1380px) {
    
    nav ul li {
        margin: 15px 0; /* Add spacing between navigation items */
    }
}




.margin-right {
	margin-right: 35px;
}


.containervotes {
  display: flex;
  margin-top: 25px;
  gap: 20px; /* Adds spacing between items */
  flex-wrap: wrap; /* Allows items to wrap to the next line if needed */
  justify-content: center; /* Centers items horizontally on smaller screens */
}

/* Adjust layout for tablet screens */
@media screen and (max-width: 1024px) {
  .containervotes {
    flex-direction: row; /* Maintain horizontal layout */
    justify-content: space-around; /* Spread items evenly */
  }
}

/* Adjust layout for mobile screens */
@media screen and (max-width: 768px) {
  .containervotes {
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items vertically */
    margin-top: 20px; /* Reduce top margin for smaller screens */
  }
}


.votecard {
    width: 200px;
    padding: 20px;
    margin-bottom: 20px;
    border-width: 10px; /* Width of the border */
    border-style: solid; /* Style of the border */
    border-image-source: url('../img/icons/download_border.png'); /* Path to your border image */
    border-image-slice: 28; /* Slice value to define the border size */
	background-color: rgba(12, 12, 12, 0.5);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
	margin-right:50px;
}

.votecard:last-child {
	margin-right:0;
}

.votecard li {
    list-style-type: none;
}

.votecard:hover {
    box-shadow: 0 8px 12px 5px rgba(177, 164, 124, 0.2);
}

.votecard img {
    margin-top: -30px;
	align-items: middle;
    display: block; /* Ensures the image is treated as a block element */
    height: auto; /* Allows the image to scale proportionally */
	filter: brightness(100%); /* Initial state */
    transition: ease-in-out 0.5s; /* Smooth transition for brightness changes */
}

.votecard img:hover {
	filter: brightness(110%);
}

.votecard img:hover::after {
	transition: ease 0.5s;
}

.votetitle {
	font-size:28px;
	text-transform:uppercase;
	color: #d39134;
}

.votebutton {
    display: inline-block;
    padding: 0 22px;
    background: url(../img/icons/button.png) no-repeat 50%/100% auto;
    color: #fff;
	width: 160px;

    text-decoration: none;
    transition: .2s;
	font-family: 'AdelonBook';
    font-size: 20px;
    border: none;
    outline: none;
    cursor: pointer;
   
    text-shadow: 0 0 10px rgba(0,0,0, 0.8);
    z-index: 999;
	filter: brightness(95%);
	line-height: 72px; /* Adjust this value as needed to move the text lower */
    text-align: center; /* Ensure text is centered */
    vertical-align: bottom; /* Align text vertically at the bottom */
}

.votebutton:hover {
    filter: brightness(110%);
}

/* Media Query for Mobile Devices */
@media screen and (max-width: 600px) {
    .containervotes {
        flex-direction: column; /* Stack items vertically on mobile */
        align-items: center; /* Center items */
    }

    .votecard {
        width: 70%; /* Slight padding from edges on mobile */
        max-width: none; /* Remove maximum width */
        margin: 10px 0; /* Margin for spacing between cards */
    }

.votecard img {

	margin: 0 auto;
}

    .votetitle {
        font-size: 22px; /* Adjust font size for smaller screens */
    }


}

.twitch-container {
    width: 720px;
    margin: 0 auto; /* Align center */
    border-width: 10px; /* Width of the border */
    border-style: solid; /* Style of the border */
    border-image-source: url('../img/icons/download_border.png'); /* Path to your border image */
    border-image-slice: 28; /* Slice value to define the border size */
    background-color: rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.9);
    transition: box-shadow 0.3s ease;
	z-index:2;
}

.twitch-container img{
	margin:0 auto;
	margin-bottom:-10px;
}

.twitch-container h2 { 
	font-family: 'AdelonBook' !important;
	font-size:22px !important;
	font-weight:normal;
	text-align:center;
	margin-bottom:5px;
	text-transform: none !important;
}


.twitch-container iframe {
	margin-top:12px;
	margin-bottom:8px;
}


/* Media Query for Mobile Devices */
@media screen and (max-width: 600px) {
	
	
    .twitch-container {
        width: 80%;


    margin: 0 auto; /* Align center */
    border-width: 10px; /* Width of the border */
    border-style: solid; /* Style of the border */
    border-image-source: url('../img/icons/download_border.png'); /* Path to your border image */
    border-image-slice: 28; /* Slice value to define the border size */
    background-color: rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.9);
    transition: box-shadow 0.3s ease;
	z-index:2;
    }

    .twitch-container h2 {
        font-size: 18px !important; /* Adjust font size for smaller screens */
    }

    .twitch-container iframe {
		width:90%;
        margin-top: 8px;
        margin-bottom: 5px;
    }
}

.smoke1 {

	align-items:center;
    background-image: url(../img/smoke.png);
    background-position: left top;
    -webkit-animation: smoke 20s linear infinite;
    animation: smoke 20s ease-in-out infinite;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    z-index: 1;
}

/* Mobile Header Section */
  /* Mobile Styles */
@media only screen and (max-width: 768px) {
	
		#back-to-top-btn a{
		display:none;
	}

	#hero-section {
		height:100%;
	}
	
	#hero-section h2 {
        font-size: 22px; /* Reduce the font size for smaller screens */
		text-align:center;
		margin-bottom:120px;
		
    }

    #hero-section p {
        font-size: 10px !important; /* Reduce the font size for smaller screens */
    }
	
	.logotype {
		width:70%;
		margin:100px auto;
		margin-bottom:-20px;
	}
	
	.image-gallery {
		width:100%;
		flex-direction:row;
		margin-top:20px;
	}
	
	.image-wrapper img {
		width:80%
	}
	
	
	.cta-button2 {
		margin-bottom:35px;
	}

	.cta-divider {
		display:none;
	}
	
    header {
        padding: 10px 0px; /* Reduce the header padding for smaller screens */
        height: 60px; /* Reduce the header height for smaller screens */
		width:100%;
		background-color: rgba(0, 0, 0, 0.9);
    }

.border {
  width: 100%;
  height: 40px;
  background: url(../img/icons/border_line_mobile.png) center center repeat-x;
  margin: -20px auto;
  position: relative;
  z-index: 9;
}

/* Adjust for tablets (screen width 768px - 1024px) */
@media screen and (max-width: 1024px) {
  .border {
    height: 30px; /* Reduce height for smaller screens */
    margin: -15px auto; /* Adjust margin */
    background-size: auto 30px; /* Ensure the background scales appropriately */
  }
}

/* Adjust for mobile screens (screen width less than 768px) */
@media screen and (max-width: 768px) {
  .border {
    height: 20px; /* Further reduce height for mobile */
    margin: -10px auto; /* Adjust margin to fit the reduced height */
    background-size: auto 20px; /* Scale background size */
  }
}


    .logo {
        max-width: 40px; /* Reduce the logo size for smaller screens */
        display: none;
    }

    nav {
        margin-left: 0; /* Center the navigation for smaller screens */
        display: none; /* Hide the main navigation on mobile */
    }



    nav ul li {
        display: block; /* Display navigation items vertically for smaller screens */
        margin: 5px 0; /* Add spacing between navigation items */
    }

    nav ul li a {
        padding: 10px 10px;
    }




    
    .hamburger-icon {
        display: block;
        margin-right: auto;
    }

    /* Show the mobile navigation */
    .mobile-nav {
        display: block;
		background: linear-gradient(140deg, #19140c, #5a3a23, #19140c);
		border-top: 1px solid rgba(109, 99, 78, 1);
		border-bottom: 1px solid rgba(109, 99, 78, 1);
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.8); /* Add a shadow for satin effect */
        padding: 15px;
        position: absolute;
        top: 90px;
        left: 0;
        right: 0;
        text-align: center;
        max-height: 0; /* Set the initial max-height to 0 */
        overflow: hidden; /* Hide the content when max-height is 0 */
        transition: max-height 0.3s ease; /* Add a transition to the max-height property */
        text-transform: uppercase;
      }

    .mobile-nav li {
        margin: 10px 0;
    }
	
	.mobile-nav li img {
		width:46px;
		height:46px;
        margin: 0 10px;
		margin-left:-5px;
    }
	
    /* Hide the mobile navigation when not needed */
    .mobile-nav.hidden {
        display: none;
    }

    .mobile-nav.show {
        max-height: 500px; /* Adjust the max-height to your desired value based on the content */
		
    }
	
	.tooltip-container {
		display:none;
	}

}

	
  /* Mobile - Download Section */
@media only screen and (max-width: 768px) {
	
 #download-section {
        height: 100%;
    }
	
 #download-section h2 {
     font-size:20px;
   }
   
  #download-section p {
     font-size:14px;

   }
   
.containerdownload {
    display: none;
}

.dcardcontainer {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 στήλες */
    grid-template-rows: repeat(2, auto); /* 2 σειρές */
    gap: 20px; /* Κενό μεταξύ στηλών και γραμμών */
    justify-content: center;
    margin-bottom: 30px;
}

/* Προσθήκη margin-bottom στην πρώτη κάρτα της πρώτης στήλης */
.dcardcolumn:first-child .dcard:first-child {
    margin-bottom: 40px; /* Κενό μεταξύ Mirror 1 και Mirror 2 */
}

.dcardcolumn {
    flex-basis: calc(50% - 10px); /* Adjust width for two columns */
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

.dcardcard {
    width: 100%; /* Για να προσαρμόζεται στο grid */
    max-width: 400px; /* Μέγιστο πλάτος */
    padding: 5px;
    border-width: 20px;
    border-style: solid;
    border-image-source: url('../img/icons/download_border.png');
    border-image-slice: 28;
    background-color: rgba(12, 12, 12, 0.5);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.dcardcard img {
    margin-top: -28px;
    display: block;
    width: 100%;
    height: auto;
    filter: brightness(100%);
    transition: ease-in-out 0.5s;
    margin-left: auto;
    margin-right: auto;
}

.downloadtitle {
    font-size: 25px;
    text-transform: uppercase;
    color: #d39134;
    text-align: center;
}

.dcardcontent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.dcard {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dcardleft {
    display: flex;
    align-items: center;
    margin-top: 25px;
}

.text div {
    margin: 1px 0;
}

.dcardleft img {
    width: 80px;
    height: 80px;
    margin-right: 5px;
    vertical-align: middle;
}

.dcardleftupdater img {
    width: 80px;
    height: 80px;
    margin-right: 5px;
    vertical-align: middle;
}

.dcardleft p {
    margin: 0;
    text-align: center;
    font-size: 18px !important;
}


.dcarddownload-button {
    width: 100%; /* Take full width */
    padding: 10px 20px;
    background-color: #533a17;
    margin-top: 25px;
    margin-bottom: -25px;
    color: #fff;
    border: none;
    border-radius: 5px;
	border: 1px solid #d39134;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dcarddownload-button1:hover {
    background-color: #9d671a;
}

.dcarddownload-button1:active {
    background-color: #d39134;
}




}

/* Default styles for both tables */
.table-desktop,
.table-mobile {
    display: none; /* Initially hide both tables */
}

/* Media query for desktop screens */
@media screen and (min-width: 768px) {
    .table-desktop {
        display: table; /* Display the desktop table on desktop screens */
    }
}

/* Media query for mobile screens */
@media screen and (max-width: 767px) {
    .table-mobile {
        display: table; /* Display the mobile table on mobile screens */
    }
}

/* Mobile - Vote Section */
@media only screen and (max-width: 768px) {

 #features-section {
    height: 100%;
	background-image: url('../img/bgfeatures.jpg');
    background-attachment: fixed; /* Keep the background image fixed */
 }

 #features-section h2 {
	font-family: 'AdelonBook';
    font-size: 32px;
    z-index: 2;
    color: #fff;
	font-weight: 300;
	margin: 0 auto;
	text-transform: uppercase;
	text-shadow: 0 0 10px rgba(0,0,0,.8);
	margin-top:-30px;
   }
   
  #features-section p {
    font-size: 18px;
    color: #fff;
    margin-top: 5px;
	margin-bottom:8px;

   }
   
/* features menu */
.sidebar-icons {
	margin-top:25px;
	width:100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
	z-index:1;
	margin-bottom:-5px;
}

.sidebar-icons img{
    width: 54px;
    height: 54px;
    cursor: pointer;
    transition: ease-in-out 0.3s;
	margin:0 auto;
	justify-content: space-between;
}

.sidebar-icons img:hover{
	filter:brightness(120%);
}

.sidebar-icons img:hover:after{
	transition: ease 0.3s;
}

.sidebar {
    width:100%;
	margin:10px auto;
	z-index:1;
	align-items: center;
    justify-content: center;
}

.featuresbutton {
	flex-direction: column;
    align-items: center;
    justify-content: center;
	width:155px;
	margin-top:10px;
    padding: 10px 20px;
    background-color: #533a17;
    color: #fff;
    border: none;
    border-radius: 5px;
	border: 1px solid #d39134;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.featuresbutton:hover {
    background-color: #7f5c2b;
}

.featuresbutton:active {
    background-color: #aa7b39;
}

.featuresbutton.active {
    background-color: #aa7b39;
}



.content {
    margin:15px auto; /* Adjust as needed based on sidebar width */
    border-width: 5px; /* Width of the border */
    border-style: solid; /* Style of the border */
    border-image-source: url('../img/icons/download_border.png'); /* Path to your border image */
    border-image-slice: 5; /* Slice value to define the border size */
	background-color: rgba(12, 12, 12, 0.5);
	width:85%;
	height:100%;
	z-index:1;
	margin-bottom:30px;
}


#section1 {
		margin-top:30px;
}

#section2 {
		margin-top:30px;
}

#section3 {
		margin-top:30px;
}

#section4 {
		margin-top:30px;
}

#section5 {
		margin-top:30px;
}

#section6 {
		margin-top:30px;
}

#section7 {
    margin-top:30px;
}

#section8 {
    margin-top:30px;
}

#section1 h2 {
	font-size: 28px !important;
	color: #f6a83a;
}

#section2 h2 {
	font-size: 28px !important;
	color: #f6a83a;
}

#section3 h2 {
	font-size: 28px !important;
	color: #f6a83a;
}

#section4 h2 {
	font-size: 28px !important;
	color: #f6a83a;
}

#section5 h2 {
	font-size: 28px !important;
	color: #f6a83a;
}

#section6 h2 {
	font-size: 28px !important;
	color: #f6a83a;
}

#section7 h2 {
	font-size: 28px !important;
	color: #f6a83a;
}

#section8 h2 {
	font-size: 28px !important;
	color: #f6a83a;
}

.section {
    display: none;
}

.section.active {
    display: block;
}

.section p {
	margin-bottom:-4px;
}

.section h1 {
	margin-top:-5px;
	font-size:18px;
	font-weight:normal;
	margin-bottom:-5px;
}

.section h2 {
	font-size:16px !important;
	margin-bottom:0;
}



.sectionimg {
	width:80%;
}

#section2 p {
	margin-top:12px !important;
}

.section2 h1 {
	margin-top:-5px;
	font-size:18px;
	font-weight:normal;
	text-align:center;
	margin-bottom:-5px;
}

.sectionspace {
	margin-top:25px;
}

/* General Table Mobile */
table {
    margin: 15px auto;
    width: 100%;
    border-collapse: collapse;
	margin-left:auto;
	margin-right:auto;
    color: #fff;
    opacity: 0; /* Initially hide the table */
    animation: fadeInTable 0.5s ease forwards; /* Apply fadeInTable animation */
}

/* Define keyframes for fadeInTable animation */
@keyframes fadeInTable {
    from {
        opacity: 0;
        transform: translateY(-20px); /* Start slightly above and move down */
    }
    to {
        opacity: 1;
        transform: translateY(0); /* Move to original position */
    }
}

table img {
	margin-top:5px;
}

th, td {
	font-weight: normal;
    padding: 7px;
	font-size:14px;
    text-align: left;
	border-top: 1px solid #b98f59;
    border-bottom: 1px solid #735b3c;
	background: rgba(115, 91, 60, 0.4);
}

th {
    text-align: right;
	text-shadow: 1px 1px 2px black;
	background: #735b3c;
}

tr {
    transition: background-color 0.3s; /* Smooth transition for hover effect */
}

/* Define the hover effect */
tr:hover {
    background: linear-gradient(135deg, #433523, #433523, #433523); /* Orange to dark orange gradient */
}

td:first-child {
    width: 36px; /* Adjust the width for the icon column */
    padding-right: 0; /* Remove padding on the right for the icon column */
}

td:nth-child(2) {
    width: auto; /* Allow the second column to expand */
		text-align:left;
		padding-left:0;
}
td:nth-child(3) {
    width:auto; /* Allow the second column to expand */
	text-align:right;

	
}

td:nth-child(4) {
    width: 36px; /* Adjust the width for the icon column */
    padding-right: 0; /* Remove padding on the right for the icon column */
	text-align:left;
}

td:nth-child(5) {
    width: auto; /* Adjust the width for the icon column */

	text-align:left;
}

td:last-child, th:last-child {
    text-align: right;
}



/* Mobile - Vote Section */
@media only screen and (max-width: 768px) {
	
	#vote-section {
	height:100%;
	background-attachment: fixed; /* Keep the background image fixed */
	background-position: 970px center;
	}

	#vote-section h2 {
	margin-top:20px;
	 font-size: 28px;
	}

	#vote-section p {
	 font-size: 14px;
	}




.buttondiscord-mobile {

  display: inline-block;
  padding: 10px 20px;
  width:100px;
  background-color: #998773;
  color: #fff;
  font-size:16px;
  text-shadow: 1px 1px 2px black;
  text-decoration: none;
  border-radius: 5px;
  transition: .5s;
}


.buttondiscord-mobile:hover {
	transition: .5s;
	background-color:#c9b094;
}

.buttondiscord-mobile:active {
	background-color: #b98f59;
	transition: .5s;
}

}



