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

html { scroll-behavior: smooth; }

body.kc-body {
  background: #0d1b2a;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #0d1b2a; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(#00d4ff, #e91e8c);
  border-radius: 3px;
}

a { text-decoration: none; }

@keyframes glowCyan {
  0%, 100% { box-shadow: 0 4px 20px rgba(0,212,255,.45); }
  50% { box-shadow: 0 4px 44px rgba(0,212,255,.9), 0 0 60px rgba(0,212,255,.2); }
}

@keyframes glowPink {
  0%, 100% { box-shadow: 0 4px 20px rgba(233,30,140,.45); }
  50% { box-shadow: 0 4px 44px rgba(233,30,140,.9), 0 0 60px rgba(233,30,140,.2); }
}

/* Buttons — Example 3 */
.btn-join {
  background: #00d4ff;
  color: #0d1b2a;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .8px;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  padding: 11px 24px;
  cursor: pointer;
  animation: glowCyan 2.5s ease-in-out infinite;
  transition: transform .2s, filter .2s;
  white-space: nowrap;
}

.btn-join:hover {
  transform: scale(1.06) translateY(-1px);
  filter: brightness(1.1);
}

.btn-join:active,
.btn-login:active {
  transform: scale(0.98);
}

.btn-join-hero {
  font-size: 17px;
  padding: 16px 48px;
  border-radius: 10px;
}

.btn-join-cta {
  font-size: 17px;
  padding: 18px 56px;
  border-radius: 10px;
}

.btn-login {
  background: #e91e8c;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .8px;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  padding: 11px 24px;
  cursor: pointer;
  animation: glowPink 2.5s ease-in-out infinite;
  transition: transform .2s, filter .2s;
  white-space: nowrap;
}

.btn-login:hover {
  transform: scale(1.06) translateY(-1px);
  filter: brightness(1.1);
}

/* Header */
.kc-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, #0d1b2a 0%, #132238 100%);
  border-bottom: 2px solid #1a2d42;
  box-shadow: 0 2px 24px rgba(0,0,0,.55);
}

.kc-header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.kc-logo-link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.kc-logo {
  height: 50px;
  max-width: 200px;
  width: auto;
  object-fit: contain;
  display: block;
}

.kc-header-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* {{MENU_$1}} desktop */
.kc-nav-slot--desktop {
  flex: 1;
  display: flex;
  justify-content: center;
  height: 100%;
  align-items: flex-end;
}

.kc-nav-slot--desktop .kc-nav-inner {
  display: flex;
  gap: 28px;
  align-items: flex-end;
  height: 100%;
}

.kc-nav-slot--desktop .kc-menu-link {
  color: #00d4ff;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .9px;
  text-transform: uppercase;
  padding: 8px 0 12px;
  position: relative;
  white-space: nowrap;
  font-family: 'Poppins', sans-serif;
  transition: color .2s;
}

.kc-nav-slot--desktop .kc-menu-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #e91e8c;
  border-radius: 2px 2px 0 0;
  transform: scaleX(0);
  transition: transform .28s ease;
}

.kc-nav-slot--desktop .kc-menu-link:hover::after {
  transform: scaleX(1);
}

/* Hamburger */
.kc-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  margin-left: auto;
}

.kc-ham-bar {
  display: block;
  width: 26px;
  height: 2.5px;
  background: #00d4ff;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* {{MENU_$1}} mobile */
.kc-mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 998;
  background: #0a1525;
  border-bottom: 2px solid #1a2d42;
  flex-direction: column;
  box-shadow: 0 8px 40px rgba(0,0,0,.7);
}

.kc-mobile-nav.kc-open {
  display: flex;
}

.kc-nav-slot--mobile .kc-nav-inner {
  display: flex;
  flex-direction: column;
}

.kc-nav-slot--mobile .kc-menu-link {
  color: #00d4ff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-family: 'Poppins', sans-serif;
  transition: background .2s;
  display: block;
}

.kc-nav-slot--mobile .kc-menu-link:hover {
  background: rgba(0,212,255,.06);
}

.kc-mobile-btns {
  display: flex;
  gap: 12px;
  padding: 20px 24px;
}

.kc-mobile-btns .btn-join,
.kc-mobile-btns .btn-login {
  flex: 1;
}

/* Hero */
.kc-hero-section {
  position: relative;
  margin-top: 72px;
  height: 560px;
  background-image: url('/wp-content/uploads/Karambol main.webp');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.kc-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,27,42,.97) 0%, rgba(13,27,42,.82) 38%, rgba(13,27,42,.3) 58%, transparent 72%);
}

