@font-face {
    font-family: 'BOR';
    src: url('../font/bor.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow: auto;
	min-height: 100vh; /* Ensures the height covers the full viewport */

}

/* Customize the scrollbar */
::-webkit-scrollbar {
    width: 12px; /* Width of the scrollbar */
    height: 12px; /* Height of the scrollbar for horizontal scroll */
}

::-webkit-scrollbar-track {
    background: rgba(255, 145, 48, 0.8); /* Background of the track */
    border-radius: 10px; /* Rounded corners for the track */
}

::-webkit-scrollbar-thumb {
    background: #9b806b; /* Color of the scrollbar thumb */
    border-radius: 10px; /* Rounded corners for the thumb */
}

::-webkit-scrollbar-thumb:hover {
    background: #ca9f7e; /* Color when hovered */
}

::-webkit-scrollbar-button {
    background: transparent; /* Button background */
    height: 0; /* Hides the button */
    width: 0; /* Hides the button */
}

/* For Firefox */
* {
    scrollbar-width: thin; /* For Firefox, make the scrollbar thin */
    scrollbar-color: #ff9130 rgba(33, 28, 24, 0.8); /* Thumb color and track color */
}

/* Use Cinzel for headers */
h1, h2, h3, .nav-links ul li a {
    font-family: 'Cinzel', serif;
}

/* Use Lora or Spectral for body text */
body, p, .login-button {
    font-family: 'Lora', sans-serif;
}

/* Index Page Background */
.background-image {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/bgindex.jpg') no-repeat center center/cover;
    z-index: -1;
	background-attachment: fixed; /* Keeps the background fixed during scrolling */
}


.download-image {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/bgdownload.jpg') no-repeat center center/cover;
    z-index: -1;
	background-attachment: fixed; /* Keeps the background fixed during scrolling */
}

.download-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4); /* Overlay with 50% opacity */
    z-index: 1; /* Ensures the overlay is above the background image */
}

.vote-image {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/bgvote.jpg') no-repeat center center/cover;
    z-index: -1;
	background-attachment: fixed; /* Keeps the background fixed during scrolling */
}

.vote-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4); /* Overlay with 50% opacity */
    z-index: 1; /* Ensures the overlay is above the background image */
}

.features-image {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/features.jpg') no-repeat center center/cover;
    z-index: -1;
	background-attachment: fixed; /* Keeps the background fixed during scrolling */
}

.features-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2); /* Overlay with 50% opacity */
    z-index: 1; /* Ensures the overlay is above the background image */
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Keeps it behind the main content */
}



/* Navbar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background-color: rgba(20, 20, 20, 0.5); /* Ensure visibility over content */
    color: #fff;
    border-bottom: 1px solid rgba(228, 128, 61, 0.2); /* Optional decorative border */
    position: fixed; /* Keeps it fixed at the top of the viewport */
    top: 0; /* Aligns to the top of the viewport */
    width: 100%; /* Ensures it spans the full viewport width */
    z-index: 9999; /* Ensures it’s above all other elements */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Adds a shadow for better visibility */
}

/* Navbar Styling when Scrolled */
.navbar.scrolled {
    background-color: rgba(20, 20, 20, 0.7); /* Semi-transparent grey background */
    backdrop-filter: blur(5px); /* Blurs the background behind the navbar */
    -webkit-backdrop-filter: blur(5px); /* For Safari support */
}


.logo img {
    height: 40px;
    cursor: pointer;
}

.nav-links {
    position: absolute; /* Removes it from normal document flow */
    left: 50%; /* Move to the middle of the parent */
    transform: translateX(-50%); /* Center it horizontally */
}

.nav-links ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links ul li a {
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    padding: 10px;
    position: relative;
    transition: color 0.3s ease;
}

/* Cool sci-fi hover effect */
.nav-links ul li a::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: #ff9130;
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-links ul li a:hover::before {
    width: 100%;
    left: 0;
}

.nav-links ul li a:hover {
    color: #ff9130; /* Adds a glow effect */
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .nav-links ul li a {
        font-size: 1rem; /* Slightly smaller font size for laptops */
        padding: 8px 10px; /* Reduced padding for better fit */
    }
}

@media (max-width: 768px) {
    .nav-links ul li a {
        font-size: 0.9rem; /* Smaller font size for tablets */
        padding: 6px 8px; /* Compact padding */
    }

    .nav-links ul li a::before {
        bottom: -3px; /* Adjust hover line position for smaller fonts */
    }
}

