@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

@font-face {
    font-family: 'Dead Kansas'; /* Name you want to give to the font */
    src: url('/fonts/Dead Kansas.ttf') format('truetype'); /* Path to your font file */
    font-weight: normal;
    font-style: normal;
}

.manrope-uniquifier {
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

p {
    font-size: 16px;
    margin: 0;
}

h1 {
    margin: 0;
    font-family: 'Dead Kansas', sans-serif;
    letter-spacing: 2px;
    font-weight: normal;
}

h2 {
    margin: 0;
    font-weight: normal;
}

h3 {
    margin: 0;
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
    line-height: 1.6;
    font-family: "Manrope", sans-serif;
    background-color: #000000;
}

#loading-screen {
    position: relative;
    width: 100%;
    height: 100vh; /* Full height to cover the screen */
    background-color: #000000; /* Dark background for loading */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000; /* Make sure it's on top */
    color: white;
    font-size: 2rem;
}

.loading-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 2.5rem;
    height: 50%;
    justify-content: space-between;
    font-family: 'Dead Kansas', sans-serif;
}

#loading-percentage {
    font-size: 3rem;
    margin-top: 20px;
    font-family: "Manrope", sans-serif;
}

/* Disable scrolling class */
.no-scroll {
    overflow: hidden;
}

#community-button {
    max-width: 120px;
    background-color: rgb(0, 0, 0); /* Main color */
    background-image: none;
    margin-left: 5%;
    margin-right: -15%;
    border-color: #530a07;
}

.button-clean {
    color: white; /* Text color */
    border: 2px solid #000000; /* Slight border contrast */
    padding: 12px 30px;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase; /* For a bold, rugged look */
    text-align: center;
    text-decoration: none;
    display: inline-block;
    border-radius: 4px; /* Smooth edges */
    cursor: pointer;
    transition: all 0.3s ease; /* Smooth hover effect */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); /* Slight shadow for depth */
    font-weight: 800;
    background-image: url(../images/navibg.jpg); /* Your background image */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #181818;
    width: 30%;
    position: relative;
}

.text-header {
    position: relative;
}

.buttons-container {
    margin-top: 10%;
    display: flex;
    width: 70%;
    justify-content: space-between;
}

.button-clean:hover {
    background-color: #333; /* Slightly lighter black on hover */
    color: #530a0a; /* Optional golden color for highlight */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5); /* More pronounced shadow on hover */
}

.button-clean:active {
    transform: translateY(0); /* Button returns to its original position when clicked */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); /* Shadow returns to normal */
}

.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    color: white;
    text-align: center;
    padding: 10px 0;
    z-index: 90;
    box-shadow: 0 5px 7px rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    display: flex;
    background-image: url(../images/navibg.jpg); /* Your background image */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #181818;
    height: 8%;
}

.hero-videos {
    position: absolute; /* Change to absolute to overlay the section */
    bottom: 25%;
    left: 0;
    width: 100%;
    height: 65%;
    z-index: 20;
    background-color: black; /* Black background for edges around the video */
    display: none; /* Hidden by default */
    justify-content: center; /* Center the video horizontally */
    align-items: center; /* Center the video vertically */
}

.video {
    width: 100%;
    max-width: 1240px; /* Maintain the aspect ratio */
    height: 100%; /* Set video height to 50% */
    display: none; /* Hidden by default */
    opacity: 0;
    transition: opacity 0.5s ease;
}

.video[style*="display: block"] {
    opacity: 1;
}

.hero-text {
    height: 75%;
    display: flex;
    flex-direction: column;
    color: #181818;
    justify-content: center;
    align-items: center;
    width: 700px;
    position: relative;
    z-index: 10; /* Keep it below the video */
    transition: opacity 0.5s ease; /* Smooth transition for hiding */
}

.hero-text.hidden {
    opacity: 0; /* Fade out when hidden */
    pointer-events: none; /* Prevent interaction when hidden */
}

.hero-text h1 {
    margin: 10px 0;
    line-height: 1;
}

.hero-text p {
    margin: 10px 0;
    line-height: 1;
    font-size: 18px;
    font-weight: bold;
}

