:root {
  --black: #000;
  --white: #fff;
  --primary-clr: #FF6718;
  --font-family-p1: "Plus Jakarta Sans", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  font-family: inherit;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

.post,
.page {
  margin: 0 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  line-height: 1.2;
}

p {
  margin: 0;
  line-height: 1.6;
}

ul,
ol,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Media & Images */
img {
  width: 100%;
  display: block;
  height: auto;
}

/* Forms */
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.4s ease-in-out;
}

a:hover {
  text-decoration: none;
  transition: all 0.6s ease-in-out;
}

figure {
  margin: 0;
  padding: 0;
}

/*  */
.btn-main {
  background: #ff6718;
  padding: 7px 16px;
  font: 500 14px/1.2 var(--font-family-p1);
  line-height: 20px;
  text-align: center;
  border-radius: 9999px;
  display: inline-block;
  color: var(--black);
  transition: all 0.5s ease;
}

.btn-main:hover {
  background: #e65c14;
  color: var(--white);
}

.btn-arrow {
  padding: 15px 25px;
  border: 1px solid #3f3f4680;
  backdrop-filter: blur(4px);
  font: 500 16px/25.6px "Plus Jakarta Sans", sans-serif;
  text-align: center;
  color: var(--white);
  display: inline-block;
  border-radius: 9999px;
  transition: all 0.3s ease;
  background: #3f3f4680;
}

.btn-arrow:hover {
  background: var(--primary-clr);
}

/*  */
.siteheader {
  background: #000;
  padding: 10px;
  position: static;
  top: 0;
  width: 100%;
  z-index: 999;
  border-bottom: 1px solid #FFFFFF1A;
}

.siteheader .navbar-nav {
  gap: 30px;
}

.siteheader .navbar-nav li {
  padding: 0 !important;
  margin: 0 !important;
}

.siteheader .navbar-nav li a {
  padding: 0 !important;
  margin: 0 !important;
  color: #D1D5DB;
  text-transform: capitalize;
  font: 500 16px/1.2 var(--font-family-p1);
}

.siteheader .navbar-nav li a.active {
  color: var(--white);
}

.siteheader .navbar-brand {
  color: var(--white);
  font: 600 20px/1.2 var(--font-family-p1);
  text-transform: uppercase;
  max-width: 107px;
  height: 42px;
  object-fit: contain;
}

/*  */
.sitealert {
  margin: 0 !important;
  padding: 12px 0;
  background: #522108;
  border-radius: 0;
}

.alertwrap {
  justify-content: space-between;
}

.alertwrap,
.alertwrap-text,
.alertwrap-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.alertwrap-text {
  gap: 12px;
}

.alertwrap-text p {
  font: 400 14px/1.2 "Plus Jakarta Sans", sans-serif;
  color: var(--white);
}

.alertwrap-text span {
  background: #ef444433;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  color: var(--primary-clr);
  font-size: 14px;
}

.alertwrap-right {
  gap: 12px;
}

.alertwrap .btn-close {
  background: none;
  font-size: 20px;
  color: #a1a1aa;
  padding: 0;
  line-height: 1;
}

/*  */
.performancedt {
  background: linear-gradient(180deg, #000000 0%, rgba(24, 24, 27, 0.98) 50%, #000000 100%);
  padding: 10px 0;
}

.performancebar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.performancebaritem {
  font: 400 14px/1.2 var(--font-family-p1);
  text-transform: capitalize;
  color: var(--white);
}

.performancebaritem span {
  color: var(--primary-clr);
  margin-right: 5px;
}

.performancebaritem i {
  color: var(--primary-clr);
  font-size: 14px;
  margin-right: 5px;
}


/*  */
.productsection {
  position: relative;
  padding: 100px 0;
  background: var(--black);
  background: linear-gradient(180deg, #000000 0%, rgba(24, 24, 27, 0.5) 50%, #000000 100%);

}

.productsection::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6));
  z-index: 0;
}

.headingwrap {
  text-align: center;
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}

.productsection h2 {
  font: 700 36px/1.2 var(--font-family-p1);
  font-weight: bold;
  color: var(--primary-clr);
  margin-bottom: 16px;
  text-transform: capitalize;
}

.productsection p {
  color: #a1a1aa;
  max-width: 600px;
  margin: auto;
  font: 400 16px/1.6 var(--font-family-p1);
}