@media (max-width: 576px) {
    .nav-links ul li a {
        font-size: 0.85rem; /* Even smaller font for mobile devices */
        padding: 5px 6px; /* Minimal padding */
    }

    .nav-links ul li a::before {
        bottom: -2px; /* Align hover line closer to text */
        height: 1px; /* Slimmer hover effect */
    }
}

.utilities {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* language button */
.language-dropdown {
    position: relative; /* Position for dropdown */
    margin-right: 5px; /* Space before the sign-in button */
    z-index: 1001; /* Ensure it's above the sub nav */
}

/* Arrow icon styling */
.arrow-icon-lang {
    display: inline-block; /* Allows rotation */
    margin-left: 10px; /* Space between the text and the arrow */
    transition: transform 0.3s ease; /* Smooth rotation */
}

/* Rotate arrow on hover */
.language-dropdown:hover .arrow-icon-lang {
    transform: rotate(180deg); /* Rotate arrow when dropdown is hovered */
}

.language-label {
    color: #fff; /* Bronze/golden color */
    font-family: 'Arcovia', sans-serif; /* Your chosen font */
    cursor: pointer; /* Indicate clickable */
	margin-top:3px;
    display: flex; /* Use flex to align icon and text */
    align-items: center; /* Center vertically */
	font-size:0.9rem;
}

.flag-icon {
    width: 18px; /* Adjust size as needed */
    height: auto; /* Maintain aspect ratio */
    margin-right: 5px; /* Space between flag and text */
}

.language-menu {
    display: none; /* Initially hidden */
    position: absolute; /* Position relative to the dropdown */
    top: 100%; /* Aligns the dropdown below the label */
    right: 0; /* Aligns to the right */
    background-color: rgba(30, 30, 30, 0.9); /* Dark background with opacity */
    border-radius: 5px; /* Rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5); /* Shadow for depth */
    z-index: 1001; /* Ensures it appears above other content */
}

.language-dropdown:hover .language-menu {
    display: block; /* Show the menu on hover */
}

.language-option {
    display: flex; /* Align flag and text */
    align-items: center; /* Center vertically */
    color: #ffffff; /* Match with the label color */
    padding: 14px; /* Space around each option */
	font-size:0.9rem;
    text-decoration: none; /* Remove underline */
	margin-top:5px;
    transition: background 0.3s, color 0.3s; /* Smooth transition */
}

.language-option:hover {
    background-color: #ff9130; /* Highlight on hover */
    color: #fff; /* Change text color */
}

.language-option .flag-icon {
    width: 20px; /* Adjust size as needed */
    height: auto; /* Maintain aspect ratio */
    margin-right: 5px; /* Space between flag and text */
}

/* Buttons */
.login-btn,
.donate-btn {
    font-family: 'Lora', serif;
    display: flex;
    align-items: center;
    justify-content: center; /* Center the text inside the buttons */
    padding: 8px 15px;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Hover Effects */
.login-btn:hover,
.donate-btn:hover {
    transform: translateY(-2px); /* Slight lift effect on hover */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Add subtle shadow */
}

/* Specific Styles */
.login-btn {
    background-color: #4caf50;
    color: #fff;
}

.login-btn:hover {
    background-color: #45a049;
}

.donate-btn {
    background-color: #f39c12;
    color: #fff;
}

.donate-btn:hover {
    background-color: #d7901e;
}

/* Responsive Adjustments */
@media (max-width: 1384px) {
    .login-btn,
    .donate-btn {
        padding: 7px 8px; /* Reduce padding */
        font-size: 0.95rem; /* Slightly smaller font */
    }

	.language-dropdown {
        font-size: 0.8rem;
		 margin-right: 5px;
    }

	.nav-links {
    left: 30%; /* Move to the middle of the parent */
    transform: translateX(-30%); /* Center it horizontally */
}

.nav-links ul {
    gap: 15px;
}

}


/* Responsive Design */
@media (max-width: 768px) {
    .nav-links ul {
        display: none;
    }

    .utilities {
        flex-direction: column;
        gap: 10px;
    }

	    .language-dropdown {
        font-size: 0.8rem;
    }

    .login-btn,
    .donate-btn {
        padding: 6px 10px; /* Further reduce padding */
        font-size: 0.9rem; /* Adjust font size for tablets */
    }
}

@media (max-width: 576px) {
    .logo img {
        height: 40px;
    }

    .language-dropdown {
        font-size: 0.8rem;
    }

    .login-btn,
    .donate-btn {
        padding: 5px 8px; /* Compact padding for small screens */
        font-size: 0.85rem; /* Smallest font size for mobile */
    }
}


/* Logo Styling */
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 140px;
    animation: fadeIn 2s ease-in-out;
}

.logobig {
    max-width: 800px;
    opacity: 1;
    filter: drop-shadow(0 0 25px #000); /* Sci-fi glow */
    transition: transform 0.3s ease;
}

/* Introduction Title Styling */
.title-container {
    text-align: center;
    color: #fff;
    margin-top: 20px;
    animation: fadeIn 2.5s ease-in-out;
}

.title-container h1 {
    font-family: 'Lora', serif;
    font-size: 2.5rem;
    text-shadow: 1px 1px 2px #4a2f1f,  2px 2px 5px rgba(255, 204, 153, 0.8);
    margin-bottom: 10px;
    letter-spacing: 0.1em;
    font-weight: bold;

}

.title-container p {
	margin-top:5px;
    font-size: 1.2rem;
    color: #fff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.title-container-features {
    text-align: center;
    color: #fff;
    margin-top: 10px;
	margin-bottom:20px;
    animation: fadeIn 2.5s ease-in-out;
}

.title-container-features p {
	margin-top:5px;
    font-size: 1.2rem;
    color: #fff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

/* Countdown Timer */
.countdown-container {
    text-align: center;
    animation: fadeIn 1s ease-in-out;
	margin-top:60px;
}

.countdown-title {
	margin-top:5px;
    font-size: 1.5rem;
    color: #fff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    margin: 20px 0; /* Space above and below */
    animation: fadeIn 1s ease-in-out; /* Optional fade-in effect */
    letter-spacing: 0.1em; /* Slightly increase spacing between letters */
    transition: transform 0.3s ease; /* Smooth scaling effect */
	font-weight:normal;

}

.countdown-title:hover {
    transform: scale(1.05); /* Scale up slightly on hover */
}

.countdown-value {
    font-size: 3rem;
    display: block;
    color: #ff9130; /* Bronze/golden color */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); /* Subtle shadow for depth */
    margin: 20px 0; /* Space above and below */
    font-family: 'Arcovia', sans-serif; /* Use your chosen font */
    animation: fadeIn 1s ease-in-out; /* Optional fade-in effect */
}

.countdown-item {
    display: inline-block;
    margin: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
	width:150px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.countdown-item:hover {
    transform: scale(1.1);
}

.countdown-label {
    font-size: 1rem;
    text-transform: uppercase;
	color:#ffffff;
}


/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.button-container {
    display: flex;
    justify-content: center; /* Center the button */
    position: relative; /* Ensure the container is the reference point */
    margin-top: 40px; /* Add space above */
	animation: fadeIn 1s ease-in-out;

}

.custom-image-button {
    position: relative; /* For text overlay positioning */
    display: inline-block; /* Maintain block properties */
    text-decoration: none; /* Remove underline */
	transition: transform 0.5s ease, box-shadow 0.3s ease;
}

.custom-image-button img {
    display: block;
    max-width: 100%; /* Ensures responsiveness */
    width: 350px; /* Adjust size as needed */
    height: auto; /* Maintain aspect ratio */
    border: none;
    transition: transform 0.5s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.custom-image-button:hover .button-image {
    content: url('../img/startgame_over.png'); /* Replace with the hover image path */
    transform: scale(1.05); /* Optional scale effect */
	transition: transform 0.5s ease, box-shadow 0.3s ease;
}


.button-text {
    position: absolute;
    top: 50%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Align the center point */
    color: #ffffff; /* Bronze/golden color */
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5); /* Subtle shadow for depth */
    font-size: 1.7rem; /* Adjust font size as needed */
    font-family: 'Lora', sans-serif; /* Custom font */
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.7); /* Optional text glow */
    pointer-events: none; /* Ensure text doesn't interfere with clicking */
}

/* Hover effect */
.custom-image-button:hover .button-text {
    color: #fff; /* Change text color on hover */
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5); /* Always glowing softly */
    transition: color 0.3s ease, text-shadow 0.3s ease; /* Smooth transition */
}


/* Arcovia Footer Styling */
.footer {
    background-color: rgba(20, 20, 20, 1);
    color: #fff;
    padding: 40px 20px 20px;
    font-size: 0.9rem;
    text-align: center;
	padding-top:65px;
}

.footer-content {
	font-family: 'Arial';
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    flex-wrap: wrap;
}

.footer-left,
.footer-center,
.footer-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-left {
    justify-content: flex-start; /* Align logo to the left */
}

.footer-center {
    gap: 15px;
}

.footer-right {
    justify-content: flex-end; /* Align social media links to the right */
    gap: 15px;
}

.footer-social-icon i {
    font-size: 1.2rem; /* Adjust this size as needed */
    line-height: 1;
}

.footer-social-icon i:hover {
    font-size: 1.2rem; /* Slightly larger on hover */
    transition: font-size 0.3s ease;
}

.footer-logo {
    width: 32px;
    height: 32px;
    margin-right: 10px;
}

.footer-brand-name {
    font-size: 1.2rem;
    font-weight: normal;
}

.footer-center a,
.footer-right a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-center a:hover,
.footer-right a:hover {
    color: #ff9130;
}

.footer-bottom {
    margin-top: 20px;
    font-size: 0.8rem;
    width: 100%;
}

.footer-bottom p {
	font-family: 'Arial';
	margin-bottom:8px;
}

.footer-bottom p:last-child {
	margin-bottom:0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }
    .footer-left,
    .footer-center,
    .footer-right {
        justify-content: center; /* Center each section on mobile */
        margin-bottom: 10px;
    }
}


/* Mobile Navbar - Visible only on mobile */
@media (max-width: 768px) {
canvas {
        display: none; /* Hide desktop navbar on mobile */
}

    .background-image{
        background-position: 50% center; /* Position background image to the right */
        background-size: cover; /* Ensure it still covers the screen */
    }

   .news-image {
	    background: url('../img/bgdownload.jpg') no-repeat center center / cover;
        background-position: 51% center; /* Position background image to the right */
        background-size: cover; /* Ensure it still covers the screen */
    }

	.logobig {
		max-width: 410px;
	}

/* Introduction Title Styling */

.title-container h1 {
    font-size: 1.5rem;

}

.title-container p {
    font-size: 1.2rem;
}

}


/* Wrapper */
.news-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensures wrapper is at least the height of the viewport */
	animation: fadeIn 1s ease-in-out;

}

