/* ==================================================
   PAKVIP
   BLACK + GREEN + GOLD PREMIUM DESIGN
   ================================================== */


/* ================= RESET ================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top, #073b31 0%, #021b18 35%, #050807 75%);
  color: #ffffff;
  line-height: 1.6;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}


/* ================= HEADER ================= */

header {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: rgba(3, 14, 12, 0.94);
  backdrop-filter: blur(16px);

  border-bottom: 1px solid rgba(218, 177, 77, 0.18);

  box-shadow:
    0 10px 35px rgba(0, 0, 0, 0.35);
}

.nav-content {
  min-height: 82px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;
}


/* ================= BRAND ================= */

.brand {
  display: flex;
  align-items: center;
  gap: 12px;

  text-decoration: none;
}

.brand img {
  width: 125px;
  height: 52px;

  object-fit: contain;
}

.brand span {
  color: #f2d77d;

  font-size: 20px;
  font-weight: 900;
  letter-spacing: 1px;
}


/* ================= NAVIGATION ================= */

nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;

  gap: 27px;
}

nav a {
  position: relative;

  color: #f5f5f5;

  font-size: 14px;
  font-weight: 800;

  text-decoration: none;

  transition: 0.25s ease;
}

nav a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -8px;

  width: 0;
  height: 2px;

  background:
    linear-gradient(
      90deg,
      #12d6a0,
      #f0c75e
    );

  transition: width 0.25s ease;
}

nav a:hover {
  color: #f0d47b;
}

nav a:hover::after {
  width: 100%;
}


/* ================= HERO ================= */

.hero {
  position: relative;
  overflow: hidden;

  min-height: calc(100vh - 82px);

  display: flex;
  align-items: center;

  padding: 90px 0;

  background:
    radial-gradient(
      circle at 78% 45%,
      rgba(15, 196, 143, 0.16),
      transparent 30%
    ),
    radial-gradient(
      circle at 15% 15%,
      rgba(218, 177, 77, 0.09),
      transparent 30%
    );
}

.hero::before {
  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  border-radius: 50%;

  left: -230px;
  top: -190px;

  background: rgba(12, 197, 143, 0.07);

  filter: blur(10px);
}

.hero::after {
  content: "";

  position: absolute;

  width: 400px;
  height: 400px;

  border-radius: 50%;

  right: -190px;
  bottom: -220px;

  background: rgba(218, 177, 77, 0.06);
}

.hero-content {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns:
    minmax(0, 1.15fr)
    minmax(300px, 0.85fr);

  align-items: center;

  gap: 70px;
}


/* ================= HERO TEXT ================= */

.hero-text {
  max-width: 700px;
}

.top-badge {
  display: inline-flex;

  padding: 8px 15px;

  margin-bottom: 22px;

  border:
    1px solid rgba(240, 199, 94, 0.4);

  border-radius: 50px;

  background:
    rgba(240, 199, 94, 0.08);

  color: #f0d47b;

  font-size: 12px;
  font-weight: 900;

  letter-spacing: 1.4px;
}

.hero h1 {
  color: #ffffff;

  font-size: clamp(44px, 6vw, 76px);

  line-height: 1.03;

  letter-spacing: -2px;

  margin-bottom: 22px;
}

.hero h1 span {
  display: block;

  margin-top: 12px;

  color: #16d6a3;

  font-size: clamp(27px, 3.8vw, 46px);

  letter-spacing: -1px;
}

.hero-description {
  max-width: 650px;

  color: #bdcbc7;

  font-size: 17px;

  margin-bottom: 28px;
}


/* ================= HERO TAGS ================= */

.hero-tags {
  display: flex;
  flex-wrap: wrap;

  gap: 11px;

  margin-bottom: 34px;
}

.hero-tags span {
  padding: 9px 14px;

  border:
    1px solid rgba(255, 255, 255, 0.1);

  border-radius: 9px;

  background:
    rgba(255, 255, 255, 0.045);

  color: #e8efed;

  font-size: 13px;
  font-weight: 800;
}


