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

:root {
  --yellow: #f7c600;
  --yellow-dark: #ddb000;
  --bg: #0f1014;
  --bg-soft: #181a20;
  --card: #1d2028;
  --card-2: #232733;
  --text: #ffffff;
  --muted: #b6bcc8;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
  --sidebar-width: 290px;
  --container: 1180px;
  --radius: 24px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 30px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 10px;
  font-weight: 900;
  color: var(--text);
}

.section-title p {
  color: var(--muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 14px;
  font-weight: 800;
  transition: 0.3s ease;
  border: none;
}

.btn-sm {
  padding: 10px 18px;
  font-size: 0.92rem;
}

.btn-yellow {
  background: var(--yellow);
  color: #111;
  box-shadow: 0 10px 24px rgba(247, 198, 0, 0.25);
}

.btn-yellow:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--yellow);
  color: var(--yellow);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(247, 198, 0, 0.08);
}

.mb-20 {
  margin-bottom: 20px;
}

/* =========================
   DESKTOP LEFT SIDEBAR
========================= */
.sidebar-header {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-width);
  height: 100vh;
  background: #12141b;
  border-right: 1px solid var(--border);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  z-index: 999;
}

.sidebar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 30px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-box {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  font-size: 1.6rem;
  flex-shrink: 0;
}

.logo-title {
  display: block;
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--text);
}

.logo-text small {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.8rem;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.sidebar-nav a {
  color: var(--muted);
  font-weight: 800;
  padding: 14px 16px;
  border-radius: 14px;
  transition: 0.3s ease;
  background: transparent;
}

.sidebar-nav a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.04);
}

.sidebar-nav .sidebar-btn {
  margin-top: 12px;
  color: var(--yellow);
  text-align: center;
}

/* Mobile menu button hidden on desktop */
.menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border: none;
  background: rgba(247, 198, 0, 0.12);
  border-radius: 12px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 11px;
}

.menu-btn span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--yellow);
  border-radius: 10px;
}

/* Main content shifted right */
.main-content {
  margin-left: var(--sidebar-width);
  min-height: 100vh;
}

/* Hero */
.hero {
  padding: 55px 0 40px;
}

.hero-wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
}

.hero-tag {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(247, 198, 0, 0.1);
  color: var(--yellow);
  font-weight: 800;
  font-size: 0.9rem;
  border: 1px solid rgba(247, 198, 0, 0.18);
}

.hero-left h1 {
    font-size: 25px;
    margin: 18px 0;
    color: #e9cf01;
}

.hero-left p {
  color: #fff;
  line-height: 1.8;
  font-size: 1.05rem;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.play-row{
    display: flex;
    gap: 14px;
}
.play-online{
    display: grid;
}
.play-online p{
    text-align: center;
}
.hero-right a{
    position: relative;
    display: inline-block;
        left: 150px;
    bottom: 13px;
}

.hero-image-card {
  background: var(--card);
  border: 3px solid rgba(247, 198, 0, 0.22);
  border-radius: 28px;
  padding: 14px;
  box-shadow: var(--shadow);
}

.hero-image-card img {
  width: 100%;
  border-radius: 18px;
}

/* About */
.about-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.about-card {
  background: var(--card);
  border: 2px solid rgba(247, 198, 0, 0.18);
  border-radius: 28px;
  padding: 14px;
  box-shadow: var(--shadow);
}

.about-card img {
  border-radius: 18px;
  width: 100%;
}

.about-content h2 {
    font-size: 30px;
    margin-bottom: 18px;
    color: #f7c600;
}

.about-content p {
  color: #fff;
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-content h3 {
  font-size: 1.3rem;
  margin: 20px 0 10px;
  font-weight: 900;
  color: var(--text);
}
.section-title img{
    width: 20%;
    height: 20%;
   margin: auto;

}

/* Strip */
.player-strip {
  padding-bottom: 40px;
}

.strip-wrap {
  background: linear-gradient(135deg, #f7c600, #d9a900);
  border-radius: 24px;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.strip-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.strip-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(0,0,0,0.12);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
}

.strip-left h3 {
  font-size: 1.3rem;
  font-weight: 900;
  color: #111;
}

.strip-left p {
  color: #2d2300;
  font-weight: 700;
}

/* Steps */
.steps{
    padding-bottom: 0px !important;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
  transition: 0.3s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(247, 198, 0, 0.22);
}

.step-no {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: #111;
  font-weight: 900;
  margin-bottom: 16px;
}

.step-card h3 {
  margin-bottom: 10px;
  font-weight: 900;
}

.step-card p {
  color: var(--muted);
  line-height: 1.7;
}

/* Download */
.download-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.download-left h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin: 16px 0;
}

.download-left p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.download-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  min-width: 200px;
  border-radius: 18px;
  background: var(--card-2);
  border: 1px solid var(--border);
}

.store-btn span {
  font-size: 1.5rem;
}

.store-btn small {
  display: block;
  color: var(--muted);
}

.store-btn strong {
  font-weight: 900;
  color: var(--text);
}

.download-card {
  background: var(--bg-soft);
  border: 2px solid rgba(247, 198, 0, 0.18);
  border-radius: 28px;
  padding: 14px;
}

.download-card img {
  border-radius: 18px;
}


/* =========================
   CONTACT SECTION - IMAGE STYLE
========================= */
.contact {
  padding: 90px 0;
}

.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
    background: #0f1014;
    border: 1px solid rgba(86, 128, 199, 0.35);
  border-radius: 22px;
  padding: 28px 28px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

/* Left Image */
.contact-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-visual img {
  width: 100%;
  max-width: 520px;
  object-fit: contain;
  display: block;
}

/* Right Content */
.contact-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-heading-wrap {
  margin-bottom: 28px;
}

.contact-star {
  display: inline-block;
  color: #f7c600;
  font-size: 1.4rem;
  line-height: 1;
  margin-bottom: 10px;
}

.contact-heading-wrap h2 {
 font-size: 30px;
    font-weight: 600;
    line-height: 1;
    color: #facb00;
    letter-spacing: 3px;
    margin-top: 15px;
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 22px;
  background: #202433;
  border-radius: 18px;
  padding: 28px 24px;
  border: 1px solid rgba(255,255,255,0.03);
  transition: 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-4px);
  border-color: rgba(247, 198, 0, 0.18);
  box-shadow: 0 14px 30px rgba(0,0,0,0.22);
}

