@import url("https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
nav {
  background: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  padding: 12px 0;
  position: fixed;
  top: 15px;
  width: 90%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 20px;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-wrap: wrap;
  overflow: hidden;
}
nav.expanded {
  padding: 12px 0 20px 0;
}
nav .nav-links {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
  flex-grow: 1;
}
nav .nav-links li {
  margin: 0 15px;
  display: flex;
  align-items: center;
}
nav .nav-links li img {
  border-radius: 50%;
  max-height: 40px;
  display: block;
}
nav .nav-links a {
  color: #ececec;
  text-decoration: none;
  font-size: 1.3em;
  display: flex;
  align-items: center;
  position: relative;
  font-weight: 500;
  transition: color 0.3s ease;
}
nav .nav-links a::after {
  content: "";
  display: block;
  height: 2px;
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 0;
  transition: width 0.4s ease, left 0.4s ease;
}
nav .nav-links a:hover {
  color: white;
}
nav .nav-links a:hover::after {
  width: 100%;
  left: 0;
}
nav .nav-links a:has(img)::after {
  display: none;
}
nav .expanded-menu-items {
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, margin-top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
nav .expanded-menu-items li {
  display: flex;
  align-items: center;
  width: 100%;
}
nav .expanded-menu-items li a {
  color: #ececec;
  text-decoration: none;
  font-size: 1.3em;
  display: flex;
  align-items: center;
  position: relative;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 12px 20px;
  border-radius: 8px;
  width: calc(100% - 40px);
  background: rgba(255, 255, 255, 0.05);
  gap: 10px;
}
nav .expanded-menu-items li a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(2px);
}
nav .expanded-menu-items li a.premium-mobile {
  background: linear-gradient(135deg, #daa520, #ffd700, #ffec8b);
  color: #2a2a2a;
  box-shadow: 0 0 8px rgba(218, 165, 32, 0.4);
  font-weight: 500;
  letter-spacing: 0.5px;
}
nav .expanded-menu-items li a.premium-mobile span {
  color: #2a2a2a;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
}
nav .expanded-menu-items li a.premium-mobile .premium-icon {
  color: #2a2a2a;
  width: 23px;
  height: 23px;
  transition: all 0.3s ease;
}
nav .expanded-menu-items li a.premium-mobile:hover {
  transform: translateX(2px) translateY(-1px);
}
nav .expanded-menu-items li a.premium-mobile:hover .premium-icon {
  transform: scale(1.1) rotate(10deg);
}
nav .expanded-menu-items li a.premium-mobile:hover span {
  color: #2a2a2a;
}
nav .expanded-menu-items li a.invite-mobile {
  background: rgb(0, 140, 255);
  color: white;
  box-shadow: 0 0 8px rgba(0, 140, 255, 0.4);
}
nav .expanded-menu-items li a.invite-mobile span {
  color: white;
}
nav .expanded-menu-items li a.invite-mobile .icon {
  color: white;
  width: 23px;
  height: 23px;
  transition: all 0.3s ease;
}
nav .expanded-menu-items li a.invite-mobile:hover {
  transform: translateX(2px) translateY(-1px);
}
nav .expanded-menu-items li a.invite-mobile:hover .icon {
  rotate: -30deg;
  transform: translateX(1px);
}
nav .expanded-menu-items li a.invite-mobile:hover span {
  color: white;
}
nav .expanded-menu-items.show {
  max-height: 400px;
  opacity: 1;
  margin-top: 15px;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.05s, margin-top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
nav .menu-icon {
  display: none;
  position: absolute;
  right: 20px;
  top: 16px;
}
nav #checkbox {
  display: none;
}
nav .toggle {
  position: relative;
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition-duration: 0.5s;
}
nav .bars {
  width: 100%;
  height: 4px;
  background-color: white;
  border-radius: 4px;
}
nav #bar2 {
  transition-duration: 0.3s;
}
nav #bar1, nav #bar2, nav #bar3 {
  width: 100%;
}
nav #checkbox:checked + .toggle .bars {
  position: absolute;
  transition-duration: 0.5s;
}
nav #checkbox:checked + .toggle #bar2 {
  transform: scaleX(0);
  transition-duration: 0.5s;
}
nav #checkbox:checked + .toggle #bar1 {
  width: 100%;
  transform: rotate(45deg);
  transition-duration: 0.5s;
}
nav #checkbox:checked + .toggle #bar3 {
  width: 100%;
  transform: rotate(-45deg);
  transition-duration: 0.5s;
}
nav #checkbox:checked + .toggle {
  transition-duration: 0.5s;
  transform: rotate(180deg);
}
nav .premium-btn {
  margin-right: 15px;
  padding: 8px 20px;
  border-radius: 8px;
  transition: all 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  background: linear-gradient(135deg, #daa520, #ffd700, #ffec8b);
  box-shadow: 0 0 12px rgba(218, 165, 32, 0.5);
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.5px;
}
nav .premium-btn:hover {
  transform: translateY(-1px);
}
nav .premium-btn:active {
  transform: translateY(1px);
}
nav .premium-btn span {
  color: #2a2a2a;
  text-decoration: none;
  font-size: 1.2em;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
}
nav .premium-btn span::after {
  content: "";
  display: block;
  height: 2px;
  background: #2a2a2a;
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 0;
  transition: width 0.4s ease, left 0.4s ease;
}
nav .premium-btn:hover span::after {
  width: 100%;
  left: 0;
}
nav .premium-btn .premium-icon {
  color: #2a2a2a;
  width: 22px;
  height: 22px;
  transition: all 0.5s ease;
  text-decoration: none;
  z-index: 2;
}
nav .premium-btn:hover .premium-icon {
  transform: scale(1.2) rotate(15deg);
}
nav .premium-btn::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 70%);
  top: 0;
  left: -100px;
  opacity: 1;
}
nav .premium-btn:hover::before {
  animation: shine 1.4s ease;
}
nav .premium-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
nav .premium-btn:hover::after {
  opacity: 1;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 12px rgba(218, 165, 32, 0.5);
  }
  50% {
    box-shadow: 0 0 16px rgba(218, 165, 32, 0.6);
  }
  100% {
    box-shadow: 0 0 12px rgba(218, 165, 32, 0.5);
  }
}
nav .invite {
  margin-left: auto;
  margin-right: 25px;
  padding: 8px 20px;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  background: rgb(0, 140, 255);
  box-shadow: 0 0 15px rgba(0, 140, 255, 0.5);
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
}
nav .invite:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 20px rgba(0, 140, 255, 0.6);
}
nav .invite:active {
  transform: translateY(1px);
}
nav .invite span {
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-size: 1.2em;
  display: flex;
  align-items: center;
  position: relative;
}
nav .invite span::after {
  content: "";
  display: block;
  height: 2px;
  background: white;
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 0;
  transition: width 0.4s ease, left 0.4s ease;
}
nav .invite:hover span::after {
  width: 100%;
  left: 0;
}
nav .invite .icon {
  color: white;
  width: 24px;
  height: 24px;
  transition: all 0.5s ease;
  text-decoration: none;
}
nav .invite:hover .icon {
  rotate: -50deg;
  transform: translateX(1px);
}
nav .invite::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 70%);
  top: 0;
  left: -100px;
  opacity: 0.3;
}
nav .invite:hover::before {
  animation: shine 1.5s ease;
}
@keyframes shine {
  0% {
    left: -100px;
  }
  60% {
    left: 100%;
  }
  to {
    left: 100%;
  }
}

