/* ################### */
/* Global */
/* ################### */

@import url("https://fonts.googleapis.com/css2?family=Anton&family=Mochiy+Pop+One&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  list-style: none;
  outline: none;
  border: none;
  scroll-behavior: smooth;
}

:root {
  --accent: #fff;
  --accent2: #892d0c;
  --bg: #131319;
  --text: #fff;
  --pink: #f59cc2;
  --shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.2);
}
 /* For mobile devices */
        @media only screen and (max-width: 768px) {
            body {
                background-size: contain; /* or 'cover' depending on your preference */
                background-attachment: scroll; /* better performance on mobile */
            }
        }
body {
  background: var(--bg);
  color: var(--text);
}

section {
  text-align: center;
}

img {
  width: 100%;
}

p {
  max-width: 500px;
  text-align: center;
  margin: 1rem 0;
  font-size: 1rem;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  margin: 1rem auto;
}
/* Add this to your style.css file */
.news-para {
  max-width: 90%; /* Slightly narrower on all screens */
  margin: 1rem auto;
  font-size: 1rem;
  line-height: 1.6; /* Better readability */
  padding: 0 1rem; /* Add some side padding */
  text-align: center;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

/* Mobile-specific adjustments */
@media screen and (max-width: 768px) {
  .news-para {
    max-width: 95%; /* Use more screen width on mobile */
    font-size: 0.9rem; /* Slightly smaller font */
    line-height: 1.7; /* More spacing between lines */
    padding: 0 0.5rem; /* Less side padding */
    margin: 0.8rem auto; /* Tighter margins */
  }
}

/* For very small devices */
@media screen and (max-width: 480px) {
  .news-para {
    font-size: 0.85rem; /* Even smaller text */
    line-height: 1.8; /* More line spacing */
  }
}
@media screen and (max-width: 768px) {
  .news-para strong {
    font-size: 1rem; /* Slightly larger than regular text */
    color: var(--pink); /* Use your accent color */
  }
}
.btn {
  font-family: impact;
  font-size: 1.5rem;
  width: 41%;
  display: inline-block;
  margin: 1rem 0;
  padding: 15px 14px;
  background-color: rgb(45, 45, 45);
  color: whitesmoke;
  transition: 0.2s ease-in-out;
  border-radius: 4px;
}
.btn:hover {
  background-color: var(--pink);
  color: whitesmoke;
  transform: translateY(2px);
}

.section-heading {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.section-heading span {
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 3em;
  padding-left: 0.25em;
  padding-bottom: 10px;
}

/* ################### */
/* Header */
/* ################### */

header {
  position: fixed;
  z-index: 99;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  transition: 0.5s;
}

header.active {
  box-shadow: var(--shadow);
  background-color: #131319;
}

.logo img {
  width: 32px;
  border-radius: 6px;
  opacity: 0.7;
}

.navigation {
  position: relative;
  display: flex;
}

.navigation a {
  color: var(--text);
  padding: 10px 45px;
  margin-right: 1rem;
}
.navigation a:hover,
.navigation a.active {
  background-color: #e4e4e4a3;
  border-radius: 10px;
}

/* ################### */
/* Home*/
/* ################### */

.home {
  padding: 60px;
  width: 100%;
  height: 100vh;
  background-image: url("assets/images/mypbackground.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow: inset 0px 15px 81px -00px rgba(0, 0, 0, 0.5),
    inset 0px -11px 81px 0px rgba(0, 0, 0, 0.5);
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-content {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 20%; /* Adjust this percentage to move up/down */
  left: 0;
  right: 0;
  padding: 0 20px;
}

.home-content h1 {
  margin: 0;
  font-size: clamp(2rem, 8vw, 5rem);
  font-weight: 700;
  color: var(--accent);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
  letter-spacing: 2px;
}

.home-content p {
  margin: 15px auto 0;
  font-size: clamp(1rem, 3vw, 1.5rem);
  color: var(--text);
  max-width: 600px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  line-height: 1.4;
}

/* Mobile responsiveness */
@media only screen and (max-width: 768px) {
  .home-content {
    top: 15%;
    padding: 0 15px;
  }
  
  .home-content h1 {
    font-size: clamp(1.8rem, 6vw, 3rem);
  }
  
  .home-content p {
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    max-width: 90%;
  }
}
/* For mobile devices */
@media only screen and (max-width: 768px) {
  .home {
    background-attachment: scroll; /* Better performance on mobile */
    background-image: url("assets/images/mypbackground.jpg"); /* Ensure path is correct */
    background-size: cover;
    background-position: center;
    padding: 20px; /* Reduce padding on mobile */
  }
}

/* ################### */
/* New Story */
/* ################### */

.box-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.box-img img {
  width: 80%;
  height: 90%;
  margin-top: 4rem;
  object-fit: cover;
  transition: transform 0.2s ease-in-out;
}
/* Add this to your style.css file */
@media screen and (max-width: 768px) {
  /* About section logos */
  .news-container .box-img img {
    width: 60%; /* Reduce size on mobile */
    height: auto; /* Maintain aspect ratio */
    margin-top: 2rem; /* Reduce top margin */
  }
  
  /* If you want to stack the logos vertically on mobile */
  .news-container {
    grid-template-columns: 1fr; /* Single column layout */
    gap: 1rem;
  }
}
.box:hover .box-img img {
  transform: scale(1.2);
}

.news-container {
  margin-top: 2rem;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* ################### */
/* Video Trailer */
/* ################### */

/* Add this to your style.css file */
.videoContainer {
  position: relative;
  overflow: hidden;
  max-width: 800px; /* Adjust this value to make the container smaller */
  margin: 2rem auto; /* Added margin for better spacing */
  border-radius: 10px; /* Optional: adds rounded corners */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); /* Optional: adds subtle shadow */
}

.videoMP4 {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
}

.videoControl {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .videoContainer {
    max-width: 90%; /* Takes 90% of screen width on mobile */
    margin: 1rem auto;
  }
}
/* ################### */
/* New Gameplay */
/* ################### */

.slider-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider-container img {
  width: 230%; /* Change this percentage to adjust the size */
  max-width: 600px; /* Add this to limit maximum size */
  height: auto; /* Maintain aspect ratio */
  box-shadow: var(--shadow);
  margin: 0 auto; /* Center the images */
}
/* For mobile responsiveness */
@media (max-width: 768px) {
  .slider-container img {
    width: 90%; /* Larger percentage on smaller screens */
    max-width: 100%; /* Allow full width on mobile */
  }
}

.swiper-pagination > .swiper-pagination-bullet {
  opacity: 1;
  border: rgb(111, 111, 111) solid 0.5px;
  background-color: transparent;
}
.swiper-pagination > .swiper-pagination-bullet-active {
  background-color: white;
}

/* ################### */
/* Coming Soon */
/* ################### */

.ComingSoon-container {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 600px;
  margin: 1rem auto;
  border: solid 2px rgb(45, 45, 45);
  padding: 30px 30px;
}

.ComingSoon-img img {
  width: 500px;
  height: 50%;
  border-radius: 7px;
  object-fit: contain;
  object-position: center;
  background: no-repeat top / cover;
}

.ComingSoon-content span {
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
}
.ComingSoon-content h1 {
  font-size: 2rem;
  margin: 1rem 0;
  font-family: impact;
}
/* ################### */
/* buton to top*/
/* ################### */
/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--pink);
  color: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 98;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--accent);
  transform: translateY(-3px);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .back-to-top {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    bottom: 20px;
    right: 20px;
  }
}
/* ==================== */
/* Statistics Section */
/* ==================== */
.stats {
  padding: 4rem 0;
  background: rgba(19, 19, 25, 0.9);
}

.stats-container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-card {
  background: rgba(245, 156, 194, 0.1);
  border-radius: 10px;
  padding: 2rem 1rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(245, 156, 194, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.stat-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: 0.5s;
}

.stat-card:hover::after {
  left: 100%;
}

/* Make the numbers pop on hover */
.stat-card:hover h2 {
  color: #fff;
  text-shadow: 0 0 10px rgba(245, 156, 194, 0.5);
}

/* Optional: Add a pulse animation */
@keyframes statPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); }
}

