@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

body {
    margin: 0;
    font-family: 'DM Sans';
}

::-webkit-scrollbar {
    width: 12px;
    height: 10%;
}

::-webkit-scrollbar-thumb {
    background: #206940;
    border-radius: 20px;
}
::-webkit-scrollbar-track {
    background-color: #1a1f2b;
}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    padding-left: .75rem;
    padding-right: .75rem;
    margin: 1.75rem;
}

.site-header {
    position: static;
    left: 50%;
    width: 70%;
    align-self: center;
    background-color: #181818; /* Semi-transparent background */
    z-index: 1000;
    padding: 3px 20px;
    border-radius: 7px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, .1); 
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    margin: 5px;
}

.logo img {
    max-height: 35px; /* Adjust the size as needed */
}

.nav {
    display: flex;
    gap: 15px;
}

.nav2 {
    display: flex;
    gap: 15px;
}

.nav2 a {
    text-decoration: none;
    color: #ffffff; /* Adjust the color as needed */
    font-family: 'DM Sans';
    padding: 9px 12px;
    font-weight: 500;
}

nav a:hover {
    color: #fff;
}

.nav a {
    text-decoration: none;
    color: #ffffff; /* Adjust the color as needed */
    background-image: linear-gradient(140deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, 0)100%);
    font-family: 'DM Sans';
    padding: 9px 12px;
    font-weight: 500;
    border-radius: 7px;
    border-width: 1px;
    border: 1px solid rgba(255, 255, 255, .1);
    transition: background-color 0.3s;
}

.nav .b {
    text-decoration: none;
    color: #d2cbcb; /* Adjust the color as needed */
    background-color: #206940;
    font-family: 'DM Sans';
    padding: 9px 12px;
    font-weight: 500;
    border-radius: 7px;
    border-width: 1px;
    border: 1px solid rgba(255, 255, 255, .1);
    transition: background-color 0.3s;
}

.dropdown {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #181818; /* Adjust the color as needed */
    font-family: 'DM Sans';
    padding: 9px 0px;
    font-weight: 500;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #181818;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 10px;
}

.dropdown-content a {
    color: #ffffff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    color: rgb(0, 179, 39);
    background-color: #696767;
    border-radius: 10px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content.show {
    display: block;
}

/* Hero Section */
.hero {
    background: url("../img/bg.png");
    background-size: cover;
    background-position: center;
    height: 80vh; /* Adjust the height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Add a dark overlay */
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}

.hero h1 {
    font-size: 60px; /* Adjust the font size as needed */
    font-weight: bolder;
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    animation: textUp 1s ease-in-out forwards;
}

@keyframes textUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero p {
    font-size: 1.5rem; /* Adjust the font size as needed */
    margin: 20px 0;
    margin-bottom: 30px;
}

.hero span {
    background-image: linear-gradient(0deg, rgba(22, 5, 52, 0), rgba(32, 105, 64, 0.4));
    border-radius: 12px;
    padding-left: 10px;
    padding-right: 10px;
    display: inline-block;
}

.herominecraft h1 {
    font-size: 60px; /* Adjust the font size as needed */
    font-weight: bolder;
    margin: 0;
}

.herominecraft p {
    font-size: 1.5rem; /* Adjust the font size as needed */
    margin: 20px 0;
    margin-bottom: 30px;
}

.herominecraft span {
    background-image: linear-gradient(0deg, rgba(0, 255, 72, 0), rgba(32, 105, 64, 0.4));
    border-radius: 12px;
    padding-left: 10px;
    padding-right: 10px;
    display: inline-block;
}

.herogames h1 {
    font-size: 60px; /* Adjust the font size as needed */
    font-weight: bolder;
    margin: 0;
}

.herogames p {
    font-size: 1.5rem; /* Adjust the font size as needed */
    margin: 20px 0;
    margin-bottom: 30px;
}

.herogames span {
    background-image: linear-gradient(0deg, rgba(0, 255, 72, 0), rgba(32, 105, 64, 0.4));
    border-radius: 12px;
    padding-left: 10px;
    padding-right: 10px;
    display: inline-block;
}

.cta-button {
    background-color: #206940; /* Adjust the button color as needed */
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    font-family: 'DM Sans';
    transition: background-color 0.3s;
}

.cta-glow {
    background-color: rgba(95, 249, 138, .1);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 7px;
    padding-right: 7px;
}

.cta-button:hover {
    color: black;
}

.toggle-buttons {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.toggle-buttons .cta-button {
    background-color: #058a00;
    color: rgb(0, 0, 0);
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.toggle-buttons .cta-button:hover {
    background-color: #206940;
}

.toggle-buttons .cta-button.active {
    background-color: #36b66d; /* Different shade of blue for active button */
    color: rgb(255, 255, 255);
}

/* Features Section */
.features {
    background-color: #181818;
    padding: 50px 20px;
    text-align: center;
    color: white;
    border-radius: 20px;
}

.features .container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #181818;
}

.features h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 40px;
}

.features span {
    background-image: linear-gradient(0deg, rgba(0, 255, 72, 0), rgba(32, 105, 64, 0.4));
    border-radius: 12px;
    padding-left: 10px;
    padding-right: 10px;
    display: inline-block;
}

.feature-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.feature-item {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 250px; /* Adjust the width as needed */
}

.feature-item i {
    font-size: 2.5rem;
    color: #00942a; /* Adjust the icon color as needed */
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
}

.feature-item p {
    font-size: 1rem;
    color: white;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .site-header {
        margin: 0px;
        width: 100%;
    }
    .header-container {
        flex-direction: column;
        align-items: center;
        margin: 0px;
    }

    .logo {
        margin: 20px 0; /* Adjust the margin as needed */
    }

    nav {
        padding-bottom: 10px;
    }

    .hero {
        height: 60vh; /* Adjust the height as needed */
    }

    .hero-content {
        padding: 10px;
    }

    .hero h1 {
        font-size: 2rem; /* Adjust the font size as needed */
    }

    .hero p {
        font-size: 1rem; /* Adjust the font size as needed */
    }

    .cta-button {
        padding: 8px 16px;
    }

    .feature-list {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 50vh; /* Adjust the height as needed */
    }

    .hero h1 {
        font-size: 1.5rem; /* Adjust the font size as needed */
    }

    .hero p {
        font-size: 0.875rem; /* Adjust the font size as needed */
    }

    .cta-button {
        padding: 6px 12px;
    }
}

/**** Server Features ****/
.features {
	position: relative;
	overflow: hidden;
}
.features::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  opacity: .08;
  top: 0;
  left: -250px;
  z-index: -3;
}
.features::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  opacity: .08;
  bottom: 0;
  right: -250px;
  z-index: -1;
}