.kc-hero-bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 90px;
  background: linear-gradient(to top, #0d1b2a, transparent);
}

.kc-hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 80px;
  max-width: 820px;
}

.kc-hero-h1 {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.13;
  margin-bottom: 22px;
  color: #ffffff;
  text-wrap: pretty;
}

.kc-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,.78);
  line-height: 1.65;
  margin-bottom: 36px;
  font-weight: 300;
  text-wrap: pretty;
}

/* Content */
.kc-section {
  background: #132238;
  padding: 80px 0;
}

.kc-cont-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

.kc-content {
  color: rgba(255,255,255,.82);
  font-size: 15.5px;
  line-height: 1.85;
}

.kc-content .kc-featured-label,
.kc-content span[style*="uppercase"] {
  color: #e91e8c;
}

.kc-content h2,
.kc-content .kc-h2 {
  font-size: 36px;
  font-weight: 800;
  color: #00d4ff;
  margin: 10px 0 20px;
  text-wrap: pretty;
  line-height: 1.25;
}

.kc-content h3,
.kc-content .kc-h3 {
  font-size: 22px;
  font-weight: 700;
  color: #00d4ff;
  margin: 0 0 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0,212,255,.2);
}

.kc-content p,
.kc-content .kc-intro-p {
  font-size: 15.5px;
  color: rgba(255,255,255,.8);
  line-height: 1.85;
  margin-bottom: 44px;
  text-wrap: pretty;
}

.kc-content strong {
  color: #00d4ff;
}

.kc-content ul.kc-check,
.kc-content .kc-check {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.kc-content .kc-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 52px;
  margin-bottom: 52px;
}

.kc-content .kc-check li {
  padding: 7px 0 7px 28px;
  position: relative;
  font-size: 15px;
  color: rgba(255,255,255,.82);
  font-family: 'Poppins', sans-serif;
}

.kc-content .kc-check li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #00d4ff;
  font-weight: 700;
}

.kc-content .table-wrap,
.kc-content > div[style*="overflow-x"] {
  overflow-x: auto;
  margin-bottom: 52px;
  border-radius: 12px;
  border: 1px solid rgba(0,212,255,.18);
  box-shadow: 0 4px 32px rgba(0,212,255,.06);
  -webkit-overflow-scrolling: touch;
}

.kc-content table,
.kc-content .kc-tbl {
  width: 100%;
  border-collapse: collapse;
}

.kc-content .kc-tbl th,
.kc-content table th {
  background: #1a2d42;
  color: #00d4ff;
  font-weight: 700;
  font-size: 13px;
  padding: 14px 16px;
  text-align: left;
  border: 1px solid rgba(0,212,255,.22);
  font-family: 'Poppins', sans-serif;
  letter-spacing: .25px;
}

.kc-content .kc-tbl td,
.kc-content table td {
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,.07);
  font-size: 13.5px;
  color: rgba(255,255,255,.83);
  font-family: 'Poppins', sans-serif;
  transition: background .15s;
}

.kc-content .kc-tbl tr:nth-child(even) td,
.kc-content table tr:nth-child(even) td {
  background: rgba(255,255,255,.028);
}

.kc-content .kc-tbl tr:hover td,
.kc-content table tr:hover td {
  background: rgba(0,212,255,.07);
}

.kc-content blockquote,
.kc-content .kc-bq {
  margin: 0 0 52px;
  padding: 26px 32px;
  background: rgba(0,212,255,.05);
  border-left: 4px solid #00d4ff;
  border-radius: 0 12px 12px 0;
  position: relative;
  overflow: hidden;
}

.kc-content blockquote::before,
.kc-content .kc-bq::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 24px;
  font-size: 64px;
  color: rgba(0,212,255,.15);
  font-family: Georgia, serif;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.kc-content .kc-bq-text,
.kc-content blockquote p {
  font-size: 15.5px;
  font-style: italic;
  color: rgba(255,255,255,.85);
  line-height: 1.75;
  padding-left: 36px;
  padding-top: 18px;
  text-wrap: pretty;
  margin-bottom: 14px;
}