.stat-card:hover {
  animation: statPulse 1s ease infinite;
}
.stat-card:hover {
  transform: translateY(-5px);
  background: rgba(245, 156, 194, 0.15);
  box-shadow: 0 10px 20px rgba(245, 156, 194, 0.2);
  border-color: rgba(245, 156, 194, 0.3);
}

.stat-card h2 {
  font-size: 2.5rem;
  color: var(--pink);
  margin-bottom: 0.5rem;
  font-family: 'Impact', sans-serif;
}

.stat-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0 1rem;
  }
  
  .stat-card {
    padding: 1.5rem 0.5rem;
  }
  
  .stat-card h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .stats-container {
    grid-template-columns: 1fr;
  }
}
/* ################### */
/* footer*/
/* ################### */

.footer-logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-VI {
  margin-top: 2rem;
  width: 100px;
}

.logos-container {
  margin-top: 2rem;
  display: flex;
  justify-content: space-evenly;
}

.logos-container img {
  width: 30px;
  height: 30px;
}

/* Footer Styles */
footer {
  width: 100%;
  text-align: center;
  padding: 2rem 0;
  background: rgba(19, 19, 25, 0.9);
}

.footer-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 3rem;
  padding: 0 1rem;
}

.footer-box {
  text-align: center;
  min-width: 200px;
}

.footer-box h6 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--pink);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: var(--text);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--pink);
}