.features .features_box img {
	width: 70px;
	height: 70px;
}

.features .features_box h3 {
	font-size: 26px;
	color: white;
}

.features .features_box p {
	width: 80%;
	margin: 0 auto;
}

.games_plans {
    background: #1e1e1e;
}

.games_plans .card_popular {
    border: 2px solid var(--blue-color);
}

.games_plans .card_popular .popular_content {
    background: var(--blue-color);
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: .02rem;
    padding: 6px 0;
}

.games_plans .card h1 {
    color: var(--primary-color);
    text-decoration: none;
}

.games_plans .card h2 {
    color: var(--blue-color);
    text-decoration: none;
}

.games_plans .card h2 span {
    font-size: 22px;
}

.games_plans .card ul {
    padding: 0;
    margin: 0;
}

.games_plans .card ul li {
    font-size: 18px;
    letter-spacing: .02rem;
    line-height: 26px;
}

.games_plans .card ul li span {
    color: var(--blue-color);
}

.games_plans .card .btn-light {
    text-transform: uppercase;
    font-size: 16px;
    padding: 10px 40px;
}

.card_game {
    overflow: hidden;
}

.card .wrapper {
  background-color: #fff;
  min-height: 280px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.2);
}
.card .wrapper:hover .data {
  transform: translateY(0);
}
.card .data {
  position: absolute;
  bottom: 0;
  width: 100%;
  transform: translateY(calc(70px + 1em));
  transition: transform 0.3s;
}
.card .data .content {
  padding: 1em;
  position: relative;
  z-index: 1;
}
.card .title {
  margin-top: 10px;
  text-decoration: none;
}
.card .text {
  height: 70px;
  margin: 0;
}
.card input[type=checkbox] {
  display: none;
}
.card input[type=checkbox]:checked + .menu-content {
  transform: translateY(-60px);
}

.card_game .wrapper:hover .menu-content span {
  transform: translate(-50%, -10px);
  opacity: 1;
}


.card_game .data {
  color: #fff;
  transform: translateY(calc(70px + 4em));
}
.card_game .title {
    margin-bottom: 30px;
    text-decoration: none;
}
.card_game .title a {
  color: #fff;
  text-decoration: none;
}
.card_game .btn-light {
    display: block;
    padding: 2px 10px !important;
}

.arsa {
    display: flex;
}

.stock {
    position: relative;
    float: left;
    font-size: 14px;
}

