@font-face {
  font-family: "Gilroy";
  src: url("../fonts/sGilroy-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/sGilroy-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/sGilroy-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/sGilroy-Bold.woff2") format("woff2"),
    url("../fonts/subset-Gilroy-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/sGilroy-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}

a {
  text-decoration: none !important;
}

a:hover {
  text-decoration: none;
}

body {
  font-family: "Gilroy", sans-serif;
  background-color: #808080;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  color: #fff !important;
}

h1 {
  font-size: 2.5em;
}

h2 {
  font-size: 2em;
}

h3 {
  font-size: 1.75em;
}

h4 {
  font-size: 1.5em;
}

h5 {
  font-size: 1.25em;
}

h6 {
  font-size: 1em;
}

*,
::after,
::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
  margin: 0;
}

.container {
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .container {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 100%;
  }
}

@media (max-width: 992px) {
  .container {
    padding: 0 12px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 970px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1350px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1350px;
    padding: 0 12px;
  }
}

input,
select,
textarea,
button {
  font: inherit;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

ul {
  padding: 0;
}

li {
  list-style: none;
}

a {
  cursor: pointer;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
}

.wrapper {
  display: flex;
  flex-wrap: wrap;
}

.header {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.nav-logo img {
  height: 60px;
  transition: all 0.3s ease;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-item {
  margin-left: 30px;
}

.nav-link {
  color: #fff;
  font-weight: 600;
  transition: color 0.3s ease;
  position: relative;
  font-size: 19px;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #fff;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  background: transparent;
  user-select: none;
  cursor: pointer;
  border: 1px solid #6b6f8180;
  border-radius: 12px;
  padding: 6px;
  width: 42px;
  height: 42px;
  display: none;
  cursor: pointer;
  z-index: 1002;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  transition: all 0.3s ease-in-out;
  background-color: #fff;
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #1e2130;
    width: 100%;
    height: 100vh;
    text-align: center;
    transition: 0.3s;
    padding-top: 80px;
    overflow-y: hidden;
  }

  .nav-link {
    font-size: 22px;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    margin: 25px 0;
  }

  .hamburger {
    display: block;
    position: absolute;
    top: 15px;
    right: 15px;
  }

  .nav-logo {
    position: relative;
    z-index: 1001;
  }

  body.menu-open {
    overflow: hidden;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

.intro {
  /* padding: 120px 0; */
  padding-top: 180px;
  position: relative;
  background-color: #ffffff;
  background: linear-gradient(118deg, #121726, #1b1f32);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.intro-bg {
  position: relative;
  width: 100%;
}

.intro-bg::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(to top, #1e2130, transparent);
  z-index: -1;
}

.intro::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-attachment: fixed;
  background-position: center top;
}

.intro .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.intro-content {
  flex: 1;
  max-width: 600px;
}

.intro-title {
  font-size: 3em;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.intro-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 12px 24px;
  border-radius: 5px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background-color: #808080;
  color: #ffffff;
}

.btn-secondary {
  background-color: #ffffff;
  color: #808080;
  border: 2px solid #808080;
}

.btn-demo {
  padding: 11px 22px;
  border-radius: 15px;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 7px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff !important;
  border: 2px solid #808080;
  background: 0 0;
}

.btn i {
  margin-right: 8px;
}

.intro-image {
  flex: 1;
  max-width: 500px;
  margin-left: 40px;
  position: relative;
}

.intro-image:before {
  content: "";
  position: absolute;
  bottom: -200px;
  left: 25px;
  height: 500px;
  width: 500px;
  background: url(../../../cdn.mypanel.link/ff35b7/cylr7r8w6ouwn5mk.png)
    no-repeat 50%;
  background-size: contain;
  z-index: 1;
}

.intro-image img {
  height: auto;
  border-radius: 10px;
}

.intro .underline {
  position: relative;
}

.underline {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#FF4500),
    color-stop(30%, #FF4500),
    color-stop(30%, #FF4500),
    color-stop(73%, #FF4500),
    to(#FF4500)
  );
  background-image: -webkit-linear-gradient(
    left,
    #FF4500 0%,
    #FF4500 30%,
    #FF4500 30%,
    #FF4500 73%,
    #FF4500 100%
  );
  background-image: -o-linear-gradient(
    left,
    #FF4500 0%,
    #FF4500 30%,
    #FF4500 30%,
    #FF4500 73%,
    #FF4500 100%
  );
  background-image: linear-gradient(
    to right,
    #FF4500 0%,
    #FF4500 30%,
    #FF4500 30%,
    #FF4500 73%,
    #FF4500 100%
  );
  font-weight: 700;
}

.underline:after {
  content: "";
  position: absolute;
  background-color: rgb(255 92 0 / 15%);
  border-radius: 0.375rem;
  left: 0;
  height: 0.75rem;
  width: 100%;
  bottom: 0.15rem;
}

.home-subtitle .hst-text {
  display: flex;
  align-items: center;
  background: #ffffff82;
  color: #fff;
  width: max-content;
  padding: 5px 10px 5px 5px;
  border-radius: 15px;
  gap: 8px;
  margin-bottom: 12px;
}

.home-subtitle .hst-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FF4500;
  width: 24px;
  height: 24px;
  border-radius: 100%;
  text-align: center;
  color: #fff;
}

.home-subtitle .hst-icon svg {
  width: 20px;
  height: 20px;
}

.home-fade {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
}

.home-fade > div {
  position: relative;
  width: 100%;
  height: 100%;
}

.hf-glow {
  position: absolute;
  width: 1176px;
  height: 850px;
  left: -669px;
  top: -886px;
  background: linear-gradient(180deg, rgba(255, 31, 0, 0), #FF4500);
  -webkit-filter: blur(239.122px);
  filter: blur(239.122px);
  -webkit-transform: rotate(-58.53deg);
  transform: rotate(-58.53deg);
}

@media (max-width: 768px) {

  .home-fade {  
    display: none;
  }
}

@media (max-width: 992px) {
  .intro-image:before {
    position: sticky !important;
  }

  .intro-image img {
    width: 150px;
  }

  .blog-content {
    flex-direction: column !important;
  }

  .intro {
    padding: 0 !important;
  }

  .intro .container {
    margin-top: 80px;
    flex-direction: column-reverse;
    text-align: center;
  }

  .intro-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    max-width: 100%;
    margin-bottom: 40px;
    margin-top: 40px;
  }

  .intro-title {
    font-size: 2.5em;
  }

  .cta-buttons {
    justify-content: center;
  }

  .intro-image {
    max-width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .intro {
    padding: 60px 0;
  }

  .intro-title {
    font-size: 2em;
  }

  .intro-description {
    font-size: 1em;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .btn {
    width: 100%;
  }
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 30px;
}

.section-description {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 18px !important;
}

.section-description-tow {
  text-align: left;
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 18px !important;
}

.package-section {
  background: url("../images/services-bg.webp") center center no-repeat
    #FF4500;
  padding: 60px 0;
  position: relative;
  width: 100%;
}

.countdown-timer {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 5px 10px;
  border-radius: 20px;
  font-weight: bold;
  color: #333;
}

.countdown-timer svg {
  margin-right: 5px;
}

.package-item {
  position: relative;
}

.package-title {
  font-size: 30px;
  text-align: center;
  color: white;
  font-weight: 400;
  margin-bottom: 65px;
}

.package-title-bold {
  color: #FF4500;
  font-weight: 700;
  position: relative;
  margin-bottom: 30px;
  display: inline-block;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 10px;
}

.package-item {
  background-color: #141822;
  color: rgb(255, 255, 255);
  padding: 30px 25px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
}

.package-item-title {
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 16px;
}

.package-item-description {
  font-size: 12px;
  color: #ffffff;
  margin-bottom: 26px;
}

.package-item-features {
  list-style-type: none;
  padding: 0;
  margin: 15px 0;
}

.package-item-features li {
  font-size: 12px;
  color: #ffffff;
  margin-bottom: 15px;
}

.package-item-features li::before {
  content: "";
  width: 13px;
  height: 9px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='9' viewBox='0 0 13 9' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.7863 0.00050265C11.4786 0.00811676 11.1865 0.128991 10.9723 0.336475L4.73204 6.21362L2.02978 3.6686C1.81049 3.4535 1.50833 3.33025 1.19101 3.32739C0.874194 3.32406 0.569509 3.4416 0.345668 3.65242C0.121322 3.86324 -0.00297752 4.15067 5.41837e-05 4.44905C0.00308589 4.74742 0.133954 5.032 0.362342 5.23854L3.90034 8.56971C4.12165 8.77814 4.42129 8.89474 4.73406 8.89474C5.04683 8.89474 5.34646 8.77767 5.56778 8.56971L12.6382 1.91069C12.8686 1.70226 12.999 1.41435 13 1.11359C13.001 0.812833 12.8727 0.524448 12.6438 0.314584C12.4149 0.10472 12.1051 -0.00853911 11.7863 0.00050265Z' fill='%230071F9'/%3E%3C/svg%3E");
  margin-right: 8px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: inline-block;
}

.package-item-addon {
  background-color: #272727;
  border-radius: 12px;
  padding: 23px 18px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.package-addon-info p {
  font-size: 11px;
}

.server-status-indicator {
  width: 20px;
  height: 20px;
  position: relative;
}

.pulse-circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #00ff00;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pulse-circle::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(0, 255, 0, 0.6);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(3);
    opacity: 0;
  }
}

.package-item-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 37px 0 23px 0;
}

.package-price-info {
  font-size: 14px;
  color: #a5a5a5;
}

.package-price-amount {
  font-size: 26px;
  font-weight: 700;
  position: relative;
}

.package-currency {
  font-size: 24px;
}

.package-price-period {
  font-size: 11px;
  font-weight: 800;
  color: white;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 0 6px;
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-100%);
}

.package-buy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ff3300;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 700;
  margin-top: auto;
  gap: 10px;
  border-radius: 30px;
}

.package-buy-button svg path {
  fill: white;
}

.package-item.active {
  background: linear-gradient(161deg, #ff3300 -29.52%, #000 61.59%);
  transform: scale(1.05);
  transition: all 0.3s ease;
  z-index: 1;
}

.package-item.active .package-item-title,
.package-item.active .package-item-description,
.package-item.active .package-item-features li {
  color: #ffffff;
}

.package-item.active .package-item-addon {
  background-color: rgba(255, 255, 255, 0.1);
}

@media screen and (max-width: 992px) {
  .package-grid {
    grid-template-columns: 1fr;
    padding: 15px;
  }

  .package-item {
    margin-bottom: 30px;
    padding: 30px;
  }

  .package-item-title {
    font-size: 22px;
  }

  .package-item-description {
    font-size: 14px;
  }

  .package-item-addon {
    padding: 15px 10px;
  }

  .package-item-price {
    padding: 20px 0 15px 0;
    margin-top: 20px;
  }

  .package-title {
    font-size: 24px;
  }

  .section-description {
    font-size: 16px !important;
    margin-bottom: 10px;
  }
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.pricing-row {
  display: flex;
  border: 1px solid #ffffff;
}

.pricing-row.header {
  background-color: #1b1717;
  font-weight: bold;
}

.pricing-row.alternate {
  background-color: #2e2b2b;
}

.pricing-cell {
  flex: 1;
  padding: 8px;
  border-right: 1px solid #e2dcdc;
}

.pricing-cell:last-child {
  border-right: none;
}

.section-title {
  text-align: center;
  font-size: 2em !important;
  margin-bottom: 20px;
  color: #474141;
  position: relative;
}

.section-title-two {
  text-align: left;
  font-size: 2em !important;
  margin-bottom: 20px;
  color: #3d3838;
  position: relative;
}

.faq {
  padding: 60px 0;
}

.accordion-container.two-column {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.accordion-column {
  width: 48%;
}

@media (max-width: 768px) {
  .accordion-column {
    width: 100%;
  }
}

.faq .faq-content .heading-title {
  text-align: center;
  padding-bottom: 20px;
  color: #1d1d20;
}

.faq .faq-content .heading-title h2 {
  margin-bottom: 10px;
}

.accordion-container {
  width: 100%;
}

.accordion-item {
  background-color: #fff;
  margin-bottom: 10px;
  width: 100%;
  border-radius: 2px;
}

.accordion-header {
  background-color: #fff;
  color: #1d1d20;
  padding: 15px 30px;
  font-size: 16px;
  width: 100%;
  text-align: left;
  cursor: pointer;
  outline: none;
  display: flex;
  align-items: center;
  transition: background-color 0.3s ease;
  border: none;
  font-weight: 600;
  border-radius: 2px;
}

.accordion-header .icon {
  transition: transform 0.3s ease;
  margin-left: auto;
}

.accordion-header.active .icon {
  transform: rotate(45deg);
}

.accordion-content {
  overflow: hidden;
  padding: 0 30px;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.accordion-content p {
  color: #1d1d20;
  margin: 15px 0;
  line-height: 1.5;
}

.icon {
  transition: transform 0.3s ease;
}

.active .icon {
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .accordion-header {
    font-size: 14px;
  }

  .accordion-content p {
    font-size: 14px;
  }

  .packet-alert {
    font-size: 14px;
  }
}

.whatsapp-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.whatsapp-button {
  display: flex;
  align-items: center;
  background-color: #25d366;
  color: #000;
  border-radius: 50px;
  padding: 10px 20px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  animation: pulse 2s infinite, wiggle 1s ease-in-out infinite;
}

.whatsapp-button:hover {
  background-color: #128c7e;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  animation: none;
}

.whatsapp-icon {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.whatsapp-button span {
  font-weight: bold;
}

@media (max-width: 768px) {
  .whatsapp-button {
    padding: 8px 16px;
  }

  .whatsapp-icon {
    width: 30px;
    height: 30px;
  }

  .whatsapp-button span {
    font-size: 14px;
  }

  .faq-question h3 {
    font-size: 16px;
  }

  .step-content h3 {
    font-size: 20px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes wiggle {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(5deg);
  }

  50% {
    transform: rotate(0deg);
  }

  75% {
    transform: rotate(-5deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.contact-hero {
  text-align: center;
  background-color: #fff5e6;
  padding: 100px 0 50px;
  text-align: center;
}

.contact-title {
  color: #1d1d20;
  font-size: 3em;
  margin-bottom: 10px;
}

.contact-subtitle {
  font-size: 1.2em;
  color: #575757;
}

.contact-content {
  padding: 60px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-info h2,
.contact-form h2 {
  color: #333;
  font-size: 24px;
  margin-bottom: 20px;
  border-bottom: 2px solid #1d1d20;
  padding-bottom: 10px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info ul li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  font-size: 16px;
}

.contact-info ul li i {
  margin-right: 15px;
  color: #1d1d20;
  font-size: 20px;
}

.contact-info ul li a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info ul li a:hover {
  color: #1d1d20;
}

.social-icons {
  margin-top: 20px;
}

.social-icons a {
  display: inline-block;
  margin-right: 15px;
  color: #333;
  font-size: 24px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #1d1d20;
}

.contact-form {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-form form {
  display: grid;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 5px;
  color: #333;
  font-weight: bold;
}

.form-group input,
.form-group textarea {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info,
  .contact-form {
    padding: 20px;
  }
}

.blog-header {
  background-color: #fff5e6;
  padding: 100px 0 50px;
  text-align: center;
}

.blog-title {
  color: #fff;
  font-size: 3em;
  margin-bottom: 10px;
}

.blog-description {
  color: #fff;
  font-size: 1.2em;
}

.blog-content {
  flex-direction: column;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-post {
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  padding: 30px;
}

.blog-post-image img {
  max-width: 100%;
  object-fit: cover;
}

.blog-post-content {
  padding: 20px;
}

.blog-post-title {
  color: #1d1d20;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.blog-post-excerpt {
  color: #663300;
  margin-bottom: 15px;
}

.blog-post-link {
  color: #1d1d20;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.blog-post-link i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.blog-pagination {
  text-align: center;
  margin: 50px 0;
}

.pagination {
  display: inline-flex;
  background-color: #ffffff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-link {
  padding: 10px 20px;
  color: #1d1d20;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.page-link.active,
.page-link:hover {
  background-color: #1d1d20;
  color: #ffffff;
}

.page-link.next {
  display: flex;
  align-items: center;
}

.page-link.next i {
  margin-left: 5px;
}

@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.blog-post-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 0.9em;
  color: #666;
}

.blog-post-meta span {
  display: flex;
  align-items: center;
}

.blog-post-meta i {
  margin-right: 5px;
  color: #1d1d20;
}

@media (max-width: 576px) {
  .blog-post-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-post-meta span {
    margin-bottom: 5px;
  }
}

.blog-post-image {
  position: relative;
  overflow: hidden;
}

.blog-post-date {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: rgba(165, 21, 165, 0.8);
  color: #fff;
  padding: 5px 10px;
  font-size: 0.8em;
  border-radius: 3px;
}

.blog-post-date i {
  margin-right: 5px;
}

.blog-detail {
  padding: 120px 0;
}

.blog-detail .blog-post-title {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #1d1d20;
}

.blog-detail .blog-post-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  color: #666;
}

.blog-detail .blog-post-image {
  margin-bottom: 30px;
}

.blog-detail .blog-post-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.blog-detail .blog-post-content {
  line-height: 1.8;
  color: #333;
}

.blog-post-footer {
  margin-top: 40px;
  padding: 20px;
  background-color: #f8f8f8;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.blog-post-author,
.blog-post-stats {
  min-width: 200px;
  margin: 5px 0;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: bold;
  font-size: 1.1rem;
  color: #333;
}

.post-date,
.views-count {
  font-size: 0.9rem;
  color: #666;
}

.views-count i {
  margin-right: 5px;
}

@media (max-width: 480px) {
  .blog-post-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-post-stats {
    margin-top: 10px;
  }
}

.seo-content {
  padding: 60px 0;
}

.seo-content .section-title {
  margin-bottom: 40px;
}

.seo-scroll {
  max-height: 400px;
  overflow-y: auto;
  box-shadow: -10px 10px 29px rgba(0, 0, 0, 0.05);
  border-radius: 2px;
  background-color: #fff;
  padding: 30px;
  padding-right: 15px;
}

.seo-scroll::-webkit-scrollbar {
  width: 8px;
}

.seo-scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.seo-scroll::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

.seo-scroll::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.seo-content h2 {
  color: #333;
  font-size: 24px;
  margin-bottom: 20px;
}

.seo-content h3 {
  color: #444;
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 15px;
}

.seo-content h4 {
  color: #555;
  font-size: 18px;
  margin-top: 25px;
  margin-bottom: 10px;
}

.seo-content p {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.seo-content ul,
.seo-content ol {
  margin-bottom: 20px;
  padding-left: 20px;
  list-style-type: none;
  counter-reset: item;
}

.seo-content ul li::before {
  content: "★";
  color: #ffd700;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.seo-content ol {
  list-style-type: none;
  counter-reset: item;
}

.seo-content ol li::before {
  content: counter(item) "★";
  counter-increment: item;
  color: #ffd700;
  display: inline-block;
  width: 1.5em;
  margin-left: -1.5em;
}

.seo-content li {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.seo-content strong {
  color: #333;
  font-weight: 600;
}

@media (max-width: 768px) {
  .seo-content {
    padding: 30px 0;
  }

  .seo-scroll {
    padding: 25px;
  }

  .seo-content h2 {
    font-size: 22px;
  }

  .seo-content h3 {
    font-size: 18px;
  }

  .seo-content h4 {
    font-size: 16px;
  }

  .seo-content p,
  .seo-content li {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .seo-content {
    padding: 20px 0;
  }

  .seo-scroll {
    padding: 25px;
  }

  .seo-content h2 {
    font-size: 20px;
  }

  .seo-content h3 {
    font-size: 16px;
  }

  .seo-content h4 {
    font-size: 14px;
  }

  .seo-content p,
  .seo-content li {
    font-size: 13px;
  }
}

.footer {
  background-color: #1e2130;
  color: #817b7b;
}

.footer-main {
  padding: 60px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
}

.footer-logo img {
  max-width: 250px;
  margin-bottom: 10px;
  margin-left: -10px;
}

.footer-tagline {
  font-size: 18px;
  color: #ffffffc0;
}

.footer h4 {
  font-size: 20px;
  margin-bottom: 20px;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer a {
  color: #888fa8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #fff;
}

.social-icons {
  margin-top: 20px;
}

.social-icons a {
  font-size: 24px;
  margin-right: 15px;
}

.footer-bottom {
  background-color: rgba(17, 21, 35, 0.8);
  padding: 20px 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-nav {
  display: flex;
}

.footer-nav li:not(:last-child) {
  margin-right: 20px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-logo,
  .footer-links,
  .footer-contact {
    width: 100%;
    margin-bottom: 30px;
  }

  .footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav {
    margin-top: 15px;
    justify-content: center;
  }

  .footer-nav li {
    margin: 0 10px;
  }

  .footer-logo img {
    margin-left: 50px;
  }
}

@media (max-width: 480px) {
  .footer-main {
    padding: 40px 0;
  }

  .footer h4 {
    font-size: 18px;
  }

  .footer-tagline {
    font-size: 16px;
  }

  .social-icons a {
    font-size: 20px;
    margin-right: 10px;
  }

  .footer-nav {
    flex-direction: column;
  }

  .footer-nav li {
    margin: 5px 0;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 14px;
  }

  h1 {
    font-size: 2em;
  }

  h2 {
    font-size: 1.75em;
  }

  h3 {
    font-size: 1.5em;
  }

  h4 {
    font-size: 1.25em;
  }

  h5 {
    font-size: 1.1em;
  }

  h6 {
    font-size: 1em;
  }

  .intro-title {
    font-size: 2em;
  }

  .intro-description {
    font-size: 1em;
  }

  .feature-item h3 {
    font-size: 1.2em;
  }

  .package-title {
    font-size: 2rem;
  }

  .package-price {
    font-size: 1.6rem;
    margin-top: 20px;
  }

  .package-price .period {
    font-size: 0.6em;
  }

  .package-features {
    font-size: 0.9em;
  }

  .btn {
    padding: 10px 20px;
    font-size: 1em;
  }

  .footer {
    font-size: 0.9em;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .intro {
    padding: 60px 0;
  }

  .features,
  .packages,
  .how-it-works {
    padding: 40px 0;
  }

  .feature-grid,
  .package-grid {
    gap: 0;
  }

  .package {
    padding: 20px;
  }
}

.featured-content {
  padding: 60px 0;
  background-color: #1e2130;
  position: relative;
  overflow: hidden;
}

.featured-content::before {
  content: "";
  position: absolute;
  left: calc(50% - 20px);
  top: -1px;
  width: 40px;
  height: 15px;
  background: #1b2124;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.featured-content::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 100%;
  background: #ffffff05;
  right: calc(50% - 1000px);
  top: -200px;
}

.featured-header-left {
  position: relative;
  padding-left: 16px;
}

.featured-header-left::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  border-radius: 10px;
  background: #6a0dad;
}

.slider-container {
  overflow: hidden;
}

.slider-wrapper {
  display: flex;
  transition: transform 0.3s ease-in-out;
}

.slider-item {
  flex: 0 0 auto;
  width: 206px;
  margin-right: 20px;
}

.featured-content-slider {
  position: relative;
  padding-top: 25px;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #2b2b2b;
  border: none;
  color: white;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
  font-size: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-nav.prev {
  left: 10px;
}

.slider-nav.next {
  right: 10px;
}

.sports-leagues {
  position: relative;
  padding: 80px 0;
  background-color: #1e2130;
}

.sports-leagues::after {
  content: "";
  position: absolute;
  left: calc(50% - 20px);
  bottom: -14px;
  width: 40px;
  height: 15px;
  background: #1e2130;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  z-index: 2;
}

.leagues-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  gap: 40px;
}

.leagues-title {
  font-size: 42px;
  font-weight: 700;
}

.leagues-title .highlight {
  font-weight: 800;
  color: #FF4500;
}

.leagues-description {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  margin: 29px 0 35px 0;
}

.leagues-image {
  display: flex;
}

.league-logos {
  height: 247px;
}

@media (min-width: 993px) and (max-width: 1480px) {
  .league-logos {
    height: auto;
    width: 100%;
  }
}

@media screen and (max-width: 992px) {
  .sports-leagues {
    margin: 0;
    padding: 0;
  }

  .leagues-content {
    display: block;
    padding: 60px 20px;
    text-align: center;
  }

  .leagues-content > * {
    position: relative;
    z-index: 3;
  }

  .leagues-title {
    font-size: 22px;
  }

  .leagues-description {
    font-size: 12px;
  }

  .leagues-info {
    width: 100%;
    margin-bottom: 42px;
  }

  .leagues-info .btn {
    display: none;
  }

  .leagues-image {
    justify-content: center;
  }

  .league-logos {
    max-width: 245px;
    height: auto !important;
  }

  .featured-header-left::before {
    width: 80px;
    height: 5px;
    top: -15px;
    left: calc(50% - 40px);
  }

  .section-title-two {
    text-align: center !important;
  }

  .section-description-two {
    text-align: center !important;
  }
}