/* ================= BUTTONS ================= */

.hero-buttons {
  display: flex;
  flex-wrap: wrap;

  gap: 14px;
}

.btn {
  min-height: 52px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 0 26px;

  border-radius: 10px;

  font-size: 13px;
  font-weight: 900;

  letter-spacing: 0.5px;

  text-decoration: none;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.btn-primary {
  color: #07120f;

  background:
    linear-gradient(
      135deg,
      #f5dd87,
      #d4a936
    );

  box-shadow:
    0 12px 35px rgba(218, 177, 77, 0.22);
}

.btn-primary:not(.disabled-btn):hover {
  transform: translateY(-3px);

  box-shadow:
    0 15px 40px rgba(218, 177, 77, 0.34);
}

.btn-secondary {
  color: #ffffff;

  border:
    1px solid rgba(20, 211, 160, 0.4);

  background:
    rgba(14, 171, 129, 0.1);
}

.btn-secondary:hover {
  transform: translateY(-3px);

  border-color: #16d6a3;

  background:
    rgba(14, 171, 129, 0.18);
}

.disabled-btn {
  cursor: default;

  opacity: 0.82;

  user-select: none;
}


/* ================= HERO LOGO ================= */

.hero-logo-area {
  position: relative;

  min-height: 430px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-glow {
  position: absolute;

  width: 340px;
  height: 340px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(17, 215, 161, 0.22),
      rgba(17, 215, 161, 0.06) 40%,
      transparent 70%
    );

  filter: blur(8px);

  animation: glowPulse 3s ease-in-out infinite;
}

.hero-logo-area::before {
  content: "";

  position: absolute;

  width: 350px;
  height: 350px;

  border:
    1px solid rgba(240, 199, 94, 0.18);

  border-radius: 50%;

  box-shadow:
    0 0 70px rgba(15, 203, 149, 0.12);
}

.hero-logo {
  position: relative;
  z-index: 2;

  width: min(420px, 92%);

  object-fit: contain;

  filter:
    drop-shadow(
      0 20px 35px rgba(0, 0, 0, 0.55)
    );
}


/* ================= GENERAL SECTIONS ================= */

section {
  scroll-margin-top: 90px;
}

.section-title {
  max-width: 760px;

  margin: 0 auto 50px;

  text-align: center;
}

.section-title > span {
  display: inline-block;

  margin-bottom: 10px;

  color: #e7c65f;

  font-size: 12px;
  font-weight: 900;

  letter-spacing: 1.5px;
}

.section-title h2 {
  margin-bottom: 14px;

  color: #ffffff;

  font-size: clamp(30px, 4vw, 45px);

  line-height: 1.15;
}

.section-title p {
  color: #9eb0aa;

  font-size: 16px;
}


/* ================= CARDS ================= */

.feature-card,
.payment-card,
.faq-item,
.bonus-card,
.agent-card {
  border:
    1px solid rgba(255, 255, 255, 0.08);

  border-radius: 16px;

  background:
    linear-gradient(
      145deg,
      rgba(9, 37, 31, 0.92),
      rgba(5, 16, 14, 0.96)
    );

  box-shadow:
    0 15px 45px rgba(0, 0, 0, 0.25);

  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.feature-card:hover,
.payment-card:hover,
.bonus-card:hover,
.agent-card:hover {
  transform: translateY(-5px);

  border-color:
    rgba(23, 211, 160, 0.35);
}


/* ================= BONUS IMAGES ================= */

.bonus-card img {
  width: 100%;

  border-radius: 14px;

  object-fit: cover;
}


/* ================= ANIMATION ================= */

@keyframes glowPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.75;
  }

  50% {
    transform: scale(1.08);
    opacity: 1;
  }

}


/* ================= TABLET ================= */