.pulse-dot:after {
  content: " ";
  background: #35ba9b;
  width: 6px;
  height: 6px;
  margin-left: 6px;
  position: absolute;
  transform: translate3d(0, 0, 0) rotate(45deg);
  border-radius: 100%;
  box-shadow: 0 0 0 0 rgba(53, 186, 155, 0.7);
  animation: pulse 1.4s infinite cubic-bezier(0.62, 0.2, 0.86, 0.53);
  -webkit-animation: pulse 1.4s infinite cubic-bezier(0.62, 0.2, 0.86, 0.53);
  -moz-animation: pulse 1.4s infinite cubic-bezier(0.62, 0.2, 0.86, 0.53);
}

.pulse-dot2:after {
  content: " ";
  background: #ff0000;
  width: 6px;
  height: 6px;
  margin-left: 6px;
  position: absolute;
  transform: translate3d(0, 0, 0) rotate(45deg);
  border-radius: 100%;
  box-shadow: 0 0 0 0 rgba(255, 0, 0, 1);
  animation: pulse 1.4s infinite cubic-bezier(0.62, 0.2, 0.86, 0.53);
  -webkit-animation: pulse 1.4s infinite cubic-bezier(0.62, 0.2, 0.86, 0.53);
  -moz-animation: pulse 1.4s infinite cubic-bezier(0.62, 0.2, 0.86, 0.53);
}

@-webkit-keyframes pulse {
  100% {
    box-shadow: 0 0 0 10px rgba(53, 186, 155, 0);
  }
}

.map .dot,.products .card .discount,.products .card .discount::after {
    position: absolute;
    background-color: var(--main-color)
}

.map .dot {
    width: 20px;
    height: 20px;
    border-radius: 50%
}

.map #info {
    bottom: 0;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--main-color);
    width: 100%;
    box-sizing: border-box;
    display: none;
    gap: 30px;
    position: relative;
    top: -160px
}

.map #info #location,.map #info #ping {
    font-size: 24px;
    font-weight: 700;
    color: var(--white)
}

.map #info #locationImage {
    width: 40px;
    height: 40px;
    display: none
}

.pulse {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--main-color);
    box-shadow: 0 0 0 var(--main-color);
    animation: 2s infinite pulsing;
    transition: .2s
}

@keyframes pulsing {
    from {
        box-shadow: 0 0 0 0 var(--main-color)
    }

    70% {
        box-shadow: 0 0 0 10px var(--main-color-gradient)
    }

    to {
        box-shadow: 0 0 0 0 var(--main-color-gradient)
    }
}

@media (max-width: 991.98px) {
    .navbar-dark {
        overflow:hidden
    }

    .nav-icon,.nav-open .navbar-collapse {
        display: block
    }

    .hero_box_content,.navbar-collapse {
        display: none
    }

    .hero_plans,.hero_section .swiper-slide .hero_content h2,.hero_section .swiper-slide .hero_content p {
        text-align: center
    }

    .map #info {
        top: 0
    }

    .map .col-lg-8 .pulse,.map .col-lg-8 img {
        margin-left: auto!important;
        margin-right: auto!important
    }

    .map .col-lg-8 img {
        margin-bottom: 10px
    }

    .map .col-lg-8 .pulse {
        margin-top: 20px;
        margin-bottom: 10px;
        width: 30px;
        height: 30px
    }

    .map .col-lg-8 .d-flex {
        display: block!important;
        text-align: center
    }

    .map #info #location,.map #info #ping {
        font-size: 20px
    }

    .map #info #locationImage {
        width: 34px;
        height: 34px
    }
}

/* Footer Section */
.footer-separator {
    border: 0;
    height: 1px;
    background: #ddd;
    margin: 40px 0;
}

footer {
    background-color: #000000;
    color: #fff;
    padding: 20px 0;
    font-family: 'DM Sans';
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
}