/* Overlay for News Background */
.news-image {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/news.jpg') no-repeat center center/cover;
    z-index: -1;
    background-attachment: fixed; /* Keeps the background fixed during scrolling */

}

.news-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Overlay with 50% opacity */
    z-index: 1; /* Ensures the overlay is above the background image */
}

/* News Page Header */
.news-header {
    text-align: center;
    padding: 20px 20px;
}

.news-header a{
	text-decoration: none;
	color:#f39c12;
}

.news-header a:hover {
	color:#fbaf36;
	cursor:pointer;
}

.news-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.7); /* Subtle shadow for gaming style */
}

.news-header h2 {
	font-family: 'Lora';
	font-weight:normal;
    font-size: 2rem;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.7); /* Subtle shadow for gaming style */
}

.news-header p {
    font-size: 1rem;
    color: #ccc;
}

/* Categories Section */
.news-categories {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap; /* Allows buttons to wrap on smaller screens */
    margin: 20px 0;
    margin-bottom: 25px;
}

.category-button {
    padding: 10px 20px;
    border: none;
    background: #333;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
    text-transform: uppercase; /* Gaming-like text style */
}

/* Active and Hover States */
.category-button.active, .category-button:hover {
    background: #f39c12;
    color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .category-button {
        font-size: 0.9rem; /* Slightly smaller font on medium screens */
        padding: 8px 15px; /* Reduce padding for better fit */
    }
}