.copyright {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer-box {
    margin-bottom: 1rem;
  }
}
/* ################### */
/* Features Section */
/* ################### */

.features {
  padding: 4rem 0;
  background: var(--bg);
}

.features-container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(245, 156, 194, 0.1);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(245, 156, 194, 0.1), transparent);
  transition: 0.5s;
}

.feature-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 30px rgba(245, 156, 194, 0.2);
  border-color: rgba(245, 156, 194, 0.3);
}

.feature-card:hover::before {
  left: 100%;
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--pink);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.feature-icon i {
  display: inline-block;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-card:hover .feature-icon i {
  transform: scale(1.2);
  text-shadow: 0 0 10px rgba(245, 156, 194, 0.5);
}

.feature-card h3 {
  font-family: 'Impact', sans-serif;
  color: var(--pink);
  margin-bottom: 1rem;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.feature-card:hover h3 {
  color: #fff;
  text-shadow: 0 0 5px rgba(245, 156, 194, 0.5);
}

.feature-card p {
  margin: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.feature-card:hover p {
  color: #fff;
}

/* Pulse animation on hover */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(245, 156, 194, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(245, 156, 194, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 156, 194, 0); }
}

.feature-card:hover {
  animation: pulse 1.5s infinite;
}

/* Responsive */
@media (max-width: 768px) {
  .features-container {
    grid-template-columns: 1fr;
    padding: 0 1rem;
    gap: 1.5rem;
  }
  
  .feature-card {
    padding: 1.5rem;
  }
  
  .feature-card:hover {
    transform: translateY(-5px);
  }
}
/* ################### */
/* Breakpoints*/
/* ################### */

@media screen and (max-width: 998px) {
  header {
    padding: 2rem 1rem;
  }
  .section {
    padding: 50px 4%;
  }

  .navigation {
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: -100%;
    width: 280px;
    min-height: 100vh;
    box-shadow: var(--shadow);
    transition: right 0.2s ease-in-out;
    background: var(--bg);
  }

  .navigation a {
    display: block;
    font-family: Impact;
  }

  .navigation a:hover,
  .navigation a.active {
    color: var(--pink);
    background-color: transparent;
    transform: translateY(2px);
  }

  .navigation.active {
    right: 0;
  }

  .ComingSoon-img img {
    width: 280px;
    position: relative;
    height: 50%;
    border-radius: 7px;
    object-fit: contain;
    object-position: center;
    background: no-repeat top / cover;
  }
}

@media screen and (max-width: 481px) {
  .box,
  .box-img {
    height: 300px;
  }

  .home {
    background: url("assets/images/mypbackground.jpg");
    background-position: top;
  }

  .home-content h1 {
    font-size: 20px;
    position: relative;
    text-align: center;
  }
  .home-content p {
    font-size: 0.7rem;
    justify-content: center;
    text-align: center;
  }

  .ComingSoon-content h1 {
    font-size: 1rem;
    margin: 1rem 0;
    font-family: impact;
  }
  .ComingSoon img {
    max-width: 150px;
  }
  p {
    font-size: 1rem;
    margin: 1rem auto;
    font-family: impact;
  }

  .btn {
    font-size: 1rem;
    width: 60%;
    padding: 10px 10px;
  }

  .copy {
    font-size: 7px;
  }

  .slider-container img {
    width: 90%;
  }
}
/* ################### */
/* Contact Section */
/* ################### */

.contact {
  padding: 4rem 0;
  background: rgba(19, 19, 25, 0.9);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.info-box:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.info-box i {
  font-size: 1.8rem;
  color: var(--pink);
  margin-bottom: 0.5rem;
}

.info-box h4 {
  font-size: 1.2rem;
  font-family: 'Impact', sans-serif;
  color: var(--pink);
}

.info-box p {
  margin: 0;
  text-align: left;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--pink);
  color: var(--bg);
  transform: translateY(-3px);
}

/* Form Styles (same as before) */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  width: 100%;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  font-size: 1rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text);
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--pink);
  background: rgba(255, 255, 255, 0.15);
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form .btn {
  width: auto;
  padding: 12px 30px;
  font-size: 1rem;
  background: var(--pink);
  color: var(--bg);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.contact-form .btn:hover {
  background: #e48cb5;
  transform: translateY(-2px);
}

.form-status {
  text-align: center;
  padding: 10px;
  border-radius: 5px;
  margin-top: 1rem;
  display: none;
}

.form-status.success {
  display: block;
  background: rgba(40, 167, 69, 0.2);
  color: #28a745;
}

.form-status.error {
  display: block;
  background: rgba(220, 53, 69, 0.2);
  color: #dc3545;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .info-box {
    padding: 1rem;
  }
}

/* ################### */
/* Faction*/
/* ################### */
/* ################### */
/* Gang Logos Section */
/* ################### */