@media (max-width: 950px) {

  .nav-content {
    flex-direction: column;

    padding: 15px 0;
  }

  nav {
    justify-content: center;

    flex-wrap: wrap;

    gap: 18px;
  }

  .hero {
    padding: 70px 0;
  }

  .hero-content {
    grid-template-columns: 1fr;

    gap: 35px;

    text-align: center;
  }

  .hero-text {
    margin: 0 auto;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-tags,
  .hero-buttons {
    justify-content: center;
  }

  .hero-logo-area {
    min-height: 340px;
  }

}


/* ================= MOBILE ================= */

@media (max-width: 600px) {

  .container {
    width: min(92%, 520px);
  }

  .nav-content {
    min-height: auto;
  }

  .brand img {
    width: 105px;
    height: 45px;
  }

  .brand span {
    font-size: 17px;
  }

  nav {
    gap: 12px 16px;
  }

  nav a {
    font-size: 12px;
  }

  .hero {
    min-height: auto;

    padding: 65px 0 50px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero h1 span {
    font-size: 27px;
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-tags span {
    font-size: 12px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-logo-area {
    min-height: 270px;
  }

  .hero-logo-area::before {
    width: 250px;
    height: 250px;
  }

  .logo-glow {
    width: 240px;
    height: 240px;
  }

  .hero-logo {
    width: min(300px, 90%);
  }

}

/* ================= BONUS SECTION ================= */

.bonus-section {
  padding: 100px 0;

  background:
    linear-gradient(
      180deg,
      #041812 0%,
      #082b23 50%,
      #041812 100%
    );
}

.bonus-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 25px;
}

.bonus-card {
  overflow: hidden;
}

.bonus-image {
  position: relative;

  overflow: hidden;

  background: #020807;
}

.bonus-image::after {
  content: "";

  position: absolute;

  inset: 0;

  pointer-events: none;

  background:
    linear-gradient(
      180deg,
      transparent 60%,
      rgba(2, 10, 8, 0.55)
    );
}

.bonus-image img {
  width: 100%;
  height: 420px;

  object-fit: contain;

  padding: 15px;

  transition: transform 0.35s ease;
}

.bonus-card:hover .bonus-image img {
  transform: scale(1.03);
}

.bonus-content {
  padding: 25px;
}

.bonus-label {
  display: inline-block;

  margin-bottom: 12px;

  color: #e7c65f;

  font-size: 11px;

  font-weight: 900;

  letter-spacing: 1.3px;
}

.bonus-content h3 {
  margin-bottom: 11px;

  color: #ffffff;

  font-size: 21px;
}

.bonus-content p {
  margin-bottom: 20px;

  color: #aebdb8;

  font-size: 14px;

  line-height: 1.7;
}

.bonus-status {
  display: inline-flex;

  padding: 7px 11px;

  border-radius: 7px;

  background:
    rgba(20, 208, 155, 0.09);

  border:
    1px solid rgba(20, 208, 155, 0.22);

  color: #1cdda8;

  font-size: 11px;

  font-weight: 900;
}


/* BONUS TABLET */

@media (max-width: 900px) {

  .bonus-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

}


/* BONUS MOBILE */

@media (max-width: 600px) {

  .bonus-section {
    padding: 75px 0;
  }

  .bonus-grid {
    grid-template-columns: 1fr;
  }

  .bonus-image img {
    height: auto;

    max-height: 520px;
  }

}

/* ================= GAMES SECTION ================= */

.games-section {
  padding: 100px 0;

  background:
    linear-gradient(
      180deg,
      #041812 0%,
      #06251f 50%,
      #041812 100%
    );
}

.games-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 24px;
}

.game-card {
  padding: 34px 28px;

  text-align: center;

  border-radius: 18px;

  background:
    linear-gradient(
      145deg,
      rgba(8, 38, 31, 0.95),
      rgba(4, 18, 15, 0.98)
    );

  border:
    1px solid rgba(255, 255, 255, 0.08);

  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.25);

  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.game-card:hover {
  transform: translateY(-5px);

  border-color:
    rgba(24, 211, 160, 0.35);
}

.game-icon {
  width: 62px;
  height: 62px;

  margin: 0 auto 20px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 16px;

  background:
    linear-gradient(
      135deg,
      rgba(23, 211, 160, 0.15),
      rgba(235, 196, 86, 0.12)
    );

  font-size: 30px;
}

.game-card h3 {
  margin-bottom: 10px;

  color: #ffffff;

  font-size: 22px;
}

.game-card p {
  color: #aebdb8;

  font-size: 14px;

  line-height: 1.7;
}

@media (max-width: 900px) {

  .games-grid {
    grid-template-columns: 1fr;
  }

}

/* ================= AGENT PROGRAM ================= */

.agent-section {
  padding: 100px 0;

  background:
    linear-gradient(
      180deg,
      #041812 0%,
      #082b23 50%,
      #041812 100%
    );
}

.agent-layout {
  display: grid;

  grid-template-columns:
    minmax(280px, 0.9fr)
    minmax(0, 1.1fr);

  gap: 35px;

  align-items: center;
}

.agent-poster {
  padding: 18px;

  border-radius: 18px;

  background:
    rgba(3, 20, 16, 0.9);

  border:
    1px solid rgba(255, 255, 255, 0.08);

  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.28);
}

.agent-poster img {
  width: 100%;

  max-height: 640px;

  object-fit: contain;

  border-radius: 14px;
}

.agent-card {
  padding: 38px;

  border-radius: 18px;
}

.agent-badge {
  display: inline-block;

  margin-bottom: 15px;

  color: #e8c95f;

  font-size: 11px;

  font-weight: 900;

  letter-spacing: 1.4px;
}

.agent-card h3 {
  margin-bottom: 15px;

  color: #ffffff;

  font-size: 30px;
}

.agent-card p {
  margin-bottom: 16px;

  color: #afc0ba;

  font-size: 15px;

  line-height: 1.75;
}

.agent-points {
  display: grid;

  gap: 10px;

  margin: 25px 0;
}

.agent-points span {
  color: #d8e5e1;

  font-size: 14px;
}

@media (max-width: 850px) {

  .agent-layout {
    grid-template-columns: 1fr;
  }

  .agent-card {
    padding: 28px;
  }

}

/* ================= PAYMENTS ================= */

.payments-section {
  padding: 100px 0;

  background:
    linear-gradient(
      180deg,
      #041812 0%,
      #061f1a 50%,
      #041812 100%
    );
}

.payments-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 24px;
}