.kc-content .kc-bq-cite,
.kc-content blockquote cite {
  color: #00d4ff;
  font-style: normal;
  font-weight: 600;
  font-size: 13.5px;
  padding-left: 36px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.kc-content .kc-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 22px 28px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.kc-content .kc-step:nth-child(odd) {
  background: rgba(255,255,255,.02);
}

.kc-content .kc-step-num {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #00d4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  color: #0d1b2a;
  margin-top: 2px;
}

.kc-content .kc-step-title {
  color: #ffffff;
  font-size: 15.5px;
  display: block;
  margin-bottom: 5px;
}

.kc-content .kc-step-body {
  color: rgba(255,255,255,.65);
  font-size: 14px;
  line-height: 1.6;
}

.kc-content-cta {
  text-align: center;
  padding: 8px 0 16px;
}

.kc-cta-note {
  color: rgba(255,255,255,.4);
  font-size: 12.5px;
  margin-bottom: 22px;
}

/* Footer — {{MENU_$2}} */
.kc-footer-section {
  background: #0d1b2a;
  border-top: 1px solid rgba(0,212,255,.1);
  padding-top: 64px;
}

.kc-footer-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 52px;
}

.kc-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 52px;
  margin-bottom: 56px;
}

.kc-footer-heading {
  color: #00d4ff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

.kc-nav-slot--footer .kc-footer-nav {
  display: flex;
  flex-direction: column;
}

.kc-nav-slot--footer .ft-a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  font-size: 13.5px;
  font-family: 'Poppins', sans-serif;
  transition: color .2s;
  display: block;
}

.kc-nav-slot--footer .ft-a:hover {
  color: #00d4ff;
}

.kc-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.kc-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: rgba(255,255,255,.55);
  font-size: 13.5px;
  line-height: 1.45;
}

.kc-contact-dash {
  color: #00d4ff;
  font-size: 13px;
  flex-shrink: 0;
}

.kc-footer-divider {
  height: 1px;
  background: rgba(255,255,255,.06);
}

.kc-cert-pad {
  background: #ffffff;
  padding: 20px 52px;
}

.kc-cert-inner {
  max-width: 1440px;
  margin: 0 auto;
}

.kc-cert-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.kc-payments-bar {
  line-height: 0;
}

.kc-payments-img {
  width: 100%;
  height: auto;
  display: block;
}

.kc-copyright-bar {
  background: #07101a;
  padding: 16px 52px;
}

.kc-copyright-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.kc-copyright-text {
  color: rgba(255,255,255,.28);
  font-size: 12px;
  font-family: 'Poppins', sans-serif;
}

@media (max-width: 768px) {
  table {
    display: block !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }
}

@media (max-width: 900px) {
  .kc-nav-slot--desktop { display: none; }
  .kc-header-btns { display: none; }
  .kc-hamburger { display: flex; }
}

@media (max-width: 768px) {
  .kc-hero-section {
    height: auto;
    min-height: 420px;
  }

  .kc-hero-inner {
    padding: 48px 24px;
    max-width: 100%;
  }

  .kc-hero-h1 {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 14px;
  }

  .kc-hero-sub {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .btn-join-hero {
    font-size: 15px;
    padding: 20px 28px;
  }

  .kc-section { padding: 48px 0; }
  .kc-cont-wrap { padding: 0 20px; }

  .kc-content h2,
  .kc-content .kc-h2 { font-size: 22px; }

  .kc-content h3,
  .kc-content .kc-h3 { font-size: 17px; }

  .kc-content .kc-two-col {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .kc-content p,
  .kc-content .kc-intro-p { font-size: 14px; }

  .btn-join-cta {
    font-size: 15px;
    padding: 14px 28px;
  }

  .kc-content .kc-step { padding: 16px; }

  .kc-content .kc-step-num {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }

  .kc-content .kc-step-title { font-size: 14px; }
  .kc-content .kc-step-body { font-size: 13px; }

  .kc-content blockquote,
  .kc-content .kc-bq { padding: 20px; }

  .kc-content .kc-bq-text,
  .kc-content blockquote p {
    font-size: 14px;
    padding-left: 16px;
  }

  .kc-content .kc-bq-cite,
  .kc-content blockquote cite {
    font-size: 12px;
    padding-left: 16px;
  }

  .kc-footer-section { padding-top: 40px; }
  .kc-footer-wrap { padding: 0 20px; }

  .kc-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .kc-cert-pad { padding: 12px 20px; }
  .kc-copyright-bar { padding: 14px 20px; }

  .kc-copyright-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .kc-footer-grid { grid-template-columns: 1fr; }
  .kc-hero-h1 {
    font-size: 24px;
    margin: 40px 0;
  }
  .kc-hero-section { min-height: 360px; }
}