.gangs-section {
  padding: 4rem 0;
  background: var(--bg);
}

.gangs-container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.gang-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
  box-shadow: var(--shadow);
}

.gang-card:hover {
  transform: translateY(-10px);
}

.gang-logo {
  padding: 2rem;
  background: rgba(0, 0, 0, 0.3);
  text-align: center;
}

.gang-logo img {
  max-width: 200px;
  height: auto;
  object-fit: contain;
}

.gang-info {
  padding: 1.5rem;
  text-align: center;
}

.gang-info h3 {
  font-family: 'Impact', sans-serif;
  color: var(--pink);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.gang-info p {
  margin: 0.5rem 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}

/* Responsive */
@media (max-width: 768px) {
  .gangs-container {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }
  
  .gang-logo img {
    max-width: 150px;
  }
}
/* ################### */
/* Full Team Section */
/* ################### */

.full-team {
  padding: 4rem 0;
  background: var(--bg);
}

.team-section {
  margin-bottom: 3rem;
}

.team-category {
  color: var(--pink);
  font-family: 'Impact', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
  padding-bottom: 0.5rem;
}

.team-category::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--pink);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.team-social a {
  color: var(--text);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.team-social a:hover {
  color: var(--pink);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .team-category {
    font-size: 1.5rem;
  }
}
/* ################### */
/* Team Preview Section */
/* ################### */

.team-preview {
  padding: 4rem 0;
  background: var(--bg);
}

.team-container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.team-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(245, 156, 194, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(245, 156, 194, 0.1),
    transparent
  );
  transition: 0.5s;
}
.team-card:hover::before {
  left: 100%;
}

.team-card:hover .team-img {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(245, 156, 194, 0.4);
}

.team-card:hover h3 {
  color: #fff;
  text-shadow: 0 0 10px rgba(245, 156, 194, 0.5);
}

/* Add a subtle pulse animation on hover */
@keyframes teamPulse {
  0% { transform: translateY(-10px) scale(1); }
  50% { transform: translateY(-10px) scale(1.02); }
  100% { transform: translateY(-10px) scale(1); }
}

.team-card:hover {
  animation: teamPulse 1.5s ease infinite;
}

.team-img {
  transition: all 0.4s ease;
  position: relative;
}

.team-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(245, 156, 194, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 50%;
}

.team-card:hover .team-img::after {
  opacity: 1;
}
.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(245, 156, 194, 0.3);
  background: rgba(255, 255, 255, 0.1);
}
.team-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  border: 3px solid var(--pink);
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h3 {
  color: var(--pink);
  font-family: 'Impact', sans-serif;
  margin-bottom: 0.5rem;
}

.team-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 768px) {
  .team-container {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }
  
  .team-img {
    width: 120px;
    height: 120px;
  }
}
/* ################### */
/* Team List Style */
/* ################### */

.team-list {
  text-align: left;
  max-width: 300px;
  margin: 0 auto;
}

.team-member {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 5px;
  padding: 0.8rem 1.5rem;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.team-member:hover {
  background: rgba(245, 156, 194, 0.2);
  transform: translateX(5px);
}

.team-member p {
  margin: 0;
  text-align: left;
  font-size: 1.1rem;
  color: white;
  font-family: 'Courier New', monospace;
}

.team-category {
  color: var(--pink);
  font-family: 'Impact', sans-serif;
  font-size: 1.8rem;
  margin: 1.5rem 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
}

@media (max-width: 768px) {
  .team-list {
    max-width: 250px;
  }
  
  .team-member p {
    font-size: 1rem;
  }
  
  .team-category {
    font-size: 1.5rem;
  }
}
/* Voting Button Styles */
.voting-btn {
  display: inline-block;
  background-color: var(--pink);
  color: var(--bg);
  padding: 12px 25px;
  border-radius: 5px;
  font-family: 'Impact', sans-serif;
  font-size: 1.2rem;
  margin: 1.5rem auto;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.voting-btn:hover {
  background-color: #e48cb5;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.voting-btn i {
  margin-right: 8px;
}

/* Center the voting section */
.voting-section {
  text-align: center;
  padding: 2rem 0;
  background: rgba(19, 19, 25, 0.7);
  margin-top: 2rem;
}
/* Last Update Styles */
.last-update {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0.5rem 0 2rem 0;
  font-family: 'Courier New', monospace;
  font-style: italic;
}
/* Add this to your style.css file */
:root {
  --accent: #fff;
  --accent2: #892d0c;
  --bg: #131319;
  --text: #fff;
  --pink: #f59cc2;
  --shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.2);
}

[data-theme="light"] {
  --bg: #f5f5f5;
  --text: #333;
  --pink: #d23669;
  --shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1);
}

