/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #111;
    color: white;
    text-align: center;
}

/* Navbar */
#header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 204, 0, 0.18);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 30px;
    z-index: 1;
}
.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links .active {
    color: #ffcc00;
}

/* Login Button */
.btn {
    background-color: #ffcc00;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    color: black;
    font-weight: bold;
}

.btn:hover {
    background-color: #ffaa00;
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 30px;
    height: 4px;
    background-color: white;
    margin: 5px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    height: 80vh;
    background-image: url('../assets/home_background.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: left;
    text-align: left;
    padding: 40px;
    position: relative;
}

/* Blurred Background Overlay */
.hero-section .blur-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay */
    filter: blur(100px); /* Apply the blur effect */
    z-index: -1; /* Place it behind the content */
}

/* Hero Content */
.hero-content {
    z-index: 1;
    color: white;
}

.hero-content h1 {
    font-size: 2.5rem;
    color: #FFFFFF; /* White for high contrast */
    font-weight: 600;
}

.hero-content p {
    font-size: 1.2rem;
    margin: 10px 0;
    color: #ffffff; /* Light Cool Blue for readability */
    font-weight: 400;
}



/* IP Box */
.ip-box {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px;
    display: inline-block;
    border-radius: 5px;
    margin-top: 20px;
}

.ip-box span {
    font-size: 1.2rem;
    margin-right: 10px;
}

.ip-box button {
    background-color: #ffcc00;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    font-weight: bold;
}

.ip-box button:hover {
    background-color: #ffaa00;
}

/* Socials Section */
.socials {
    padding: 20px;
    padding-bottom: 200px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.social-icon {
    font-size: 1.5rem;
    color: white;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #ffcc00;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background: rgba(0, 0, 0, 0.9);
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 10px 0;
    }

    .menu-toggle {
        display: flex;
    }

    /* Toggle Effect */
    .nav-active {
        display: flex;
    }
}

/* Notification Popup - Yellow-Orange Gaming Theme */
.notification {
    position: fixed;
    top: 35px; /* Always at the top */
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #ffcc00, #ff6600); /* Yellow-Orange Gradient */
    color: white;
    font-weight: bold;
    font-size: 1rem;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(255, 165, 0, 0.8); /* Soft orange glow */
    opacity: 0;
    z-index: 9999; /* Highest layer */
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

/* Show notification */
.notification.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Hide the navbar links by default on mobile */
.nav-links {
    display: flex;
    gap: 20px;
}

/* Show the menu icon only on small screens */
.hamburger-menu {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Hide links initially */
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background: rgba(0, 0, 0, 0.9);
        width: 100%;
        text-align: center;
        padding: 15px 0;
    }

    .nav-links.show {
        display: flex; /* Show when toggled */
    }

    .hamburger-menu {
        display: block; /* Show menu button */
    }
}
.top-donators {
    
    text-align: center;
    padding: 20px;
    background: linear-gradient(45deg, #ffcc00, #ff6600);
    color: white;
    border-radius: 10px;
    margin: 30px auto;
    width: 500px;
    max-width: 75%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.top-donators h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

/* Top Donor Styling */
.top-donor {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.top-donor-skin {
    width: 100px;
    height: 150px;
}

.top-donor-info {
    text-align: left;
    margin-left: 15px;
}

.top-donor-badge {
    font-size: 14px;
    font-weight: bold;
    color: gold;
}

.top-donor-name {
    display: block;
    font-size: 18px;
    font-weight: bold;
}

.top-donor-amount {
    font-size: 16px;
}

/* Other Top Donors */
.donator-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.donator-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
}

.donator-avatar {
    width: 40px;
    height: 40px;
    border-radius: 5px;
}

/* Recent Donations */
.recent-donations {
    margin-top: 15px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.recent-donation {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 5px;
}

.recent-donation img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    border-radius: 5px;
}
.footer h4{
    text-align: left;
    padding-left:40px
}
.full-divider{
    width: 100%;
    height: 0.5px;
    background-color: #dddddd31; /* Light gray color */
    border: none;
    margin: 20px 0;
}
.footer p{
    text-align: left;
    padding-left: 40px;
    max-width: 700px;
    font-weight: 300;
}
.footer-about {
    padding-left: 40px; /* Match the padding of other footer elements */
}

.footer-content {
    display: flex;                /* Use Flexbox to align items */
    justify-content: space-between; /* Space between p and button */
    align-items: center;          /* Vertically center align items */
    gap: 20px;                    /* Add space between p and button */
    padding-right: 80px;
}

.footer-content p {
    margin: 0;                    /* Remove default margin for p */
    flex: 1;                      /* Allow p to take up remaining space */
}

.footer-content .play-btn {
    flex-shrink: 0;               /* Prevent button from shrinking */
}

/* Hide the button on mobile devices */
@media (max-width: 768px) {
    .footer-content .play-btn {
        display: none;
    }
}
.mini-divider{
    width: 100%;
    height: 0.5px;
    background-color: #dddddd31; /* Light gray color */
    border: none;
    margin: 20px 0;
    max-width: 80%;
    margin: 20px auto;
}
.copyright{
    padding-bottom: 30px;
}
.btn.play-btn {
    background-color: #ff8c00; /* Orange background color */
    color: white;              /* Text color */
    padding: 10px 20px;        /* Padding for the button */
    border: none;              /* Remove default border */
    border-radius: 5px;        /* Rounded corners */
    font-size: 16px;           /* Font size */
    cursor: pointer;           /* Pointer cursor on hover */
    transition: box-shadow 0.3s ease; /* Smooth transition for glow effect */
    box-shadow: linear-gradient(45deg, #ffcc00, #ff6600);
}