.hero-image-container {
    overflow: hidden;
}

.hero-container {
    height: 25%;
    background-color: #000000;
    width: 100%;
    bottom: 0;
    background-image: url(../images/navibg.jpg); /* Your background image */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #181818;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -5px 7px rgba(0, 0, 0, 0.7);
    z-index: 1001;
    position: relative;
}

.hero-inside-container {
    height: 100%;
    width: 100%;
    max-width: 1440px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.hero-box {
    display: flex;
    flex-direction: column;
    height: 90%;
    justify-content: center;
    align-items: center;
    line-height: 1;
    width: 200px;
    position: relative;
}

.hero-box:hover {
    scale: 1.1;
    cursor: pointer;
}

.herobox-text {
    width: 95%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-box h3 {
    margin-top: 5%;
    font-size: 24px;
    font-family: 'Dead Kansas', sans-serif;
    font-weight: normal;
}

.hero-box p {
    margin: 2px 0px;
    font-size: 15px;
    font-style: italic;
}

.hero-box img {
    height: 50%;
    max-width: 80%;
}

#videotext {
    position: absolute;
    font-family: 'Dead Kansas', sans-serif;
    font-weight: normal;
    top: 0;
    font-size: 18px;
    opacity: 0.5;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
}

#videotext img {
    margin-bottom: 18%;
    width: 25px;
    height: 25px;
}

#videotext:hover {
    opacity: 1;
}

.hero-image {
    position: absolute; /* Stay anchored to #section1 */
    right: -180px; /* Adjust to push the image slightly off the screen */
    bottom: 25%; /* Align with the bottom of the section */
    height: 650px;
    z-index: 100;
}

#hero-image2 {
    left: -180px;
}

.logo {
    font-family: 'Dead Kansas', sans-serif;
    text-align: left;
    margin-right: 5%;
    margin-left: -15%;
    font-weight: normal;
}

.logo img {
    height: 50px;
}

.logo:hover {
    color: #530a07;
    cursor: pointer;
}

.logo h2 {
    letter-spacing: 1px;
    font-weight: normal;
    margin: 0;
    line-height: 1.1;
}

.logo p {
    font-size: 10px;
    letter-spacing: 1px;
    margin: 0;
    line-height: 1.1;
    font-weight: normal;
}

.logo2 {
    font-family: 'Dead Kansas', sans-serif;
    text-align: left;
    font-weight: normal;
    margin-bottom: 10px;
}


.logo2 p {
    letter-spacing: 1px;
    margin: 0;
    line-height: 1.1;
    font-weight: normal;
}

.navbar a {
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 16px;
    display: inline-block;
    font-weight: 800;
    text-transform: uppercase; /* For a bold, rugged look */
}

.navbar a:hover {
    color: #530a07;
}

.section {
    width: 100%;
    height: 100vh;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    text-align: center;
    overflow: hidden;
}

#section9 {
    position: relative;
}

.survivors-container-outer {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}   

.survivors-container {
    height: 60%;
    display: flex;
    max-width: 1100px;
    padding-top: 5%;
}   

.survivors-image-container {
    width: 16.6%;
    height: 100%;
    position: relative;
}

.survivors-image-container:hover {
    scale: 1.05;
    cursor: pointer;
}

.text-behind {
    max-width: 1440px;
    position: absolute;
    font-size: 180px;
    line-height: 1.1;
    bottom: 28%;
    transform: rotateX(75deg) translateZ(-200px); /* Tilt the text and push it back */
}


.surv1 {
    left: 0;
    width: 20%;
}

.surv2 {
    left: 0;
}

.surv3 {
    left: 0;
    position: relative;
}

.surv4 {
    right: 0;

}

.surv5 {
    right: 0;
}

.surv6 {
    right: 0;
    width: 18.5%;
}

.survivors-image-container img {
    width: 100%;
}

/* General styling for the popup */
.popup {
    display: none; /* Initially hidden */
    position: fixed; /* Stays in the same place on the viewport */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Dark overlay with transparency */
    z-index: 1000; /* High z-index to appear above all content */
    justify-content: center;
    align-items: center;
}