@media (max-width: 576px) {
    .news-categories {
        gap: 5px; /* Reduce spacing between buttons */
    }

    .category-button {
        font-size: 0.8rem; /* Smaller font size on small screens */
        padding: 6px 12px; /* Adjust padding for compact look */
    }
}


/* News Cards Container */
.news-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

/* Individual News Card */
.news-card {
    background: #292929;
    border-radius: 10px;
    overflow: hidden;
    width: 400px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid #444; /* Separating the image and content */
}

.news-card h3 {
	font-family: 'Lora';
    font-size: 1.2rem;
	font-weight:normal;
    margin: 15px;
    color: #f39c12;
}

.news-card .news-date {
	font-family: 'Arial';
    font-size: 0.9rem;
    color: #fff;
    margin: 0 15px;
}

.news-card .news-description {
    font-size: 0.95rem;
    margin: 15px;
    color: #ddd;
    line-height: 1.6;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; /* Ensures single-line truncation */
}

.news-card .read-more-button {
    margin: 15px;
    padding: 8px 15px;
    background: #f39c12;
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s ease;
    font-weight: bold;
    font-size: 0.95rem;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.8);
}

.news-card .read-more-button:hover {
    background: #e67e22;
}

/* Popup Modal Styling */
.news-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow: hidden; /* Prevent the entire popup from scrolling */
	z-index:10000;
}

