/* fonts */
/* -------------------------------------------------------------------------------------------------------------------- */
@font-face {
    font-family: DIN Next W1G Regular;
    src: url("../fonts/DINNextW1G_Regular.eot");
    src: local("☺"), url("../../assets/fonts/DINNextW1G_Regular.woff") format("woff"), url("../fonts/DINNextW1G_Regular.ttf") format("truetype"), url("../../assets/fonts/DINNextW1G_Regular.svg") format("svg");
    font-weight: normal;
    font-style: normal; }
  
  @font-face {
    font-family: DIN Next W1G Medium;
    src: url("../fonts/DINNextW1G_Medium.eot");
    src: local("☺"), url("../../assets/fonts/DINNextW1G_Medium.woff") format("woff"), url("../fonts/DINNextW1G_Medium.ttf") format("truetype"), url("../../assets/fonts/DINNextW1G_Medium.svg") format("svg");
    font-weight: normal;
    font-style: normal; }
  
  @font-face {
    font-family: DIN Next W1G Bold;
    src: url("../fonts/DINNextW1G_Bold.eot");
    src: local("☺"), url("../../assets/fonts/DINNextW1G_Bold.woff") format("woff"), url("../fonts/DINNextW1G_Bold.ttf") format("truetype"), url("../../assets/fonts/DINNextW1G_Bold.svg") format("svg");
    font-weight: normal;
    font-style: normal; }