/* Styling for the content inside the popup */
.popup-content {
    background-color: #1e1e1e; /* Dark background */
    background-image: url(../images/navibg2.jpg); /* Your background image */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: white; /* Text color */
    padding: 30px;
    border-radius: 10px; /* Rounded corners */
    width: 90%;
    max-width: 500px; /* Limit popup width */
    height: 50%;
    max-height: 400px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); /* Subtle shadow for depth */
    position: relative; /* To place the close button inside */
    animation: fadeIn 0.5s ease; /* Smooth fade-in animation */
}

.popup-image {
    animation: fadeIn 0.5s ease; /* Smooth fade-in animation */
    position: absolute;
}

.popimg1 {
    right: -50%;
    bottom: -20%;
}

.popimg2 {
    left: -50%;
    bottom: -20%;
}

/* Close button styling */
.popup .close {
    position: absolute;
    top: 0;
    right: 15px;
    font-size: 30px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.tagline {
    font-style: italic;
}

.popup .close:hover {
    color: #530a07; /* Change color on hover */
}

/* Smooth fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Optional: Style for the content inside the popup */
.popup-content h2 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 900;
}

.popup-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.popup-content .popup-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* Optional: Buttons inside the popup */
.popup-buttons .button-clean {
    background-color: #ff5f5f;
    border: none;
    padding: 10px 20px;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.popup-buttons .button-clean:hover {
    background-color: #ff3a3a;
}

#section1 {
    position: relative;
    background-color: #000000;
    overflow: hidden; /* Ensures the image doesn’t spill outside the section */
    background-image: url(../images/bg1.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    flex-direction: column;
    justify-content: flex-start;
}

#section1 h1 {
    font-family: 'Dead Kansas', sans-serif;
    font-weight: normal;
    font-size: 80px;
}

#section2 {
    background-color: #000000fc;
    flex-direction: column;
    height: auto;
    min-height: 100vh;
    padding: 6% 0;
    gap: 20px;
}

#footer {
    background-color: #0a0a0a;
    background-image: url(../images/navibg.jpg); /* Your background image */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: auto;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;  
}

.footer-container {
    max-width: 1000px;
    width: 50%;
    display: flex;
    margin-top: 5%;
    justify-content: center;
    gap: 20%;
}

.footer-menu {
    text-align: left;
    margin: 0;
    list-style: disc;
    position: relative;
}

.footer-container a {
    text-decoration: none;
    color: white;
}

.footer-container a:hover {
    color: #530a07;
}

.footer-menu h3 {
    font-family: 'Dead Kansas', sans-serif;
    font-weight: normal;
}

.footer-bottom {
    margin-bottom: 1%;
    max-width: 1400px;
    width: 92%;
}

.footer-bottom p {
    font-size: 12px;
}

.footer-menu li {
    font-size: 18px;
}

.zombie-container {
    display: flex;
    flex-wrap: wrap;
    width: 98%;
    max-width: 1040px;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.zombie-card-container {
    background-color: #000000; /* Dark background */
    color: white;
    padding: 20px;
    border-radius: 10px;
    width: 220px;
    display: flex;
    flex-direction: column;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
    transition: all 0.3s ease-in-out;
    border: 1px solid #2e2e2e; /* Subtle border */
    background-image: url(../images/navibg2.jpg); /* Optional background texture */
    background-size: cover;
    position: relative;
    overflow: hidden;
    height: 350px;
}

/* Zombie Image */
.zombie-card-container img {
    width: 100%;
    height: 180px;
    border-radius: 8px;
    filter: grayscale(100%); /* Make it eerie */
    transition: filter 0.3s ease;
}

/* Zombie Name */
.zombie-card-container h3 {
    font-family: 'Dead Kansas', sans-serif;
    font-size: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 15px 0 10px;
    color: #530a07; /* Golden color for the name */
    text-align: left;
    font-weight: normal;
}

/* Zombie Description */
.zombie-card-container p {
    font-size: 14px;
    line-height: 1.4;
    color: #cccccc;
}

/* Hover Effects */
.zombie-card-container:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.8);
    border-color: #53090754; /* Highlight on hover */
}