.payment-card {
  padding: 35px 28px;

  text-align: center;
}

.payment-icon {
  width: 66px;
  height: 66px;

  margin: 0 auto 20px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 17px;

  background:
    linear-gradient(
      135deg,
      #0da77f,
      #e3bb4c
    );

  color: #07110e;

  font-size: 28px;

  font-weight: 900;
}

.payment-card h3 {
  margin-bottom: 12px;

  color: #ffffff;

  font-size: 22px;
}

.payment-card p {
  color: #aebdb8;

  font-size: 14px;

  line-height: 1.7;
}


/* PAYMENTS MOBILE */

@media (max-width: 850px) {

  .payments-grid {
    grid-template-columns: 1fr;
  }

}

/* ================= FAQ ================= */

.faq-section {
  padding: 100px 0;

  background:
    linear-gradient(
      180deg,
      #041812 0%,
      #08251f 50%,
      #041812 100%
    );
}

.faq-list {
  max-width: 900px;

  margin: 0 auto;

  display: grid;

  gap: 15px;
}

.faq-item {
  padding: 25px 28px;
}

.faq-item h3 {
  margin-bottom: 9px;

  color: #ffffff;

  font-size: 18px;
}

.faq-item p {
  color: #aebdb8;

  font-size: 14px;

  line-height: 1.75;
}

@media (max-width: 600px) {

  .faq-section {
    padding: 75px 0;
  }

  .faq-item {
    padding: 21px;
  }

}

/* ================= CONTACT ================= */