@media (max-width: 1000px) {
  nav .nav-links .menu-item {
    display: none;
  }
  nav .invite, nav .premium-btn {
    display: none !important;
  }
  nav .menu-icon {
    display: flex !important;
    justify-content: center;
    align-items: center;
    right: 20px;
    position: absolute;
    top: 16px;
  }
}
.wrapper * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Kanit", sans-serif;
  background-color: #262626;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  margin: 0;
}

h1, h2, h3, h4 {
  font-weight: 510;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: #e76969;
  transition: color 0.3s ease;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero {
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 30px;
  background: linear-gradient(white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-content p {
  font-size: 1.3rem;
  color: #b0b0b0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
.hero-buttons .btn-primary {
  padding: 10px 20px;
  border: none;
  font-size: 1.3em;
  color: #fff;
  transition: 0.5s;
  transition-property: box-shadow;
  display: inline-block;
  background: rgb(0, 140, 255);
  box-shadow: 0 0 25px rgb(0, 140, 255);
  color: #ffffff;
  padding: 10px 20px;
  font-size: 1.3em;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.5s;
}
.hero-buttons .btn-primary:hover {
  box-shadow: 0 0 5px rgb(0, 140, 255), 0 0 0px rgb(0, 140, 255), 0 0 25px rgb(0, 140, 255), 0 0 75px rgb(0, 140, 255);
}
.hero-buttons .btn-secondary {
  display: inline-block;
  background-color: #4e4b4b;
  color: #ffffff;
  padding: 11px 25px;
  font-size: 1.3em;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.hero-buttons .btn-secondary:hover {
  background-color: #343232;
}
.hero-decoration {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
}
.hero-decoration .discord-icon {
  font-size: 10rem;
  color: rgba(231, 105, 105, 0.1);
  animation: pulse 4s infinite ease-in-out;
}
.hero-decoration .decoration-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(231, 105, 105, 0.1);
}
.hero-decoration .decoration-circle:nth-child(2) {
  width: 200px;
  height: 200px;
  top: -100px;
  left: -100px;
}
.hero-decoration .decoration-circle:nth-child(3) {
  width: 300px;
  height: 300px;
  top: -150px;
  left: -150px;
}
.hero-decoration .decoration-circle:nth-child(4) {
  width: 400px;
  height: 400px;
  top: -200px;
  left: -200px;
}

.premium-title {
  position: relative;
  display: inline-block;
}
.premium-title::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #e76969;
  bottom: -7px;
  left: 0;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}
.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}
.section-header h2:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #e76969;
  border-radius: 2px;
}
.section-header p {
  color: #b0b0b0;
  font-size: 1.2rem;
  margin-top: 25px;
}

.features-section {
  padding: 100px 0;
  background: #212121;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: #303030;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}
.feature-card .feature-icon {
  width: 80px;
  height: 80px;
  background: rgba(231, 105, 105, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  color: #e76969;
}
.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}
.feature-card p {
  color: #b0b0b0;
}

.plans-section {
  padding: 100px 0;
  background: #262626;
}

.plans-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.plan-card {
  background: #303030;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1;
  min-width: 300px;
  max-width: 450px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  transform: translateY(35px);
}
.plan-card .plan-header {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.plan-card .plan-header h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.plan-card .plan-header .price {
  margin: 20px 0;
}
.plan-card .plan-header .price .amount {
  font-size: 3rem;
  font-weight: 700;
}
.plan-card .plan-header .price .period {
  color: #b0b0b0;
  font-size: 1rem;
}
.plan-card .plan-header .savings {
  background: rgba(231, 105, 105, 0.2);
  color: #e76969;
  display: inline-block;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}
.plan-card .plan-features {
  list-style: none;
  flex-grow: 1;
  margin-bottom: 30px;
}
.plan-card .plan-features li {
  padding: 12px 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.plan-card .plan-features li i {
  color: #e76969;
  margin-right: 10px;
}
.plan-card .plan-button {
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  text-align: center;
  border: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  margin-top: auto;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 420;
}
.plan-card .plan-button:hover {
  background: rgba(255, 255, 255, 0.2);
}
.plan-card .plan-button.primary {
  border: none;
  color: #fff;
  transition: 0.5s;
  transition-property: box-shadow;
  display: inline-block;
  background: rgb(0, 140, 255);
  box-shadow: 0 0 25px rgb(0, 140, 255);
  color: #ffffff;
  padding: 10px 20px;
  font-size: 1.3em;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.5s;
  font-weight: 425;
}
.plan-card .plan-button.primary:hover {
  box-shadow: 0 0 5px rgb(0, 140, 255), 0 0 0px rgb(0, 140, 255), 0 0 25px rgb(0, 140, 255), 0 0 75px rgb(0, 140, 255);
}
.plan-card .plan-benefits {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.plan-card .plan-benefits p {
  color: #b0b0b0;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.plan-card .plan-benefits p i {
  color: #e76969;
  margin-right: 10px;
}
.plan-card.highlighted {
  position: relative;
  z-index: 1;
  padding: 2px;
  background: none;
  box-shadow: none;
  border: none;
  scale: 1.02;
  transition: transform 0.3s ease;
  transform: translateY(0px);
}
.plan-card.highlighted:hover {
  transform: scale(1.021);
}
.plan-card.highlighted:hover::before {
  animation: gradient-border 1s ease infinite;
}
.plan-card.highlighted::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  margin: -2px;
  border-radius: 17px;
  background: linear-gradient(45deg, rgb(255, 63, 63), rgb(0, 140, 255));
  background-size: 400% 400%;
  animation: gradient-border 5s ease infinite;
  filter: blur(20px);
}
.plan-card.highlighted .card-bg {
  background: #3a3a3a;
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 2;
}

@keyframes gradient-border {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.popular-badge {
  position: absolute;
  top: -15px;
  right: 30px;
  background: #e76969;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 5px 15px rgba(231, 105, 105, 0.3);
}

.payment-options {
  text-align: center;
  margin-top: -30px;
}
.payment-options p {
  color: #b0b0b0;
  margin-bottom: 15px;
}
.payment-options .payment-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 2.5rem;
  color: #b0b0b0;
  margin-bottom: 40px;
}

.testimonials {
  padding: 100px 0;
  background: #212121;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background: #303030;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card .testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.testimonial-card .testimonial-header img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 15px;
}
.testimonial-card .testimonial-header h4 {
  font-size: 1.2rem;
}
.testimonial-card .testimonial-header p {
  color: #b0b0b0;
  font-size: 0.9rem;
}
.testimonial-card .testimonial-content p {
  font-style: italic;
  color: #b0b0b0;
  margin-bottom: 20px;
}
.testimonial-card .rating {
  color: gold;
}

.questions-container {
  margin-top: 25px;
  align-items: center;
  display: flex;
  flex-direction: column;
}

.question {
  margin-bottom: 15px;
  width: 50vw;
  border-radius: 100px;
  color: #303030;
  background-color: #303030;
  padding: 10px;
  border-radius: 5px;
  transition: all 0.5s ease;
  position: relative; /* Enable positioning for the arrow */
}

.question-title {
  cursor: pointer;
  padding: 10px 0px;
  display: flex;
  justify-content: space-between; /* Push arrow to the right */
  margin-left: 0px; /* set to 60px to bring back question icon */
}

.question-title p {
  position: relative;
  display: inline-block;
  font-size: 1.3em;
  color: #e76969;
  line-height: 1.5;
  transition: all 0.5s ease;
}
.question-title p::after {
  content: "";
  display: block;
  height: 3px;
  background: rgb(92, 92, 92);
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 0;
  transition: width 0.6s ease, left 0.6s ease; /* Animate width and position */
}

.question.open .question-title p::after {
  width: 100%;
  left: 0;
}

.question-icon {
  position: absolute;
  left: 25px;
  top: 20px;
  transform: scaleX(-1);
  display: none; /* Disabled as of now */
  width: 25px;
  height: 25px;
  background: url("media/question.svg") no-repeat center center;
  background-size: contain;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.question.open .question-icon {
  transform: scaleX(-1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Dropdown Arrow */
.dropdown-arrow {
  position: absolute;
  right: 25px;
  top: 25px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 14px solid #e76969;
  transition: transform 0.5s ease;
}

.question.open .dropdown-arrow {
  transform: rotate(180deg);
}

.question-answer {
  color: #9e9e9e;
  font-size: 1.1em;
  max-height: 0; /* Initially hidden */
  overflow: hidden; /* Hide overflow content */
  transition: max-height 0.3s ease; /* Smooth transition */
  position: relative;
  top: 0; /* Resets the space when the question is open */
}

.question-answer a {
  color: inherit; /* Matches the surrounding text color */
  text-decoration: none; /* Removes default underline */
  position: relative; /* Position relative to place pseudo-element */
  color: #e76969;
}

.question-answer a::after {
  content: ""; /* Create an empty content for the pseudo-element */
  display: block; /* Make it a block-level element */
  height: 2px; /* Height of the line */
  background: white; /* Color of the line */
  position: absolute; /* Position it absolutely */
  left: 50%; /* Start from the middle of the link */
  bottom: -1px; /* Position below the link */
  width: 0; /* Start with a width of 0 */
  transition: width 0.5s ease, left 0.5s ease; /* Animate width and position */
}

.question-answer a:hover::after {
  width: 100%; /* Expand to full width on hover */
  left: 0; /* Move to the left */
}

.question.open .question-answer {
  transition: max-height 0.3s ease; /* Ensure smooth transition for both opening and closing */
}

@media (max-width: 1200px) {
  .question {
    width: 90% !important;
  }
}
@media (max-width: 650px) {
  .question-icon {
    display: none;
  }
  .question-title {
    margin-left: 0px !important;
  }
  .question-title p {
    text-align: left; /* Align text inside the title to the left */
    margin-right: 35px !important;
    font-size: 1.2em !important;
    margin: 0;
  }
  .question-answer {
    margin: 0;
  }
  .support-server-desc p {
    text-align: center !important; /* Center align the paragraph text */
    font-size: 1.2em !important;
  }
  /* Keep faq-title and help-title centered, adjust font size */
  .faq-title,
  .help-title {
    text-align: center !important; /* Ensure the titles stay centered */
    font-size: 1.7em !important; /* Adjust font size */
  }
  .dropdown-arrow {
    right: 15px !important;
  }
}
.cta-section {
  margin-top: 55px;
  padding: 100px 0;
  background: #e76969;
  text-align: center;
}
.cta-section .cta-content {
  max-width: 900px;
  margin: 0 auto;
}
.cta-section .cta-content h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}
.cta-section .cta-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}
.cta-section .cta-content .btn-primary.large {
  padding: 10px 20px;
  border: none;
  font-size: 1.3em;
  color: #fff;
  transition: 0.5s;
  transition-property: box-shadow;
  display: inline-block;
  background: rgb(0, 140, 255);
  box-shadow: 0 0 25px rgb(0, 140, 255);
  color: #ffffff;
  padding: 10px 20px;
  font-size: 1.3em;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.5s;
}
.cta-section .cta-content .btn-primary.large:hover {
  box-shadow: 0 0 5px rgb(0, 140, 255), 0 0 0px rgb(0, 140, 255), 0 0 25px rgb(0, 140, 255), 0 0 75px rgb(0, 140, 255);
}

footer {
  background: #303030; /* Use section color */
  color: #ffffff; /* White text color */
  padding: 10px 0; /* Vertical padding */
  position: relative; /* Relative positioning */
  bottom: 0; /* Align to bottom */
  width: 100%; /* Full width */
  text-align: center; /* Center the text */
}
footer p {
  margin: 0;
  margin-bottom: 10px;
  color: #9e9e9e;
  font-size: 18px;
}
footer a {
  white-space: nowrap; /* Prevent text from wrapping to the next line */
  color: white; /* Link color */
  margin: 0 3px; /* Horizontal spacing between links */
  text-decoration: none; /* Remove underline */
  position: relative; /* Position relative to allow for absolute positioning of pseudo-element */
}
footer a:hover {
  text-decoration: none; /* Ensure no underline on hover */
}
footer a::after {
  content: ""; /* Create an empty content for the pseudo-element */
  display: block; /* Make it a block-level element */
  height: 2px; /* Height of the line */
  background: #e76969; /* Color of the line */
  position: absolute; /* Position it absolutely */
  left: 50%; /* Start from the middle of the link */
  bottom: -3px; /* Position below the link */
  width: 0; /* Start with a width of 0 */
  transition: width 0.4s ease, left 0.4s ease; /* Animate the width and position */
}
footer a:hover::after {
  width: 100%; /* Expand to full width on hover */
  left: 0; /* Move to the left */
}

@media (max-width: 992px) {
  .navbar-links {
    display: none;
  }
  .navbar-toggle {
    display: block;
  }
  .plan-card {
    transform: translateY(-10px);
  }
  .hero {
    padding: 150px 0 80px;
  }
  .hero-content h1 {
    font-size: 2.8rem;
  }
  .hero-content p {
    font-size: 1.2rem;
  }
  .hero-decoration {
    display: none;
  }
  .plans-container {
    flex-direction: column;
    align-items: center;
  }
  .footer-content {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .feature-card, .testimonial-card {
    min-width: 100%;
  }
  .footer-links {
    grid-template-columns: 1fr;
  }
}
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #303030;
  display: flex; /* This control of the display and when it turns off is contrtolled in the fadeinanimationfrontpage.js */
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.dots {
  display: flex;
  gap: 9vw; /* Space between circles */
}

.dot {
  width: 3rem;
  height: 3rem;
  background-color: #e76969;
  border-radius: 50%;
  animation: bounce 1.5s infinite ease;
}

.dot:nth-child(2) {
  animation-delay: 0.2s;
}

.dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounce {
  0%, 80%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
}
@media (max-width: 400px) {
  #loading-screen .dots {
    gap: 15vw;
  }
  #loading-screen .dot {
    width: 2.5rem;
    height: 2.5rem;
  }
}/*# sourceMappingURL=premium.css.map */