.zombie-card-container:hover img {
    filter: grayscale(0); /* Remove grayscale on hover */
    box-shadow: 0 0 15px #530907e7; /* Glowing highlight */
}

.zombie-card-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, #5309073a, transparent);
    transition: opacity 0.3s ease;
    opacity: 0;
    z-index: 1;
}

.zombie-card-container:hover::before {
    opacity: 0.8; /* Glow effect on hover */
}

/* Optional grid styling for multiple cards */
.zombie-card-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
    padding: 50px;
    background-color: #121212; /* Dark background for the grid */
}

#section3 {
    background-color: #000000fc;
    flex-direction: column;
    height: auto;
    padding: 50px 0;
    background-image: url(../images/road.webp); /* Your background image */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.roadmap-title {
    font-family: 'Dead Kansas', sans-serif;
    font-size: 50px;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.roadmap-text {
    text-align: left;
    width: 100%;
}

.roadmap-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    position: relative;
    width: 500px;
}

/* Roadmap Items */
.roadmap-item {
    background-color: #0a0a0a;
    border-radius: 10px;
    padding: 20px 20px;
    width: 80%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
    border: 2px solid #444;
    position: relative;
    transition: all 0.3s ease;
    background-image: url(../images/navibg.jpg); /* Your background image */
    background-size: contain;
    background-repeat: repeat;
    background-position: center;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}

.roadmap-phase {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}


.phase-text {
    font-family: 'Dead Kansas', sans-serif;
    font-size: 18px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.name-text {
    font-family: 'Dead Kansas', sans-serif;
    font-size: 18px;
    margin-bottom: 10px;
    text-transform: uppercase;
    margin-left: 5px;
}

/* Roadmap Text */
.roadmap-item p {
    font-size: 18px;
    color: #cccccc;
    line-height: 1.6;
    font-family: "Manrope", sans-serif;
}

/* Connecting Line (Optional for extra effect) */

#section4 {
    background-color: #000000fc;
    flex-direction: column;
    background-image: url(../images/zhands.svg);
    background-position: bottom;
    background-repeat: repeat-x;
    background-size: 40%;
}

.section-title {
    font-size: 2.5rem;
    color: #eaeaea;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.howtobuy-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1000px;
    width: 94%;
    justify-content: center;
    align-items: center;
}

.howtobuy-box {
    background-color: #333;
    background-image: url(../images/navibg.jpg); /* Your background image */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 2px solid #444;
    border-radius: 10px;
    padding: 20px;
    width: 400px;
    height: 110px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
}

.box-icon {
    width: 50px;
    height: auto;
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 0.8;
}

.howtobuy-box h2 {
    font-size: 24px;
    margin-top: 0;
    font-weight: bold;
}

.howtobuy-box p {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 0;
}

#section5 {
    background-color: #000000;
    height: auto;
    background-image: url(../images/navibg.jpg); /* Your background image */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

#section6 {
    background-color: #000000fc;
    flex-direction: column;
    background-image: url(../images/city.webp);
    background-repeat: repeat-x;
    background-position: center;
    background-size: cover;
    min-height: 100vh;
    height: auto;
    padding: 50px 0;
}

#brain-model-container {
    width: 300px;  /* Adjust as necessary */
    height: 300px; /* Adjust as necessary */
    position: absolute;
    z-index: 1000;
    background: none; /* No background color to ensure transparency */
}

.trailer-play-container p {
    font-weight: bold;
}

.trailer-play-container {
    position: absolute;
    display: flex;
    bottom: 5%;
    justify-content: center;
    align-items: center;
    animation: scaleAn 1s infinite ease-in-out;
}

/* Smooth scale up and down animation */
@keyframes scaleAn {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}


.trailer-play-container:hover {
    cursor: pointer;
    color: #530a07;
}

.stop-button {
    position: absolute;
    background:none;
    border: none;
    color: #fff;
    z-index: 100;
    top: 96%; /* Position it 50% from the top of the parent */
    right: 48%; /* Position it 50% from the left of the parent */
}

.stop-button:hover {
    transform: scale(1.05);
    cursor: pointer;
}

.trailer-play-container img {
    height: 30px;
    margin-right: 5px;
}