.social-icons a {
    margin-right: 10px;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-links {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

.footer-links .separator {
    color: #fff;
}

.footer-right p {
    margin: 0;
    font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-left, .footer-right {
        align-items: center;
    }

    .footer-right {
        margin-top: 20px;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
    }

    .footer-links a {
        margin: 5px 0;
    }

    .footer-links .separator {
        display: none;
    }
}


.toggle-switch {
    margin-bottom: 20px;
}

.pricing-tables {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1300px;
    gap: 20px;
}

.pricing-table {
    background-color: rgb(24, 24, 24);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, .1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 400px; /* Adjust the width as needed */
    text-align: center;
}

.pricing-table .pricing-button {
    background-image: linear-gradient(300deg, #206940, #66fe90);
    color: black;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    font-family: 'DM Sans';
}

.pricing-table h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-family: 'DM Sans';
    color: #fff;
}

.pricing-table .price {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
    font-family: 'DM Sans';
    color: #0baa50; /* Adjust the color as needed */
}

.pricing-table .price span {
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 500;
    font-family: 'DM Sans';
    color: #888888; /* Adjust the color as needed */
}

.pricing-table ul {
    list-style: none;
    padding: 0px;
    padding-bottom: 5px;
    margin: 0 0 20px 0;
}

.green-check-icon {
    background-image: url(../img/green-20check.svg);
    background-position: 0%;
    background-repeat: no-repeat;
    background-size: auto;
}

.pricing-table ul li {
    margin-bottom: 20px;
    font-size: 1.15rem;
    font-family: 'DM Sans';
    color: #ffffff; /* Adjust the text color as needed */
    text-align: left;
    padding-left: 30px;
}

/* FAQ Section */
.faq {
    padding: 50px 20px;
    background-color: #000000;
    color: #fff;
}

.faq .container {
    margin: 0 auto;
}

.faq h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    width: 100%;
    text-align: left;
    background-color: #000000;
    color: white;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 5px;
    font-size: 1.25rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #000000;
}

.faq-answer {
    display: none;
    background-color: rgb(0, 0, 0);
    padding: 15px;
}

.faq-answer p {
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .faq h2 {
        font-size: 2rem;
    }

    .faq-question {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .faq h2 {
        font-size: 1.5rem;
    }

    .faq-question {
        font-size: 0.875rem;
    }
}

/* Testimonial Carousel Section */
.testimonials {
    padding: 50px 20px;
    background-color: #181818;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, .1);
    text-align: center;
    position: relative;
}

.testimonials span {
    background-image: linear-gradient(0deg, rgba(0, 255, 72, 0), rgba(32, 105, 64, 0.4));
    border-radius: 12px;
    padding-left: 10px;
    padding-right: 10px;
    display: inline-block;
}

.testimonials .container {
    padding: 20px;
    margin: 0 auto;
    position: relative;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: white;
}

.testimonial-carousel {
    display: flex;
    overflow: hidden;
    position: static;
}

.testimonial-slide {
    min-width: 100%;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide p {
    font-size: 1.25rem;
    margin: 0 0 20px;
    color: #ffffff;
}

.testimonial-slide h3 {
    font-size: 1.5rem;
    margin: 0;
    color: white;
}

.testimonial-slide h4 {
    font-size: 1rem;
    color: #ffffff;
    margin: 5px 0 0;
}

.carousel-controls {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    gap: 10px;
}

button.prev, button.next {
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 100%;
    transition: background-color 0.3s;
}

/* Dropdown Content */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #181818;
    min-width: 300px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 2; /* Higher stacking order to stay on top of other content */
    padding: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: textUp .35s ease-in-out forwards;
}

/* Dropdown Grid */
.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Dropdown Item */
.dropdown-item {
    display: flex;
    align-items: flex-start;
}

.dropdown-icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.dropdown-description h4 {
    margin: 0;
    font-size: 16px;
}

.dropdown-description p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #dddada;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .testimonials h2 {
        font-size: 2rem;
    }

    .testimonial-slide p {
        font-size: 1rem;
    }

    .testimonial-slide h3 {
        font-size: 1.25rem;
    }

    .testimonial-slide h4 {
        font-size: 0.875rem;
    }

    button.prev, button.next {
        padding: 5px 10px;
    }
}

@media (max-width: 480px) {
    .testimonials h2 {
        font-size: 1.5rem;
    }

    .testimonial-slide p {
        font-size: 0.875rem;
    }

    .testimonial-slide h3 {
        font-size: 1rem;
    }

    .testimonial-slide h4 {
        font-size: 0.75rem;
    }

    button.prev, button.next {
        padding: 5px 10px;
    }
}
/* Slider Container */
.slider-container {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
}

/* Slider */
.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

/* Slide */
.slide {
    min-width: 100%;
    box-sizing: border-box;
}

/* Slide Image */
.slide img {
    width: 100%;
    border-radius: 15px;
    display: block;
}

/* Navigation Buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.5);
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}
.promo-header {
    background-color: #ffcc00;
    color: #333;
    text-align: center;
    padding: 15px 0;
    font-size: 1.2em;
    font-weight: bold;
}
.promo-code {
    background-color: #333;
    color: #ffcc00;
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
    margin-left: 10px;
}

.popular {
    border: 2px solid #206940;
    position: relative;
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 0 20px rgba(32, 105, 64, 0.6);
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #206940;
    color: #fff;
    font-size: 0.9em;
    font-weight: bold;
    padding: 6px 12px;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(32, 105, 64, 0.8);
}