/* Add a transition for smooth theme changes */
body {
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Theme toggle button styles */
.theme-toggle {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--pink);
  color: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 98;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border: none;
  transition: all 0.3s ease;
}

.theme-toggle:hover {
  transform: scale(1.1);
}

/* Adjust position when back-to-top button is visible */
.back-to-top.active ~ .theme-toggle {
  bottom: 90px;
}

@media (max-width: 768px) {
  .theme-toggle {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    bottom: 20px;
    left: 20px;
  }
  
  .back-to-top.active ~ .theme-toggle {
    bottom: 70px;
  }
}
/* ################### */
/* Top Sultan Section */
/* ################### */

.top-sultan {
  padding: 4rem 0;
  background: var(--bg);
}

.sultan-container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.sultan-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border-top: 5px solid;
}

.sultan-card.gold {
  border-color: #FFD700;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.sultan-card.silver {
  border-color: #C0C0C0;
  box-shadow: 0 5px 15px rgba(192, 192, 192, 0.2);
}

.sultan-card.bronze {
  border-color: #CD7F32;
  box-shadow: 0 5px 15px rgba(205, 127, 50, 0.2);
}

.sultan-card:hover {
  transform: translateY(-10px);
}

.crown {
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 2.5rem;
  color: inherit;
}

.sultan-card.gold .crown {
  color: #FFD700;
}

.sultan-card.silver .crown {
  color: #C0C0C0;
}

.sultan-card.bronze .crown {
  color: #CD7F32;
}

.sultan-rank {
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: 'Impact', sans-serif;
  font-size: 1.2rem;
}

.sultan-card.gold .sultan-rank {
  color: #FFD700;
}

.sultan-card.silver .sultan-rank {
  color: #C0C0C0;
}

.sultan-card.bronze .sultan-rank {
  color: #CD7F32;
}

.sultan-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 1rem auto;
  border: 3px solid;
}

.sultan-card.gold .sultan-img {
  border-color: #FFD700;
}

.sultan-card.silver .sultan-img {
  border-color: #C0C0C0;
}

.sultan-card.bronze .sultan-img {
  border-color: #CD7F32;
}

.sultan-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sultan-info h3 {
  font-family: 'Times New Roman', Times, serif;
  color: var(--pink);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.sultan-info p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0.3rem 0;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .sultan-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .sultan-card {
    padding: 1.5rem;
  }
}
/* ################### */
/* Top Sultan Section - Enhanced Hover Effects */
/* ################### */

.sultan-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.sultan-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: 0.5s;
}

.sultan-card:hover::before {
  left: 100%;
}

/* Gold card specific hover effects */
.sultan-card.gold:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.4);
  background: rgba(255, 215, 0, 0.05);
}

.sultan-card.gold:hover .sultan-img {
  border-color: #FFD700;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

/* Silver card specific hover effects */
.sultan-card.silver:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 30px rgba(192, 192, 192, 0.4);
  background: rgba(192, 192, 192, 0.05);
}

.sultan-card.silver:hover .sultan-img {
  border-color: #C0C0C0;
  box-shadow: 0 0 20px rgba(192, 192, 192, 0.5);
}

/* Bronze card specific hover effects */
.sultan-card.bronze:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 30px rgba(205, 127, 50, 0.4);
  background: rgba(205, 127, 50, 0.05);
}

.sultan-card.bronze:hover .sultan-img {
  border-color: #CD7F32;
  box-shadow: 0 0 20px rgba(205, 127, 50, 0.5);
}

/* Crown animation on hover */
.sultan-card:hover .crown {
  animation: crownBounce 1s ease infinite;
}

@keyframes crownBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Sultan image grow effect */
.sultan-img {
  transition: all 0.3s ease;
}

.sultan-card:hover .sultan-img {
  transform: scale(1.1);
}

/* Text glow effect */
.sultan-card:hover h3 {
  text-shadow: 0 0 10px currentColor;
}

/* Pulse animation for all cards */
@keyframes sultanPulse {
  0% { transform: translateY(-10px) scale(1.02); }
  50% { transform: translateY(-10px) scale(1.05); }
  100% { transform: translateY(-10px) scale(1.02); }
}

.sultan-card:hover {
  animation: sultanPulse 2s ease infinite;
}
/* Add this to your style.css file */
.discord-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: #5865F2;
  color: white;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-left: auto;
  margin-right: 15px;
}

.discord-btn:hover {
  background-color: #4752c4;
  transform: translateY(-2px);
}

.discord-btn i {
  font-size: 1.5rem;
}

.discord-text {
  display: inline;
}

/* Mobile styles */
@media screen and (max-width: 768px) {
  .discord-btn {
    padding: 8px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    justify-content: center;
  }
  
  .discord-text {
    display: none;
  }
  
  .discord-btn i {
    font-size: 1.5rem;
    margin: 0;
  }
}