#section7 {
    background-color: #000000fc;
    overflow-x: hidden;
    gap: 20px;
    background-image: url(../images/zhands.svg);
    background-position: bottom;
    background-repeat: repeat-x;
    background-size: 40%;
}

.swiper-pagination {
    position: relative!important;
}

.swiper-pagination-bullet {
    background: #2e2e2e!important;
}

.swiper-pagination-bullet-active {
    background: #530a07!important;
}

.swiper-container {
    width: 70%;
    height: auto;
    margin-top: 2%;
}

.carousel-item {
    width: 430px!important;
    height: 680px!important;
    display: flex!important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    background-image: url(../images/navibg2.jpg);
    background-size: cover;
    box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.7); /* Shadow for depth */
    transition: transform 0.3s ease;
    padding: 20px;
}

.carousel-item:hover {
    transform: scale(1.05); /* Slightly enlarge on hover */
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* Image container for the card */
.carousel-item-image-container {
    width: 98%;
    max-width: 400px;
    height: 400px;
    margin-bottom: 10px;
}

.carousel-item-image-container img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); /* Shadow around the image */
}

.carousel-item-text-container {
    max-width: 100%;
    text-align: center;
    padding: 10px;
}

/* Name/Title header for each card */
.carousel-item-text-container h2 {
    font-size: 28px;
    color: #530a07; /* A warm color for the title */
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 2px;
    font-family: 'Dead Kansas', sans-serif;
}

/* Description text */
.carousel-item-text-container p {
    font-size: 16px;
    line-height: 1.5;
    color: #cccccc;
    font-family: "Manrope", sans-serif;
}

/* Pagination (dots) styling */
.swiper-pagination-bullet {
    background: #ffffff!important;
    opacity: 0.5!important;
}

.swiper-pagination-bullet-active {
    background: #530a07!important; /* Match your theme color */
    opacity: 1!important;
}

/* Navigation buttons styling */
.swiper-button-prev,
.swiper-button-next {
    color: #530a07;
    font-size: 20px;
}

.text-container {
    width: 60%;
    max-width: 600px;
    text-align: left;
}

.image-container {
    width: 30%;
    max-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.image-container img {
    max-width: 100%;
    position: relative;
}

.counter-container {
    background-color: #1c1c1c; /* Dark background */
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    width: 80%;
    max-width: 800px;
    margin: 50px auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6); /* Adds depth */
    position: relative;
    background-image: url(../images/navibg2.jpg); /* Optional background texture */
    background-size: cover;
}

.counter-container h2 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 28px;
    font-family: 'Dead Kansas', sans-serif;
}

/* Counter Bar */
.counter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 50px;
    background-color: #333; /* Background for the whole bar */
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

/* Zombie Progress */
.survivor-progress {
    width: 0%; /* Start with 0% */
    background-color: #00551c; /* Survivor green */
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: width 0.5s ease;
}

.survivor-text {
    position: absolute;
    left: 10px;
}

.zombie-progress {
    width: 0%; /* Start with 0% */
    background-color: #530a07; /* Zombie red/decay */
    height: 100%;
    display: flex;
    align-items: center;
    padding-right: 20px;
    border-right: 2px solid #530a07;
    position: relative;
    transition: width 0.5s ease;
    justify-content: flex-end;
}