.contact-item-icon {
  width: 66px;
  min-width: 66px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.contact-item-icon svg {
  width: 100%;
  height: 100%;
}

.contact-item-text h3 {
  font-size: clamp(1.4rem, 2vw, 2.2rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.2;
}

.contact-item-text p {
  font-size: clamp(1rem, 1.4vw, 1.5rem);
  color: #d5d8e3;
  line-height: 1.4;
  word-break: break-word;
}

/* Responsive */
@media (max-width: 1100px) {
  .contact-box {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-visual img {
    max-width: 430px;
  }

  .contact-content {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .contact {
    padding: 70px 0;
  }

  .contact-box {
    padding: 18px;
    border-radius: 18px;
  }

  .contact-heading-wrap {
    text-align: center;
    margin-bottom: 22px;
  }

  .contact-heading-wrap h2 {
    font-size: 2.4rem;
  }

  .contact-item {
    padding: 18px 16px;
    gap: 14px;
    border-radius: 14px;
  }

  .contact-item-icon {
    width: 46px;
    min-width: 46px;
    height: 46px;
  }

  .contact-item-text h3 {
    font-size: 1.1rem;
  }

  .contact-item-text p {
    font-size: 0.92rem;
  }

  .contact-visual img {
    max-width: 100%;
  }
}



/* Footer */
.footer {
  padding: 26px 0;
  border-top: 1px solid var(--border);
  background: transparent;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.footer p {
  color: var(--muted);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
  .hero-wrap,
  .about-wrap,
  .download-wrap {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .sidebar-header {
    position: sticky;
    width: 100%;
    height: auto;
    padding: 16px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .main-content {
    margin-left: 0;
  }

  .menu-btn {
    display: flex;
  }

  .sidebar-top {
    margin-bottom: 0;
  }

  .sidebar-nav {
    position: absolute;
    top: 88px;
    left: 16px;
    right: 16px;
    background: #151821;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 16px;
    display: none;
    box-shadow: var(--shadow);
  }

  .sidebar-nav.active {
    display: flex;
  }

  .hero-left {
    text-align: center;
  }

  .hero-left p {
    margin: 0 auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .section {
    padding: 30px 0;
  }

  .hero-left h1 {
    font-size: 2.2rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .download-btns {
    flex-direction: column;
  }

  .store-btn {
    width: 100%;
  }

  .strip-wrap {
    justify-content: center;
    text-align: center;
  }

  .strip-left {
    flex-direction: column;
  }

  .footer-wrap {
    flex-direction: column;
    text-align: center;
  }
}


.darkbuttonvr {
    background-color: #000 !important;
    color: #fff !important;
}


.contact-list .contact-item:first-child{
        background-color: #33aa4c;
}


.contact-list .contact-item:last-child{
        background-color: #4ab2fb;
}



.bc-contact-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Card Base */
.bc-contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-radius: 16px;
  background: linear-gradient(145deg, #0f172a, #020617);
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Glow Effect */
.bc-contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: 0.3s;
      z-index: -4;
}

.bc-contact-card:hover::before {
  opacity: 1;
}

.bc-contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Icon */
.bc-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
}

/* Business Style */
.bc-business .bc-icon-box {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

/* Support Style */
.bc-support .bc-icon-box {
  background: linear-gradient(135deg, #38bdf8, #0284c7);
}

/* Content */
.bc-content {
  flex: 1;
  margin-left: 18px;
}

.bc-content h3 {
  margin: 0;
  font-size: 18px;
  color: #fff;
}

.bc-content p {
  margin: 4px 0;
  color: #94a3b8;
  font-size: 14px;
}

/* WhatsApp List */
.bc-whatsapp-list {
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bc-whatsapp-list a {
  color: #22c55e;
  font-size: 14px;
  text-decoration: none;
  transition: 0.2s;
}

.bc-whatsapp-list a:hover {
  color: #4ade80;
}

/* Button */
.bc-action-btn {
  padding: 10px 16px;
  border-radius: 10px;
  background: #facc15;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.bc-action-btn:hover {
  background: #eab308;
}

/* Responsive */
@media (max-width: 768px) {
  .bc-contact-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .bc-action-btn {
    width: 100%;
    text-align: center;
  }
}


.bc-icon-box svg{
        width: 30px;
    }