/* Adjust header spacing when burger menu is visible */
@media screen and (max-width: 998px) {
  header {
    padding: 1rem;
  }
  
  .discord-btn {
    margin-right: 50px; /* Make space for burger menu */
  }
}

/* For very small screens */
@media screen and (max-width: 480px) {
  .discord-btn {
    width: 36px;
    height: 36px;
  }
  
  .discord-btn i {
    font-size: 1.3rem;
  }
}
/* Add to your style.css */
.typewriter {
  display: inline-block;
  position: relative;
}

.typewriter::after {
  content: "|";
  position: absolute;
  right: -8px;
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.typewriter-text {
  font-family: Georgia, 'Times New Roman', Times, serif;
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid var(--pink);
  animation: typing 3.5s steps(10, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: var(--pink); }
}
/* Add this to your style.css file */
@media screen and (max-width: 768px) {
  .team-card {
    padding: 1.5rem 0.5rem;
    text-align: center;
  }
  
  .team-card h3 {
    text-align: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .team-card p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Fix the role titles (Founder, Co Owner, SAMP Management) */
  .team-card > h3:first-child {
    text-align: center;
    width: 100%;
    margin-bottom: 0.5rem;
  }
}

/* For very small screens */
@media screen and (max-width: 480px) {
  .team-card {
    padding: 1rem 0.25rem;
  }
  
  .team-card h3 {
    font-size: 1.2rem;
  }
  
  .team-card p {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 768px) {
  .team-img {
    margin-left: auto;
    margin-right: auto;
  }
}
/* ################### */
/* Privacy Policy Section */
/* ################### */

.privacy-policy {
  padding: 4rem 0;
  background: var(--bg);
}

.last-updated {
  color: var(--pink);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  font-style: italic;
}

.privacy-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.privacy-content {
  text-align: left;
  color: rgba(255, 255, 255, 0.9);
}

.intro {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  text-align: left;
  max-width: 100%;
}

.policy-section {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-section h3 {
  color: var(--pink);
  font-family: 'Impact', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.policy-section p {
  text-align: left;
  font-size: 1rem;
  line-height: 1.7;
  margin: 1rem 0;
  max-width: 100%;
}

.policy-section ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.policy-section li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.contact-methods {
  list-style: none;
  padding-left: 0;
}

.contact-methods li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.contact-methods i {
  margin-right: 10px;
  font-size: 1.2rem;
  color: var(--pink);
}

.contact-methods a {
  color: var(--text);
  transition: color 0.3s ease;
}

.contact-methods a:hover {
  color: var(--pink);
}

.policy-updates {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-updates h3 {
  color: var(--pink);
  font-family: 'Impact', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .privacy-container {
    padding: 0 1rem;
  }
  
  .policy-section h3 {
    font-size: 1.3rem;
  }
  
  .policy-section p, 
  .policy-section li {
    font-size: 0.95rem;
  }
  
  .contact-methods li {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .contact-methods i {
    margin-bottom: 5px;
  }
}

@media (max-width: 480px) {
  .policy-section h3 {
    font-size: 1.2rem;
  }
  
  .policy-section p, 
  .policy-section li {
    font-size: 0.9rem;
  }
  
  .intro {
    font-size: 1rem;
  }
}
/* ################### */
/* Terms & Conditions Section */
/* ################### */

.terms-conditions {
  padding: 4rem 0;
  background: var(--bg);
}

.intro-text {
  color: var(--pink);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  font-style: italic;
}

.terms-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.terms-content {
  text-align: left;
  color: rgba(255, 255, 255, 0.9);
}

.notice-box {
  background: rgba(245, 156, 194, 0.1);
  border-left: 4px solid var(--pink);
  padding: 1rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
}

.notice-box i {
  font-size: 2rem;
  color: var(--pink);
  margin-right: 1rem;
}

.notice-box p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.terms-section {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.terms-section h2 {
  color: var(--pink);
  font-family: 'Impact', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.terms-section p {
  text-align: left;
  font-size: 1rem;
  line-height: 1.7;
  margin: 1rem 0;
  max-width: 100%;
}

.terms-section ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.terms-section li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.contact-box {
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.contact-box h3 {
  color: var(--pink);
  font-family: 'Impact', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-methods {
  list-style: none;
  padding-left: 0;
}

.contact-methods li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.contact-methods i {
  margin-right: 10px;
  font-size: 1.2rem;
  color: var(--pink);
}

.contact-methods a {
  color: var(--text);
  transition: color 0.3s ease;
}

.contact-methods a:hover {
  color: var(--pink);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .terms-container {
    padding: 0 1rem;
  }
  
  .terms-section h2 {
    font-size: 1.3rem;
  }
  
  .terms-section p, 
  .terms-section li {
    font-size: 0.95rem;
  }
  
  .notice-box {
    flex-direction: column;
    text-align: center;
  }
  
  .notice-box i {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
  
  .contact-methods li {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .contact-methods i {
    margin-bottom: 5px;
  }
}

@media (max-width: 480px) {
  .terms-section h2 {
    font-size: 1.2rem;
  }
  
  .terms-section p, 
  .terms-section li {
    font-size: 0.9rem;
  }
  
  .intro-text {
    font-size: 1rem;
  }
  
  .contact-box {
    padding: 1rem;
  }
}
/* ################### */
/* Cookie Consent Banner */
/* ################### */

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(19, 19, 25, 0.95);
  color: white;
  padding: 1rem;
  z-index: 999;
  display: none;
  border-top: 1px solid var(--pink);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-content p {
  flex: 1;
  min-width: 250px;
  margin: 0;
  text-align: left;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-btn {
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cookie-btn.accept {
  background-color: var(--pink);
  color: var(--bg);
}

.cookie-btn.decline {
  background-color: transparent;
  color: var(--text);
  border: 1px solid var(--text);
}

.cookie-btn.accept:hover {
  background-color: #e48cb5;
  transform: translateY(-2px);
}

.cookie-btn.decline:hover {
  color: var(--pink);
  border-color: var(--pink);
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-content p {
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}
/* ################### */
/* Downloads Section */
/* ################### */

.downloads {
  padding: 4rem 0;
  background: var(--bg);
}

.downloads-container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.download-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(245, 156, 194, 0.1);
}

.download-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 30px rgba(245, 156, 194, 0.2);
}

.download-icon {
  width: 60px; /* Adjust as needed */
  height: 60px;
  margin: 0 auto 1rem;
}
.download-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.download-card h3 {
  font-family: 'Impact', sans-serif;
  color: var(--pink);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.download-card p {
  margin: 0 auto 1.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.download-card .btn {
  width: auto;
  padding: 12px 30px;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .downloads-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .download-card {
    padding: 1.5rem;
  }
}
/* ################### */
/* Download Page - Enhanced Mobile Styles */
/* ################### */

.download-page {
  padding: 2rem 0;
  background: var(--bg);
}

.download-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.download-video {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  margin: 1rem 0;
}

.download-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.download-info {
  text-align: center;
  padding: 0 1rem;
}

.download-info h3 {
  color: var(--pink);
  font-family: 'Impact', sans-serif;
  margin: 1rem 0 0.5rem;
  font-size: 1.5rem;
}

.download-info ul, 
.download-info ol {
  margin: 0.5rem auto 1.5rem;
  padding-left: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: left;
  max-width: 500px;
}

.download-info li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Download Now Button Styles */
.download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #f59cc2, #d23669);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(245, 156, 194, 0.4);
  text-decoration: none;
}

.download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(245, 156, 194, 0.6);
  background: linear-gradient(135deg, #d23669, #f59cc2);
}

.download-btn i {
  font-size: 1.3rem;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .download-btn {
    padding: 10px 20px;
    font-size: 1rem;
  }
}

.checksum {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  font-family: monospace;
  word-break: break-all;
}

/* Tablet and Desktop Styles */
@media (min-width: 768px) {
  .download-page {
    padding: 4rem 0;
  }
  
  .download-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 0 2rem;
  }
  
  .download-info {
    text-align: left;
    padding: 0;
  }
  
  .download-info ul,
  .download-info ol {
    margin: 0.5rem 0 1.5rem;
  }
  
  .download-btn {
    width: auto;
    margin: 1rem 0;
    justify-content: flex-start;
  }
}

/* Very small mobile devices */
@media (max-width: 480px) {
  .download-info h3 {
    font-size: 1.3rem;
  }
  
  .download-info li {
    font-size: 0.9rem;
  }
  
  .download-btn {
    width: 90%;
    padding: 10px 15px;
    font-size: 1rem;
  }
  
  .section-heading {
    padding-top: 3rem;
    padding-bottom: 2rem;
  }
  
  .section-heading span {
    font-size: 18px;
    line-height: 2em;
  }
}

/* Improved mobile header spacing */
@media (max-width: 768px) {
  header {
    padding: 0.5rem;
  }
  
  .logo img {
    width: 28px;
  }
  
  .discord-btn {
    padding: 6px;
    width: 36px;
    height: 36px;
  }
  
  .discord-btn i {
    font-size: 1.3rem;
  }
}

/* Better video controls for mobile */
video::-webkit-media-controls {
  display: flex;
}

video::-webkit-media-controls-play-button,
video::-webkit-media-controls-volume-slider,
video::-webkit-media-controls-mute-button,
video::-webkit-media-controls-timeline,
video::-webkit-media-controls-current-time-display,
video::-webkit-media-controls-time-remaining-display {
  -webkit-appearance: none;
  display: flex;
}

/* Improved list readability */
.download-info ul li::before {
  content: "•";
  color: var(--pink);
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.download-info ol {
  counter-reset: item;
  padding-left: 1.2rem;
}

.download-info ol li {
  counter-increment: item;
  position: relative;
}

.download-info ol li::before {
  content: counter(item) ".";
  color: var(--pink);
  position: absolute;
  left: -1.2rem;
}
/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  background-color: var(--bg);
  padding: 2rem;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  border: 1px solid var(--pink);
  box-shadow: 0 5px 30px rgba(245, 156, 194, 0.3);
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

.modal.active .modal-content {
  transform: translateY(0);
}

.modal-content h3 {
  color: var(--pink);
  font-family: 'Impact', sans-serif;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.modal-content p {
  margin-bottom: 1.5rem;
  text-align: center;
}

.modal-content ul {
  text-align: left;
  margin: 1rem 0 2rem;
  padding-left: 1.5rem;
}

.modal-content ul li {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.modal-content ul li::before {
  content: "•";
  color: var(--pink);
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.modal-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.modal-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.modal-btn.confirm {
  background-color: var(--pink);
  color: var(--bg);
}

.modal-btn.cancel {
  background-color: transparent;
  color: var(--text);
  border: 1px solid var(--text);
}

.modal-btn:hover {
  transform: translateY(-2px);
}

.modal-btn.confirm:hover {
  background-color: #e48cb5;
}

.modal-btn.cancel:hover {
  color: var(--pink);
  border-color: var(--pink);
}

.modal-content i.bxs-check-circle {
  font-size: 4rem;
  color: var(--pink);
  margin-bottom: 1rem;
  display: block;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .modal-content {
    padding: 1.5rem;
  }
  
  .modal-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .modal-btn {
    width: 100%;
  }
}
i[class^='bx'] {
  font-family: 'boxicons' !important;
  font-style: normal;
  font-weight: normal !important;
  display: inline-block;
}
/* Lock Button Styles */
.lock-btn-container {
  text-align: center;
  margin: 2rem 0;
}

.lock-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #f59cc2, #d23669);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(245, 156, 194, 0.4);
}

.lock-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(245, 156, 194, 0.6);
  background: linear-gradient(135deg, #d23669, #f59cc2);
}

.lock-btn i {
  font-size: 1.3rem;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .lock-btn {
    padding: 10px 20px;
    font-size: 1rem;
  }
}
/* Lock Button Styles */
.lock-btn-container {
  text-align: center;
  margin: 2rem 0;
}

.lock-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #f59cc2, #d23669);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(245, 156, 194, 0.4);
}

.lock-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(245, 156, 194, 0.6);
  background: linear-gradient(135deg, #d23669, #f59cc2);
}

.lock-btn i {
  font-size: 1.3rem;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .lock-btn {
    padding: 10px 20px;
    font-size: 1rem;
  }
}
/* Top Staff Simple List Layout */
.top-staff-simple {
  padding: 4rem 0;
  background: var(--bg);
}

.staff-simple-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 2rem;
}

.staff-simple-group {
  margin-bottom: 3rem;
}

.staff-simple-list {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  padding: 1rem;
  margin-top: 1rem;
  border: 1px solid rgba(245, 156, 194, 0.1);
}

.staff-simple-item {
  display: flex;
  align-items: center;
  padding: 1rem;
  margin-bottom: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.staff-simple-item:hover {
  background: rgba(245, 156, 194, 0.1);
  transform: translateX(5px);
}

.staff-simple-item:last-child {
  margin-bottom: 0;
}

.simple-rank {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Impact', sans-serif;
  font-size: 1.1rem;
  color: var(--bg);
  font-weight: bold;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.simple-rank.gold {
  background: #FFD700;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.simple-rank.silver {
  background: #C0C0C0;
  box-shadow: 0 0 10px rgba(192, 192, 192, 0.3);
}

.simple-rank.bronze {
  background: #CD7F32;
  box-shadow: 0 0 10px rgba(205, 127, 50, 0.3);
}

.simple-details {
  flex-grow: 1;
  min-width: 0;
}

.simple-details h3 {
  color: var(--pink);
  font-family: 'Impact', sans-serif;
  margin-bottom: 0.3rem;
  font-size: 1.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.simple-role {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-weight: normal;
}

.simple-percentage {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-style: italic;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .staff-simple-container {
    padding: 0 1rem;
  }
  
  .staff-simple-item {
    padding: 0.8rem;
  }
  
  .simple-rank {
    width: 30px;
    height: 30px;
    font-size: 1rem;
    margin-right: 1rem;
  }
  
  .simple-details h3 {
    font-size: 1.1rem;
  }
  
  .simple-role {
    font-size: 0.8rem;
  }
  
  .simple-percentage {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .simple-details h3 {
    white-space: normal;
  }
}