.productcard {
  position: relative;
  background: #171717b2;
  border: 1px solid #ffffff1a;
  box-shadow: 0 4px 16px #00000066;
  backdrop-filter: blur(6px);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.productcard:hover {
  transform: scale(1.03);
}

.productimage {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.productimage::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
  z-index: 0;
}

.productinfo {
  position: absolute;
  bottom: 0;
  padding: 16px;
  z-index: 1;
  width: 100%;
}

.productinfo .status {
  border-radius: 999px;
  font: 400 12px/1 var(--font-family-p1);
  padding: 5px 12px;
  background: #22c55e33;
  margin-bottom: 8px;
  display: inline-block;
  color: #86EFAC;

}

.productinfo h3 {
  font: 700 20px/1 var(--font-family-p1);
  letter-spacing: -0.5px;
  color: var(--white);
}


.productbody {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tags span {
  background: #27272a;
  color: #d4d4d8;
  padding: 4px 8px;
  border-radius: 12px;
  display: inline-block;
  font: 400 12px/1 var(--font-family-p1);
}

.productbody .features {
  margin: 16px 0 48px;
  list-style: none;
  padding: 0;
}

.productbody .features li {
  color: #d4d4d8;
  font: 400 14px/1 var(--font-family-p1);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.productbody .features li i {
  color: var(--primary-clr);
  font-size: 14px;
}

.price-box {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.price-box p {
  font: 400 12px/1 var(--font-family-p1);
  color: #71717a;
  margin-bottom: 5px;
}

.price-box .price {
  font: 700 16px/1 var(--font-family-p1);
  color: var(--white);
}


/*  */
.testimonials-section {
  background: var(--black);
  padding: 100px 0;
}

.testimonials-section .hd-wrap {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
}

.testimonials-section h2 {
  font: 700 36px/1.2 var(--font-family-p1);
  color: var(--primary-clr);
  margin-bottom: 16px;
  text-transform: capitalize;
}

.testimonials-section p {
  color: #a1a1aa;
  font: 400 16px/1.6 var(--font-family-p1);
}

.testimonial-card {
  padding: 24px;
  border-radius: 12px;
  background: #171717b2;
  box-shadow: 0 4px 16px #00000066;
  backdrop-filter: blur(6px);
  border: 1px solid #ffffff1a;
}

.rating-wrap {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 12px;
}

.rating-wrap i {
  color: var(--primary-clr);
  font-size: 12px;
}

.testimonial-card p {
  font: 400 16px/1.6 var(--font-family-p1);
  color: #d4d4d8;
  margin-bottom: 18px;
}

.testimonial-user h3 {
  font: 500 16px/26px var(--font-family-p1);
  color: #ffffffe5;
  text-transform: capitalize;
}

.testimonial-user p {
  font: 400 14px/20px var(--font-family-p1);
  color: #71717a;
  margin: 0;
}

.testimonials-section .swiper-pagination {
  position: unset;
  margin-top: 20px;
}

/*  */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: linear-gradient(180deg, #000000 0%, rgba(24, 24, 27, 0.98) 50%, #000000 100%);
}

.cta-card {
  margin: auto;
  max-width: 800px;
  padding: 50px 70px;
  background: #ffffff17;
  box-shadow: 0 4px 16px #00000066;
  position: relative;
  backdrop-filter: blur(6px);
  border: 1px solid #ffffff1a;
  border-radius: 20px;
  z-index: 2;
}

.cta-card h2 {
  font: 700 36px/1.2 var(--font-family-p1);
  color: var(--primary-clr);
  margin-bottom: 16px;
  text-transform: capitalize;
  text-align: center;
}

.cta-card p {
  font: 400 18px/28px var(--font-family-p1);
  text-align: center;
  margin-bottom: 32px;
  color: #d4d4d8;
}

.cta-button {
  position: relative;
  display: inline-block;
  padding: 12px 30px;
  border: 2px solid #22c55e;
  border-radius: 50px;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  overflow: hidden;
  z-index: 2;
  transition: background 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
  background: #22c55e;
  color: #000;
}

.cta-circle {
  position: absolute;
  width: 50px;
  height: 50px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 50%;
}

.cta-circle-left {
  top: -20px;
  left: -20px;
}

.cta-circle-right {
  bottom: -20px;
  right: -20px;
}

/*  */
.features-section {
  background: linear-gradient(to bottom, #000, #111);
  padding: 100px 0;
}

.features-section .hd-wrap {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
}

.features-section h2 {
  font: 700 36px/1.2 var(--font-family-p1);
  color: var(--primary-clr);
  margin-bottom: 16px;
  text-transform: capitalize;
}

.features-section p {
  color: #a1a1aa;
  font: 400 16px/1.6 var(--font-family-p1);
}

.feature-card {
  height: 100%;
  padding: 24px;
  background: #171717b2;
  border: 1px solid #ffffff1a;
  box-shadow: 0 4px 16px #00000066;
  backdrop-filter: blur(6px);
  border-radius: 12px;
}

.feature-icon {
  background: #ef444433;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  color: var(--primary-clr);
  font-size: 20px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font: 700 20px/28px var(--font-family-p1);
  letter-spacing: -0.5px;
  margin-bottom: 10px;
  color: var(--white);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.feature-card p {
  font: 400 16px/26px var(--font-family-p1);
  color: #a1a1aa;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/*  */

.sitefooter {
  background-color: #27272a;
  padding: 10px;
  border-top: 1px solid #ffffff1a;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-content p {
  text-align: center;
  color: #a1a1aa;
  font: 500 14px/1.2 var(--font-family-p1);
}

.social-links {
  display: flex;
  gap: 15px;
  align-items: center;
}

.social-links a {
  color: #a1a1aa;
  font-size: 20px;
  transition: all 0.3s ease;
}

.social-links a.discord:hover {
  color: #5865F2;
  transform: scale(1.1);
}

.social-links a.youtube:hover {
  color: #ff0000;
  transform: scale(1.1);
}

.social-links a.twitter:hover {
  color: #1DA1F2;
  transform: scale(1.1);
}