.contact-section {
  padding: 90px 0;

  background:
    linear-gradient(
      180deg,
      #041812 0%,
      #082b23 100%
    );
}

.contact-box {
  display: grid;

  grid-template-columns:
    auto 1fr auto;

  align-items: center;

  gap: 25px;

  padding: 35px;

  border-radius: 20px;

  background:
    linear-gradient(
      135deg,
      rgba(7, 61, 48, 0.95),
      rgba(4, 25, 20, 0.98)
    );

  border:
    1px solid rgba(231, 198, 95, 0.2);

  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.28);
}

.contact-icon {
  width: 70px;
  height: 70px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background:
    linear-gradient(
      135deg,
      #15c99a,
      #d7ae3f
    );

  color: #06120f;

  font-size: 30px;

  font-weight: 900;
}

.contact-text span {
  display: inline-block;

  margin-bottom: 8px;

  color: #e7c65f;

  font-size: 11px;

  font-weight: 900;

  letter-spacing: 1.4px;
}

.contact-text h2 {
  margin-bottom: 8px;

  color: #ffffff;

  font-size: 28px;
}

.contact-text p {
  color: #aebdb8;

  font-size: 14px;

  line-height: 1.7;
}


/* ================= RESPONSIBLE PLAY ================= */

.responsible-section {
  padding: 45px 0;

  background: #03110e;
}

.responsible-box {
  max-width: 850px;

  margin: 0 auto;

  text-align: center;
}

.responsible-box h2 {
  margin-bottom: 10px;

  color: #e7c65f;

  font-size: 20px;
}

.responsible-box p {
  color: #98aaa4;

  font-size: 13px;

  line-height: 1.7;
}


/* ================= FOOTER ================= */

footer {
  padding: 28px 0;

  background: #020a08;

  border-top:
    1px solid rgba(255, 255, 255, 0.07);
}

.footer-content {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 25px;
}

.footer-brand {
  display: flex;

  align-items: center;

  gap: 12px;
}

.footer-brand img {
  width: 110px;

  object-fit: contain;
}

.footer-brand span {
  color: #e7c65f;

  font-weight: 900;
}

.footer-info {
  text-align: right;
}

.footer-info p {
  color: #899a95;

  font-size: 12px;

  line-height: 1.6;
}


/* CONTACT + FOOTER MOBILE */

@media (max-width: 760px) {

  .contact-box {
    grid-template-columns: 1fr;

    text-align: center;
  }

  .contact-icon {
    margin: 0 auto;
  }

  .footer-content {
    flex-direction: column;

    text-align: center;
  }

  .footer-info {
    text-align: center;
  }

}

/* ================= ABOUT PAKVIP ================= */

.about-section {
  padding: 100px 0;

  background:
    linear-gradient(
      180deg,
      #041812 0%,
      #07251f 50%,
      #041812 100%
    );
}

.about-box {
  max-width: 900px;

  margin: 0 auto;

  padding: 38px;

  border-radius: 18px;

  background:
    linear-gradient(
      145deg,
      rgba(8, 40, 33, 0.95),
      rgba(4, 18, 15, 0.98)
    );

  border: 1px solid rgba(231, 198, 95, 0.14);

  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.25);
}

.about-box h3 {
  margin-bottom: 15px;

  color: #e7c65f;

  font-size: 26px;
}

.about-box p {
  margin-bottom: 15px;

  color: #aebdb8;

  font-size: 15px;

  line-height: 1.8;
}

.about-features {
  display: flex;

  flex-wrap: wrap;

  gap: 12px;

  margin-top: 25px;
}

.about-features span {
  padding: 9px 13px;

  border-radius: 8px;

  background: rgba(20, 208, 155, 0.08);

  border: 1px solid rgba(20, 208, 155, 0.18);

  color: #d9e7e2;

  font-size: 13px;

  font-weight: 700;
}


/* ABOUT MOBILE */

@media (max-width: 600px) {

  .about-section {
    padding: 75px 0;
  }

  .about-box {
    padding: 25px;
  }

}