/* Popup Content */
.popup-content {
    color: #fff;
    background: #333;
    border-radius: 10px;
    padding: 20px;
    max-width: 1000px;
    width: 100%; /* Responsive */
    max-height: 90vh; /* Limit the height to 90% of the viewport */
    overflow-y: auto; /* Enable vertical scrolling for overflowing content */
    text-align: left;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.popup-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
	margin-top:15px;
    margin-bottom: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}

.popup-content .close-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s ease;
}

.popup-content .close-popup:hover {
    color: #f39c12;
}

/* Optional for better scrollbars styling */
.popup-content::-webkit-scrollbar {
    width: 8px;
}

.popup-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.popup-content::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.popup-content h3 {
	font-family: 'Lora';
	font-weight:normal;
    font-size: 1.5rem;
    color: #f39c12;
    margin-bottom: 10px;
}

.popup-content .news-date {
	font-family: 'Arial';
    font-size: 0.9rem;
    color: #fff;
    margin-bottom: 20px;
}

.popup-content p {

    color: #ccc;
    line-height: 1.8;
    font-size: 1rem;
}

/* Add space between the radio menu and content */
.content {
    margin-left: 0; /* Space between content and menu */
}

.popup-content .popup-icon {
    vertical-align: middle;
    margin-right: 5px;
    width: 26px;
    height: 26px;
}

.news-date-popup {
	font-family: 'Arial';
    font-size: 0.9rem;
    color: #ffffff !important;
}

.content hr {
    width: 100%;
    border: none;
    border-top: 1px solid #333;
    margin-top: 5px !important;
    margin-bottom: 5px !important;
}

.content h2 {
	font-size:20px;
	font-family: 'Lora';
	color:#fff;
	font-weight:normal;
	text-shadow: 0 0 5px rgba(0, 0, 0, 0.7); /* Optional text glow */
}

.content p {
	color:#ccc;
}


.content ul {
    list-style: none; /* Remove default bullet points */
    padding: 0; /* Remove padding */
    margin: 10px 0; /* Add margin for spacing */
}

.content li {
    position: relative; /* For absolute positioning of the pseudo-element */
    padding: 0 10px; /* Add padding for the list items */
    margin-bottom: 5px; /* Space between items */
    background-color: rgba(31, 31, 31, 0.8); /* Dark background with transparency */
    color: #fff; /* Text color */
    border-radius: 8px; /* Rounded corners */
    transition: background-color 0.3s ease; /* Smooth transition for hover effect */
}

.content li:hover {
    background-color: #6e6e6e; /* Gold color on hover */
}

.content img {
    border-radius: 5px;
    max-width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .news-card {
        width: 100%; /* Full width on smaller screens */
    }

    .download-card {
        width: 100%; /* Full width on smaller screens */
    }

    .popup-content {
        width: 95%; /* Adjust popup width */
    }

    .popup-content img {
        max-height: 300px; /* Limit image height */
    }
}


/* News Cards Container */
.download-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