.roadmap-brain {
    position: absolute;
    left: -5%;
    top: 10%;
    background-color: #000000;
    border-radius: 3000px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.roadmap-brain img {
    height: 50px;
}

/* Labels for Progress */
.zombie-label, .survivor-label {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

/* Icons */
.icon-zombie, .icon-survivor {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

/* Zombie/Survivor Count */
.zombie-count, .survivor-count {
    font-size: 26px;
    margin-left: 5px;
    position: absolute;
    z-index: 2;
}

.zombies-text {
    position: absolute;
    right: 10%;
}

.copy-clip:hover {
    cursor: pointer;
}

.copy-clip {
    color: #530a07;
    background-color: #000000;
    font-weight: 900;
    white-space: normal; /* Allows text to break and wrap */
    word-wrap: break-word; /* Forces long words to break */
    word-break: break-all; /* Ensures the text breaks at any character if necessary */
    display: inline-block; /* Keeps the text inside the block but allows wrapping */
    overflow-wrap: break-word; /* Ensures the text will wrap when needed */
}

.mobile-text {
    display: none;
}

.mobile-text2 {
    display: none;
}

.pc-text {
    display: flex;
    position: absolute;
    z-index: 2;
    bottom: 10%;
}

.swiper-pagination-bullet {
    height: 12px !important;
    width: 12px !important;
}

/* COMMUNITY STYLING */

.community-section {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    text-align: center;
    overflow: hidden;
    min-height: 100vh;
    padding: 50px 0;
}

.community-container {
    width: 96%;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    background-color: #00000060;
    padding: 10px;
    border-radius: 8px;
}

.social-container {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.comm-button {
    width: 100%;
    height: 50px;
    background-color: #530a07;
    color: white;
        border: 2px solid #000000; /* Slight border contrast */
        font-size: 16px;
        letter-spacing: 1px;
        text-transform: uppercase; /* For a bold, rugged look */
        text-align: center;
        text-decoration: none;
        display: inline-block;
        border-radius: 4px; /* Smooth edges */
        cursor: pointer;
        transition: all 0.3s ease; /* Smooth hover effect */
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); /* Slight shadow for depth */
        font-weight: 700;
        background-image: url(../images/navibg.jpg); /* Your background image */
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        background-color: #181818;
        position: relative;
}

.logo-comm {
    height: 100px;
    margin: 20px;
}

.logo-comm img {
    height: 100px;
}

.comm-button:hover {
    background-color: #333; /* Slightly lighter black on hover */
    color: #530a0a; /* Optional golden color for highlight */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5); /* More pronounced shadow on hover */
}

.comm-button:active {
    transform: translateY(0); /* Button returns to its original position when clicked */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); /* Shadow returns to normal */
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.social-container img {
    height: 50px;
    border-radius: 8px;
}

.links-container h1 {
    font-size: 24px;
}

#community-section {
    background-color: #000000fc;
    background-image: url(../images/bg1.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* RESPONSIVE STYLING */

@media (max-width: 1240px) {
    .hero-box {
        width: 155px;
        height: 80%;
    }
    .hero-box h3 {
        font-size: 22px;
    }
    .hero-image {
        right: -250px;
    }
    #hero-image2 {
        left: -220px;
    }
    .footer-container {
        width: 80%;
    }
}

@media (max-width: 1000px) {
    
    #videotext img {
        margin-bottom: 15%;
    }
    .hero-videos {
        height: 60%;
        bottom: 34.5%;
    }
    .hero-container {
        height: 40%;
    }
    .hero-box {
        height: 50%;
        width: 200px;
    }
    .carousel-item-text-container h2 {
        font-size: 22px;
        letter-spacing: 1px;
    }
    .carousel-item-text-container p {
        font-size: 15px;
    }
    .carousel-item-image-container {
        height: 300px;
        width: 300px;
    }
    .carousel-item {
        width: 350px !important;
        height: 600px !important;
    }
    h1 {
        font-size: 40px;
    }
    .roadmap-title {
        font-size: 40px;
    }
}

@media (min-width: 768px) and (max-height: 850px) {
    .video {
        height: 100%;
    }
    .hero-image {
        height: 500px;
        right: -180px;
    }
    #hero-image2 {
        left: -180px;
    }
}

@media (max-width: 768px) {
    .zombies-text {
        right: 15%;
    }
    .survivor-text {
        left: 8%;
    }

    .name-text {
        font-size: 14px;
    }
    .phase-text {
        font-size: 16px;
    }

    .roadmap-item {
        padding: 10px;
    }

    .hero-box p {
        font-size: 14px;
    }

    .howtobuy-box h2 {
        font-size: 20px;
    }
    
    .howtobuy-box p {
        font-size: 14px;
    }
    .navbar {
        padding: 10px;
        font-size: 16px;
        justify-content: space-around;
        height: 8%;
    }
    .hero-image {
        display: none;
    }
    #hero-image2 {
        display: none;
    }
    .hero-container {
        height: 57%;
    }
    .navbar a {
        padding: 10px 15px;
        font-size: 16px;
    }
    .hero-text {
        height: 40%;
        width: 96%;
        margin-top: 10%;
    }
    .buttons-container {
        width: 70%;
        margin-top: 0;
    }
    .button-clean {
        padding: 3px 20px;
        font-size: 14px;
    }
    #section1 h1 {
        font-size: 50px;
    }
    .hero-text p {
        font-size: 14px;
        margin-top: 0;
    }
    .section {
        font-size: 20px;
    }
    .hero-videos {
        height: 38%;
        bottom: 55%;
    }
    .hero-box {
        height: 33%;
        width: 180px;
    }
    .stop-button {
        top: 85%;
        right: 44%;
    }
    #menulink {
        display: none;
    }
    #section7 {
        flex-wrap: wrap;
    }
    .image-container {
        width: 90%;
    }
    .text-container {
        width: 90%;
    }
    .zombie-count, .survivor-count, .counter-bar {
        font-size: 14px;
    }
    .zombie-count, .survivor-count {
        z-index: 2;
    }
    .counter-container h2 {
        font-size: 25px;
    }
    h1 { 
        font-size: 30px;
    }
    .trailer-play-container {
        bottom: 0%;
    }
    .trailer-play-container img {
        display: none;
    }
    .hero-box h3 {
        font-size: 18px;
    }
    #section7 {
        height: auto;
        padding: 30px 0;
    }
    #section6 {
        padding: 50px 0;
        position: relative;
    }
    #brain-model-container {
        width: 200px;
        height: 200px;
    }
    .loading-text {
        font-size: 30px;
    }
    .zombie-card-container {
        width: 200px;
    }
    .text-behind {
        font-size: 85px;
        bottom: 40%;
    }

    .survivors-container {
        height: 20%;
    }

    .survivors-container-outer {
        height: 20%;
        position: relative;
    }
    .popup-content p {
        font-size: 14px;
    }
    .popup-content h2 {
        font-size: 20px;
    }
    .popup-content {
        padding: 10px;
        margin-left: 5px;
        height: auto;
    }
    .popup-image {
        display: none;
    }
    #section9 {
        height: auto;
        align-items: flex-start;
        padding: 50px 0;
    }
    .mobile-text {
        display: flex;
        position: absolute;
        z-index: 2;
        top: -15%;
    }
    .mobile-text2 {
        display: flex;
        position: absolute;
        z-index: 2;
        bottom: 1%
    }
    .pc-text {
        display: none;
    }
}