/* Resetting default browser styles */
body, html {
    margin: 0;
    padding: 0;
    height: 100%; /* Ensuring the body takes the full height of the viewport */
    font-family: DIN Next W1G Medium;
    overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #73c4fc;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Styling for the navigation bar */
.navbar {
    position: fixed; /* Positions the navbar over the hero section */
    top: 0; /* Aligns the navbar to the top of the viewport */
    width: 100%; /* Ensures the navbar spans the full width */
    display: flex; /* Aligns children elements in a row */
    justify-content: space-between; /* Distributes children elements with space between */
    padding: 1rem; /* Adds padding around the navbar content */
    background: rgb(30 30 30);
    align-items: center;
    padding: 10px 20px;
    z-index: 9999;
    animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

/* Styling for the navigation list */
.nav-list {
    list-style: none; /* Removes default list styles */
    display: flex; /* Aligns list items in a row */
    align-items: center; /* Vertically centers list items */
    margin: 0;
    padding: 0;
    animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

.nav-list li {
    padding: 0 15px;
    animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    
}

/* Styling for each navigation item */
.nav-item {
    display: flex; /* Allows for flexible box layouts */
    align-items: center; /* Vertically centers content within the nav item */
    padding: 0 15px; /* Adds horizontal padding for spacing */
    text-decoration: none; /* Removes underline from links */
    color: white; /* Sets the text color to white */
    transition: .2s;
    font-size: 18px;
}

.nav-item:hover {
    transform: scale(1.1);
}

/* Before pseudo-element for icons in the navigation */
.nav-item::before {
    content: ''; /* Necessary for pseudo-elements to display */
    display: block; /* Allows width and height to be set */
    margin-right: 10px; /* Space between icon and text */
    background-size: contain; /* Ensures the icon image is fully contained within the element */
    width: 20px; /* Width of the icon */
    height: 20px; /* Height of the icon */
}

/* Specific icons for each nav item */
.home::before { 
    background-image: url('../../assets/images/icons/nav1.png'); 
}.features::before {     background-image: url('../../assets/images/icons/nav2.png'); }
.files::before {
    background-image: url('../../assets/images/icons/nav3.png'); 
}.products::before {    background-image: url('../../assets/images/icons/nav4.png'); }.contact::before {    background-image: url('../../assets/images/icons/feature_icon4.png'); }
/* Add additional nav items with specific icons here */

/* Styling for the authentication links (Sign up, Log in) */
.auth {
    display: flex; /* Aligns auth items in a row */
    align-items: center; /* Vertically centers the auth items */
    margin-left: 15rem;
}

/* Styling for the 'or' text between sign up and log in buttons */
.or {
    color: #fff; /* Sets a gray color for the text */
    margin: 0 5px; /* Adds margin around the text */
    font-size: 24px;
}

/* Full-height hero section */
.hero-section {
    position: relative; /* Allows absolute positioning within the hero section */
    width: 100%; /* Full width */
    height: 100vh; /* Full viewport height */
    display: flex; /* Creates a flex container */
    align-items: center; /* Centers content vertically */
    justify-content: center; /* Centers content horizontally */
    background: url('../../assets/images/bg/bg.jpg') no-repeat center center; /* Background image for the hero section */
    background-size: cover; /* Ensures the background covers the entire hero section */
}

.hero-content {
    position: relative; /* Aligns the logo and server selection within the hero section */
    text-align: center; /* Centers content horizontally */
    /* Your existing styling for hero content */
}

.hero-header {
    font-size: 32px;
    color: white;
    text-transform: uppercase;
    animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    
}

.hero-p {
    max-width: 1000px;
    color: #90bad3;
    animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    
}

.game-logo {
    transition: .2s;
    animation: puff-in-center 0.7s cubic-bezier(0.470, 0.000, 0.745, 0.715) both;
}

.game-logo:hover{
    transform: scale(1.1);
    cursor: pointer;
}

.server-selection {
    display: flex;
    justify-content: center; /* Aligns servers horizontally in the center */
    gap: 2rem;
}

.server {
    position: relative; /* Needed for absolute positioning of the 'status' */
    width: 200px; /* Replace with actual width of server blocks */
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    border: 1px solid #fff; /* White border around server blocks */
    border-radius: 10px; /* Rounded corners */
    transition: .2s;
}

.server:hover {
    transform: scale(1.03);
}

.server .server-title {
    color: #fff; /* White text for server title */
    font-weight: bold; /* Bold font for emphasis */
    display: block; /* Block display for titles */
}

.server .server-img {
    width: 100px;
    filter: brightness(6);
}

.server .status {
    position: absolute;
    top: -10px; /* Adjust as necessary */
    right: -10px; /* Adjust as necessary */
    background-color: #f00; /* Red background for 'NEW' status */
    color: #fff; /* White text */
    padding: 5px;
    border-radius: 5px; /* Rounded corners for the status label */
}

.server .online-count {
    color: #0f0; /* Green text for online count */
    /* Additional styling as needed */
}

.server.server-offline .online-count {
    color: #f00; /* Red text for offline status */
}

/* Logo styling within the hero section */
.logo {
    max-width: 300px; /* Sets a maximum width for the logo */
    margin-right: 30rem;
}

.logo img {
    height: 80px;
    transition: .2s;
}

.logo img:hover {
    transform: scale(1.1);
    cursor: pointer;
}

.cta-button2 {
    display: inline-block;
    padding: 18px 36px;
    background: url(../../assets/images/buttons/button.png) no-repeat 50% / 100% auto;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: .2s;
    font-size: 18px;
    text-align: center;
    border: none;
    outline: none;
    cursor: pointer;
    text-shadow: 0 0 10px rgba(0,0,0, 0.8);
    z-index: 999;
    filter: brightness(95%);
    animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

.cta-button2:hover {
    filter: brightness(110%);
}

.cta-button3 {
    display: inline-block;
    padding: 18px 36px;
    background: url(../../assets/images/buttons/button.png) no-repeat 50% / 100% auto;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: .2s;
    font-size: 24px;
    border: none;
    text-transform: uppercase;
    outline: none;
    width: 200px;
    cursor: pointer;
    text-shadow: 0 0 10px rgba(0,0,0, 0.8);
    z-index: 999;
    animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

.cta-button3:hover {
    filter: brightness(110%);
}

.features-section {
    background: url('../../assets/images/bg2.jpg');
    background-size: cover;
    background-position: bottom;
    height: 100vh;
    display: flex; /* Creates a flex container */
    flex-direction: column; /* Aligns items vertically */
    align-items: center; /* Centers content horizontally */
    justify-content: center; /* Centers content vertically */
    position: relative; /* Allows absolute positioning within the hero section */
}

.features-header {
    font-size: 2em;
    margin-bottom: 10px;
    color: white;
}

.feature-columns-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Centers content horizontally */
    max-width: 1400px; /* Limits the width of the container */
    width: 100%; /* Ensures the container takes up full width */
}

.feature-column {
    background-color: rgba(0, 0, 0, 0.6); /* Adds background color with transparency */
    margin: 10px;
    border-radius: 5px;
    flex: 1 1 calc(25% - 20px); /* Makes columns responsive */
    max-width: calc(25% - 20px); /* Limits the maximum width */
    box-sizing: border-box; /* Includes padding and border in element's total width and height */
    padding: 20px; /* Adds padding inside the column */
    color: white; /* Ensures text is white */
}

.feature-column-img {
    display: block; 
    max-width: 200px; 
    height: auto; 
    margin: 0 auto;
    animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

.feature-column h2 {
    background-color: #73c4fc;
    margin: -20px -20px 20px -20px;
    padding: 10px;
    text-align: center;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.feature-column ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.feature-column ul li {
    padding: 10px;
    border-bottom: 1px solid #444;
    font-size: 0.9em;
    position: relative;
    color: white;
    font-size: 18px;
}

.feature-column ul li span {
    font-weight: bold;
    float: right;
    color: #a9d0e7;
}

/* Clear floats after the columns */
.features-section::after {
    content: "";
    display: table;
    clear: both;
}

.border {
    width: 100%;
    height: 44px;
    background: url(../../assets/images/bg/border_line.png) center center repeat-x;
    margin: -16px auto;
    position: relative;
    z-index: 9;
}

.community-section {
    background-image: url('../../assets/images/bg3.jpg');
    background-size: cover;
    background-position: center;
    padding: 40px;
    text-align: center;
    height: 100vh;
    position: relative;
    z-index: 1; /* Ensure the section is above the blurred background */
}

#back-to-top-btn {
    position: fixed;
    bottom: 70px;
    right: 30px;
    display: none;
    z-index: 99;
  }
  
  #back-to-top-btn a {
    display: block;
    padding: 10px 15px;
    background: url(../../assets/images/buttons/button.png) no-repeat 50%/100% auto;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    transition: .2s;
    text-transform: uppercase;
  }
  
  #back-to-top-btn a:hover {
     filter: brightness(130%);
  }

  footer {
    background-color: rgb(30 30 30);
    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 p {
    font-size: 16px; /* Adjust the font size as needed */
    margin: 0;
    animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    
}

.copyright {
    color: #a9d0e7;
    text-decoration: none;
    animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    
}

.container-bar {
    width: 100%;
    max-width: 90px;
    position: fixed;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: grid;
    animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    
} 
  
.container-bar a {
    width: 50px;
    height: 50px;
    line-height: 20px;
    text-align: center;
    text-decoration: none;
    font-size: 20px;
    position: relative;
    transition: all 500ms ease;
    color: #3b5998;
    z-index: 100;
    opacity: 0.5;
}

.container-bar a:hover {
    transform: scale(1.2);
    opacity: 1;
}

.container-bar a::before {
    content: attr(data-title);
    position: absolute;
    left: 50%;
    transform: translateX(70px);
    background: #ffffff;
    padding: 0 8px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 3px;
    font-size: 12px;
    opacity: 0;
    width: 130px;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.container-bar a:hover::before {
    opacity: 1;
    visibility: visible;
}

i.fa-brands{
    color: white;
}

@media only screen and (max-width: 1700px) {
    .cta-button2 {
        font-size: 16px;
        width: 100px;
    }

    .auth {
        align-items: center;
        margin-left: 20rem;
    }

    .logo {
        margin-right: 15rem;
    }

}

@media only screen and (max-width: 1600px) {
    .cta-button2 {
        font-size: 14px;
        width: 100px;
    }

    .auth {
        align-items: center;
        margin-left: 15rem;
    }

    .logo {
        margin-right: 10rem;
    }

}

@media only screen and (max-width: 1400px) {
    .cta-button2 {
        font-size: 14px;
    }

    .auth {
        align-items: center;
        margin-left: 10rem;
    }

    .logo {
        margin-right: 5rem;
    }

}

@media only screen and (max-width: 1200px) {
    .cta-button2 {
        font-size: 14px;
        width: 100px;
    }

    .auth {
        align-items: center;
        margin-left: 5rem;
    }

    .logo {
        margin-right: 2rem;
    }

}

/* Mobile Styles */
@media only screen and (max-width: 768px) {
    .navbar {
        flex-direction: column; /* Change the direction to column to stack logo and menu */
        align-items: stretch; /* Stretch navbar items to take full width */
        padding: 0; /* Remove padding to allow full width usage */
        background-color: rgb(26 26 26);
    }

    .logo {
        order: 0; /* Logo comes first when the column direction is set */
        width: 100%; /* Full width to center logo */
        display: flex;
        justify-content: center; /* Center the logo horizontally */
    }

    .logo img {
        margin-left: 3rem;
    }

    .hero-header {
        font-size: 16px;
    }

    .game-logo {
        max-width: 300px;
    }

    .hero-p {
        font-size: 12px;
    }

    .download-section {
        height: 100%;
    }
	
	.shop-section {
        height: 100%;
    }

    .cards-container ul {
        display: flex;
        flex-direction: column; /* Stack the cards vertically */
        gap: 20px; /* Add some spacing between cards */
    }

    .feature-card {
        width: 100%; /* Make the cards take full width of the container */
    } 

    .features-section {
        flex-direction: column;
        height: auto;
    }
	
	.feature-columns-container {
        display: block; /* Change to block display */
    }
    
    .feature-column {
       max-width: 1000px;
    }

    .download-buttons {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .hamburger {
        display: flex!important; /* Ensuring the hamburger menu is always visible in mobile view */
        order: 1; /* Position the hamburger menu above the logo */
        margin: 0.5rem; /* Add some margin around the hamburger for better accessibility */
        align-self: flex-end; /* Align the hamburger to the right of the navbar */
    }

    .nav-list {
        display: none; /* Initially hide the navigation list */
        flex-direction: column; /* Stack the navigation links vertically */
        width: 100%; /* Navigation list takes up the full width */
        order: 2; /* Ensures navigation links come after the logo */
        margin: 0; /* Remove any margins */
    }

    .nav-list li {
        text-align: center; /* Center align the text of each link */
        padding: 10px 0; /* Add padding for better tap targets */
    }

    .auth {
        align-items: center;
        margin: 0;
    }

    .nav-list.active {
        display: flex;
    }
}

/* Media query for screen heights below 800px */
@media (max-height: 800px) {
    .download-section {
        height: 1000px!important; /* Adjust this value as needed to increase the height */
    }
}

 .download-section {
    background-image: url(../../assets/images/bg2.jpg);
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    text-align: center;
    position: relative;
	justify-content: center;
}

.download-section h2 {
    font-size: 32px;
    margin: 50px;
    color: white;
    text-transform: uppercase;
    animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    
}

.download-section p {
    font-size: 18px;
    color: #90bad3;
    animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    
}

.items-container {
    text-align: center;
    width: 95vw;
    overflow-x: auto; /* Enables horizontal scrolling */
    overflow-y: hidden; /* Disables vertical scrolling */
    white-space: nowrap; /* Prevents line breaks */
    margin: 0 auto;
    margin-top: 20px;
    max-height: 2700px; /* Adjust the height as necessary based on your item height */
}

.items2-container {
    text-align: center;
    width: calc(100% - 80px); /* Adjusted to account for arrow buttons */
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    white-space: nowrap; /* Prevents line breaks */
    margin: 0 auto;
    margin-top: 20px;
    max-height: 2700px; /* Adjust the height as necessary based on your item height */   
}

.item {
    display: inline-block; /* Ensures items are in a horizontal line */
    position: relative;
    margin-top: 25px;
    margin-bottom: 10px;
    margin-left: 40px;
    margin-right: 20px;
    width: 300px;
    height: 500px;
    border-radius: 3px;
    box-shadow: 3px 4px 12px 1px rgba(0,0,0,0.8);
}

/* Customize scrollbar */
.items-container::-webkit-scrollbar {
    height: 8px; /* Adjust the height of the horizontal scrollbar */
}

.items-container::-webkit-scrollbar-thumb {
    background: #888; /* Color of the scrollbar thumb */
    border-radius: 4px; /* Rounds the corners of the scrollbar thumb */
}

.items-container::-webkit-scrollbar-thumb:hover {
    background: #555; /* Color of the scrollbar thumb on hover */
}

.items-container::-webkit-scrollbar-track {
    background: #f1f1f1; /* Color of the scrollbar track */
}

.slider-container {
    position: relative;
    width: 80%;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.diamond-container {
    position: absolute;
    margin-top: -20px;
    margin-left: -20px;
    transition: all 0.3s ease-out;
}

.diamond {
    margin-left: 10px;
    margin-top: 10px;
    width: 60px;
    height: 60px;
    background: #73c4fc;
    overflow: hidden;
    color: #fff;
    font-weight: 500;
    font-size: 1.25em;
    letter-spacing: -0.5px;
    transform: rotate(45deg);
    transition: all 0.3s ease-out;
}

.diamond-wrapper {
    margin-top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.diamond-content {
    transform: rotate(-45deg);
}

.item-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.content-wrapper {
    width: 95%;
    margin: 0 auto;
    margin-top: 20px;
    transition: all 0.3s ease-out;
}

.img-container {
    position: relative;
    width: 100%;
    min-height: 200px;
    margin-top: 80px;
}

.content-text {
    position: relative;
    width: 100%;
    margin-top: 100px;
}

.bg-square {
    position: absolute;
    width: 135px;
    height: 130px;
    border: 12px solid rgba(51, 51, 51, 0.1);
    margin: 0 auto;
    left: 0;
    right: 0;
}

.item-img {
    position: absolute;
    display: block;
    width: 200px;
    height: auto;
    margin: 0 auto;
    margin-top: -50px;
    left: 0;
    right: 0;
    animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    
}

.item-name {
    font-weight: 400;
    font-size: 1.35em;
    text-transform: uppercase;
    text-align: center;
}

.item-subtext-container {
    width: 70%;
    margin: 0 auto;
    margin-top: 10px;
    font-size: 0.8em;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #bbb;
    text-align: center;
}

.item-subtext-container {
    width: 70%;
    margin: 0 auto;
    margin-top: 10px;
    font-size: 0.8em;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #bbb;
    text-align: center;
}

.margin-top {
    margin-top: 120px;
}

.features-section h2 {
    font-size: 32px;
    color: #fff;
    text-transform: uppercase;
	text-shadow: 0 0 10px rgba(0,0,0,.8);
    animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	text-align: center;
    
}

.features-section p {
    font-size: 18px;
    color: #90bad3;
	animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

.features-section a {
    text-decoration: none;
}

.features-section a:hover {
    transform: scale(1.1);
}

.features-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
    justify-content: center;
}

.features-section li {
    margin: 0 10px;
    animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    border: none;
    background: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
}

.margin-top {
    margin-top: 10%;
}

/* Στυλ για την icon-bar */
.icon-bar {
    position: fixed;
    left: 20px; /* Ρύθμιση θέσης */
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
}

/* Στυλ για τη λίστα */
.icon-bar ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.icon-bar ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
}

/* Στυλ για το Vote Links (τίτλος) */
.vote-text {
    font-size: 14px;
    font-weight: bold;
    color: #00FF00; /* Πράσινο */
    font-family: "Poppins", sans-serif;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    background: rgba(0, 51, 0, 0.9);
    padding: 5px 10px;
    border-radius: 4px;
    border: 2px solid rgba(255, 255, 0, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px; /* Απόσταση από το πλαίσιο */
    animation: glow-green 1.5s infinite alternate;
}

/* Στυλ για το πλαίσιο του banner */
.vote-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Κεντράρει τα περιεχόμενα στο κάθετο άξονα */
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 15px; /* Περισσότερο padding για να φαίνεται καλά το πλαίσιο */
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0px 0px 15px rgba(255, 165, 0, 0.6);
    transition: box-shadow 0.3s ease-in-out;
    width: fit-content; /* Κάνει το πλαίσιο να παίρνει το ακριβές μέγεθος του περιεχομένου */
    margin: 0 auto; /* Κεντράρει το πλαίσιο οριζόντια */
}

/* Στυλ για το banner */
.vote-wrapper img {
    display: block; /* Για να μην υπάρχει extra space κάτω από το img */
    max-width: 100%; /* Προσαρμόζει το πλάτος στο container */
    height: auto;
    border-radius: 6px;
    transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
}


/* Hover effect στο banner */
.vote-wrapper img:hover {
    box-shadow: 0px 0px 15px rgba(255, 255, 255, 1);
    transform: scale(1.05);
}

/* Glow effect για το Vote Links */
@keyframes glow-green {
    0% {
        box-shadow: 0px 0px 5px rgba(0, 255, 0, 0.5);
    }
    100% {
        box-shadow: 0px 0px 15px rgba(0, 255, 0, 1);
    }
}


.custom-text {
    position: relative; /* Δεν επηρεάζει άλλα στοιχεία */
    margin-top: 15px; /* Κρατάει απόσταση από το countdown */
    text-align: center; /* Κεντράρισμα του περιεχομένου */
    color: #00C9FF; /* Έντονο γαλάζιο */
    font-size: 14px;
    font-weight: bold;
    font-family: "Poppins", sans-serif;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    background: linear-gradient(to right, rgba(0, 51, 102, 0.9), rgba(0, 0, 0, 0.8)); /* Σκούρο γαλάζιο προς μαύρο */
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid rgba(0, 150, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: glow 1.5s infinite alternate;
    display: inline-block;
    width: auto;
    max-width: 600px; /* Περιορισμός μεγέθους */
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap; /* Αποτρέπει την αναδίπλωση */
    overflow: hidden; /* Κρύβει ό,τι περισσεύει */
    text-overflow: ellipsis; /* Προσθέτει "..." αν το κείμενο είναι πολύ μεγάλο */
}

/* Glow Effect */
@keyframes glow {
  0% {
    box-shadow: 0px 0px 5px rgba(0, 150, 255, 0.5);
  }
  100% {
    box-shadow: 0px 0px 15px rgba(0, 150, 255, 1);
  }
}


.discord-widget {
	position: fixed;
    right: 1%;
    bottom: 1%;
    margin: auto;
    z-index: 99;
	width: 10%;
	transition: .2s;
	border-radius: 12px;
}

.discord-widget:hover {
	transform: scale(1.05);
	cursor: pointer;
}

/* Media query for mobile view */
@media (max-width: 767px) {
  .icon-bar {
    display: none; /* Hide sidebar on smaller screens */
  }
  
	.discord-widget {
	  right: 3%;
	  width: 20%;
  }
  
  .features-section {
	  align-items: center;
  }
}

 .shop-section {
    background-image: url(../../assets/images/bg2.jpg);
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    text-align: center;
    position: relative;
	justify-content: center;
}

.shop-section h2 {
    font-size: 32px;
    margin: 50px;
    color: white;
    text-transform: uppercase;
    animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    
}

.shop-section p {
    font-size: 18px;
    color: #90bad3;
    animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;   
}

.arrow {
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-size: 24px;
    outline: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    color: #777;
    transition: color 0.3s;
}

.left-arrow {
    left: 10px;
}

.right-arrow {
    right: 10px;
}

.arrow:hover {
    color: #333;
}

.custom-text {
    position: relative; /* Δεν επηρεάζει άλλα στοιχεία */
    margin-top: 15px; /* Κρατάει απόσταση από το countdown */
    text-align: center; /* Κεντράρισμα του περιεχομένου */
    color: #00C9FF; /* Έντονο γαλάζιο */
    font-size: 14px;
    font-weight: bold;
    font-family: "Poppins", sans-serif;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    background: linear-gradient(to right, rgba(0, 51, 102, 0.9), rgba(0, 0, 0, 0.8)); /* Σκούρο γαλάζιο προς μαύρο */
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid rgba(0, 150, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: glow 1.5s infinite alternate;
    display: inline-block;
    width: auto;
    max-width: 600px; /* Περιορισμός μεγέθους */
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap; /* Αποτρέπει την αναδίπλωση */
    overflow: hidden; /* Κρύβει ό,τι περισσεύει */
    text-overflow: ellipsis; /* Προσθέτει "..." αν το κείμενο είναι πολύ μεγάλο */
}