/* Individual News Card */
.download-card {
    background: rgba(20, 20, 20, 0.7);
    border-radius: 10px;
    overflow: hidden;
    width: 400px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-card img:not(.download-icon) {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid rgba(60, 60, 60, 0.7);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.download-card h3 {
	font-family: 'Lora';
    font-size: 1.2rem;
	font-weight:600;
    margin: 15px;
    color: #f39c12;
}

.download-header {
    display: flex;
}

.download-icon {
    width: 32px; /* Adjust size as needed */
    height: 32px;
	margin-top:11px;
	margin-left:10px;
    object-fit: contain; /* Ensures the icon maintains its aspect ratio */
}

.download-header h3 {
	font-family: 'Lora';
    font-size: 1.2rem;
	font-weight:600;
    margin: 15px;
    color: #f39c12;
}

.download-card .download-date {
	font-family: 'Arial';
    font-size: 0.9rem;
    color: #fff;
    margin: 0 15px;
}

.download-card .download-description {
    font-size: 0.95rem;
    margin: 15px;
    color: #ddd;
    line-height: 1.6;
    overflow: hidden;


}

.download-card .download-more-button {
    margin: 5px;
	margin-left:15px;
    padding: 8px 15px;
    background: #f39c12;
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s ease;
    font-weight: bold;
    font-size: 0.95rem;
	margin-bottom:25px;
}




.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.8);
}

.download-card .download-more-button:hover {
    background: #e67e22;
}