@media (max-width: 480px) {
    .navbar a {
        padding: 10px 10px;
        font-size: 14px;
    }

    .carousel-item-image-container {
        height: 275px;
        width: 275px;
        margin-bottom: 0;
    }

    .carousel-item-text-container {
        padding: 10px 0px;
    }

    .swiper-pagination-bullet {
        background: #000000 !important;
        opacity: 1 !important;
    }

    .swiper-pagination-bullet-active {
        background: #530a07 !important;
    }

    .zombie-card-container {
        width: 100%;
        height: 150px;
        padding: 8px;
    }

    .section {
        font-size: 18px;
    }

    .carousel-item {
        width: 320px !important;
    }

    .roadmap-container {
        width: 360px;
    }
    .roadmap-item {
        width: 90%;
    }

    #section4 {
        height: auto;
        padding: 30px 0;
    }

    .zombie-card-container img {
        width: auto;
        position: absolute;
        height: 90%;
        right: 0;
    }
    .zombie-card-container p {
        z-index: 2;
    }

    .zombie-card-container:hover::before {
        opacity: 1; /* Glow effect on hover */
    }

    .zombie-card-container:hover {
        transform: scale(1);
        box-shadow: 0 0px 0px rgba(0, 0, 0, 0.8);
        border-color: none; /* Highlight on hover */
    }
    
    .zombie-card-container:hover img {
        filter: grayscale(0); /* Remove grayscale on hover */
        box-shadow: 0 0 0px #53090700; /* Glowing highlight */
    }
}

@media (max-width: 400px) { 


}