/* Widget Container */
.vote-widget {
    background: rgba(20, 20, 20, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 20px;
    width: 80%;
    max-width: 800px;
    margin: 25px auto;
    color: #fff;
    font-family: Arial, sans-serif;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

/* Header Section */
.vote-header {
    text-align: center;
    margin-bottom: 20px;
}

.vote-header h2 {
	font-family: 'Lora';
    font-size: 1.8rem;
    color: #f39c12;
}

.vote-header p {
    font-size: 1rem;
    color: #ccc;
}

/* Vote Items */
.vote-list {
    border-top: 1px solid rgba(40, 40, 40, 0.7);
}

.vote-item {
    border-bottom: 1px solid rgba(40, 40, 40, 0.7);
    padding: 15px 0;
}

.vote-header-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.vote-logo {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    margin-right: 15px;
}

.vote-header-item h3 {
	font-weight:normal;
    flex-grow: 1;
    font-size: 1.2rem;
    color: #fff;
}

/* Arrow Button */
.vote-toggle {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; /* Fixed width */
    height: 40px; /* Fixed height */
    transition: transform 0.3s ease;
}

.vote-toggle .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

/* Rotate arrow when expanded */
.vote-toggle.open .arrow {
    transform: rotate(180deg); /* Points up when expanded */
}

/* Hidden Content */
.vote-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.vote-content.open {
    max-height: 150px; /* Adjust as per content length */
    padding-top: 10px; /* Add padding when expanded */
}

/* Buttons inside vote content */
.vote-content p {
    margin: 5px 0;
}

.vote-button {
    display: inline-block;
    background: #f39c12;
    color: #fff;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.vote-button:hover {
    background: #e67e22;
}


/* Features Container */
.features-container {
    display: flex;
	min-height: 100vh; /* Ensure it takes full screen height */
    width: 80%;
    max-width: 1300px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    overflow: hidden;
	margin:20px auto;
}

/* Radio Menu */
.radio-menu {
    padding: 20px;
    width: 25%;
    display: flex;
    flex-direction: column;
    gap: 15px;
	background-color: rgba( 33, 28, 24, 0.8); /* Dark sidebar color */
    border-right: 2px solid rgba(228, 128, 61, 0.3);
	border-radius: 15px 0 0 15px; /* Rounded left corners */
	clip-path: polygon(20px 0, calc(100% - 20px) 0, 100% 20px, 100% calc(100% - 20px), calc(100% - 20px) 100%, 20px 100%, 0 calc(100% - 20px), 0 20px);
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 5px;
    background: rgba(228, 128, 61, 0.1); /* Transparent orange glow */
}

.menu-item:hover {
    background: #f39c12;
    color: #fff;
}

.menu-item.active {
    background: #f39c12;
    color: #fff;
}

.menu-icon {
    font-size: 1rem;
}

.menu-text {
    flex: 1;
    font-size: 1rem;

	color:#fff;
}

.menu-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.menu-item.active .menu-arrow {
    transform: rotate(90deg);
	color:#fff;
}

/* Feature Content */
.feature-content {
    background: rgba(28, 28, 28, 0.5);
    padding: 40px;
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
	border-radius: 15px 0 0 15px; /* Rounded left corners */
	clip-path: polygon(20px 0, calc(100% - 20px) 0, 100% 20px, 100% calc(100% - 20px), calc(100% - 20px) 100%, 20px 100%, 0 calc(100% - 20px), 0 20px);
}

.content-features {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.content-features.active {
    display: block;
    opacity: 1;
}

.content-features h1 {
    font-size: 2.5rem;
    color: #f39c12;
    margin-bottom: 20px;
}

.content-features p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ccc;
}

.content-features ul {
    list-style: none; /* Remove default bullet points */
    padding: 0; /* Remove padding */
    margin: 20px 0; /* Add margin for spacing */
}

.content-features li {
	font-size:15px;
    display:flex;
    gap:8px;
    padding: 10px 15px; /* Add padding for the list items */
    margin-bottom: 10px; /* Space between items */
	align-items: center; /* Vertically center icon and text */
    background-color: rgba(31, 31, 31, 0.8); /* Dark background with transparency */
    color: #fff; /* Text color */
    border-radius: 8px; /* Rounded corners */
    transition: background-color 0.3s ease; /* Smooth transition for hover effect */
}

.content-features li:hover {
    background-color: #6e6e6e; /* Gold color on hover */
}

.content-features img {
    border-radius: 5px;
    max-width: 100%;
	width: 28px;
	height: 28px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-container {
        flex-direction: column;
        width: 90%;
    }

    .radio-menu {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        padding: 10px;
        border-right: none;
        border-bottom: 2px solid rgba(228, 128, 61, 0.3);
    }

    .menu-item {
        flex: 0 0 calc(50% - 10px);
        text-align: center;
        justify-content: center;
    }

    .feature-content {
        width: 100%;
        padding: 20px;
    }

    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .menu-item {
        flex: 0 0 100%;
    }

    h1 {
        font-size: 1.8rem;
    }

    p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .features-container {
        width: 95%;
    }

    .menu-text {
        font-size: 1rem;
    }

    .menu-icon {
        font-size: 1.2rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    p {
        font-size: 0.9rem;
    }
}

/* Hide Fullscreen Menu Initially */
.fullscreen-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%; /* Hide off-screen */
    height: 100vh;
    width: 100%;
    background-color: rgba(26, 26, 26, 1);
    z-index: 1000;
    transition: right 0.4s ease; /* Smooth slide-in transition */
    overflow-y: hidden;
    padding-top: 100px; /* Adjust this if needed */
}

/* Show Full-Screen Menu When Active */
.fullscreen-menu.active {
    display: block;
    right: 0;
}

.mobile-navbar {
    display: none; /* Hide mobile navbar by default */
}

/* Mobile Navbar - Visible only on mobile */
@media (max-width: 768px) {
    .desktop-navbar {
        display: none; /* Hide desktop navbar on mobile */
    }

    .mobile-navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 20px;
        background-color: #222; /* Adjust as needed */
    }

    /* Navbar Container */
    .navbar-container {
        display: flex;
        align-items: center;
        justify-content: space-between; /* This ensures space between the logo and hamburger icon */
        background-color: #222; /* Adjust as needed */
        width: 100%; /* Make sure it spans the entire width */
    }

    /* Left: Logo */
    .navbar-logo img {
        width: 32px; /* Adjust logo size as needed */
    }

    /* Align items in navbar-center to the right */
    .navbar-center {
        display: flex;
        gap: 10px; /* Space between language dropdown, sign-in, and download icons */
        margin-left: auto; /* Pushes navbar-center to the right */
        margin-right: 25px;

    }


    /* Hamburger Icon */
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
    }

    .hamburger .line {
        width: 24px;
        height: 3px;
        background-color: #fff;
        margin: 4px 0;
        transition: 0.4s ease;
    }

    /* Transform to a basic "X" when active */
    .hamburger.active .line1 {
        transform: rotate(45deg);
        background-color: #f39c12; /* New color for active state */
        position: absolute;
    }

    .hamburger.active .line2 {
        opacity: 0; /* Hide the middle line */
    }

    .hamburger.active .line3 {
        transform: rotate(-45deg);
        background-color: #f39c12; /* New color for active state */
        position: absolute;
    }


    /* Icon Buttons */
    .icon-button {
        color: #fff;
        font-size: 22px; /* Adjust icon size as needed */
        display: flex;
        align-items: center;
        text-decoration: none;
        cursor: pointer;
    }

    .icon-button i {
        display: inline-block;
    }

    /* Full-Screen Menu */
    .fullscreen-menu {
        display: none; /* Hidden by default */
        position: fixed;
        top: 57px; /* Adjust this value to match the height of your navbar */
        right: -100%; /* Start hidden off the right edge of the screen */
        height: calc(100vh - 57px); /* Full height minus the height of the navbar */
        width: 100%;
        background-color: rgba(26, 26, 26, 1); /* Dark background */
        z-index: 1000; /* High z-index to stay on top of other content */
        transition: right 1s ease; /* Smooth sliding transition */
        display: flex;
        flex-direction: column;
        overflow-y: hidden; /* Prevent scrolling */
        padding-top: 20px; /* Add space from the top */
    }

    /* Show Full-Screen Menu When Active */
    .fullscreen-menu.active {
        display: flex; /* Show full-screen menu when active */
        right: 0; /* Slide in from the right edge */
    }

    .fullscreen-menu hr {
        width: 100%;
        border: none;
        border-top: 1px solid #333;
        margin-top: 5px !important;
        margin-bottom: 5px !important;
    }

    /* Menu List */
    .menu-list {
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: left; /* Align text to the left */
        width: 100%; /* Ensure list takes full width */
    }

    /* Menu Items - Stack items vertically */
    .menu-list li {

        margin-left: 10px; /* Remove left margin */
        text-align: left; /* Center-align items within the screen */
    }

    /* Menu Links */
    .menu-list a {
        font-family: 'Montserrat Light';
        text-decoration: none;
        color: #fff;
        font-size: 18px;
        transition: color 0.3s ease;
        display: block; /* Ensure links fill the width */
        padding: 10px 0; /* Add vertical padding for clickability */
    }

    /* Hover Effect */
    .menu-list a:hover {
        color: #f39c12; /* Change color on hover */
    }


    /* Footer Container - Align to the bottom and use flexbox */
    .footer-container-server {
        display: flex;
        flex-direction: column;
        height: 100%;
        justify-content: flex-end; /* Centers vertically */
        padding: 20px;

    }


    /* Footer Container - Align to the bottom and use flexbox */
    .footer-hamburger-container {
        color: #fff;
        display: flex;
        flex-direction: column;
        height: 100%;
        justify-content: flex-end; /* Push content to the bottom */
        padding: 20px;
    }

    .social-media-center {
        display: flex;
        justify-content: center; /* Centers items horizontally */
        align-items: center; /* Centers items vertically */
        gap: 15px; /* Space between each icon and link */
    }

    .social-mobile {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }

    .social-mobile a {
        color: #fff;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .social-mobile a:hover {
        color: #ff9130;
    }

    .mobile-social-icon i {
        font-size: 1.2rem; /* Adjust this size as needed */
        line-height: 1;
    }

    .mobile-social-icon i:hover {
        font-size: 1.2rem; /* Slightly larger on hover */
        transition: font-size 0.3s ease;
    }


    .footer-protojah-hamburger {
        display: flex;
        justify-content: center; /* Center-align the content */
        text-align: center; /* Center-align text within the protojah section */
        width: 100%; /* Ensure it stretches across the full width */
        margin-bottom: 15px;
    }

    .footer-protojah-hamburger a {
        color: #fff;
        letter-spacing: 3px;
        font-family: 'Cinzel', serif;
        font-weight: normal;
        font-size: 16px;
        text-decoration: none;
    }

    .footer-protojah-hamburger a:hover {
        color: #f39c12;
    }


    /* Footer bottom styling */
    .footer-bottom-hamburger {
        text-align: center; /* Center-align text */
        margin-top: 20px;

    }

    .footer-copyright-hamburger {
        font-family: 'Cinzel', serif;
        text-decoration: none;
        font-weight: normal;
        color: #ffffff;
        text-align: center; /* Center-align bottom text */
    }
}


.donation-disclaimer {
    background-color: #222; /* Dark background for contrast */
    color: #fff; /* White text for readability */
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 0.95rem;
    margin: 20px auto;
    max-width: 600px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.donation-disclaimer a {
    color: #ffcc00; /* Highlight link with a gold/yellow color */
    text-decoration: underline;
    font-weight: bold;
}

.donation-disclaimer a:hover {
    color: #ff9900; /* Slightly darker yellow on hover */
    text-decoration: none;
}
