@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Exo+2:wght@300;400;500;600;700;800&display=swap');

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
  --main-background: #0a0e1a;
  --footer-header-bg: #080c16;
  --brand-color: #f0c040;
  --text: #e8eaf0;
  --accent-glow: rgba(240, 192, 64, 0.35);
  --card-bg: rgba(255, 255, 255, 0.04);
  --border-subtle: rgba(240, 192, 64, 0.18);
  --gradient-hero: linear-gradient(135deg, #0a0e1a 0%, #111827 50%, #0d1628 100%);
}

/* =============================================
   BASE
   ============================================= */
body {
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  font-weight: 400;
  background: var(--main-background);
  color: var(--text);
  background-image:
    radial-gradient(ellipse at 20% 20%, rgba(240, 192, 64, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(80, 120, 255, 0.07) 0%, transparent 60%);
  background-attachment: fixed;
}

a:hover {
  text-decoration: none;
}

::selection { color: #000; background: var(--brand-color); }
::-webkit-selection { color: #000; background: var(--brand-color); }
::-moz-selection { color: #000; background: var(--brand-color); }

ul {
  padding: 0; margin: 0; list-style-type: none;
}

/* =============================================
   HEADER
   ============================================= */
.header-area {
  background: rgba(8, 12, 22, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border-subtle), 0 4px 40px rgba(0,0,0,0.4);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  animation: slideDown 0.6s ease both;
}

@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

.inner_header_part {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header_left { width: 20%; display: flex; align-items: center; }
.inner_header_ { width: 60%; }
.header_right { width: 20%; }

.header_logo img {
  width: 100%;
  max-width: 150px;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 8px var(--accent-glow));
  transition: filter 0.3s;
}
.header_logo img:hover {
  filter: drop-shadow(0 0 16px rgba(240, 192, 64, 0.6));
}

/* NAV */
.header_nav ul {
  padding: 0; margin: 0; list-style-type: none;
  text-align: center;
}
.header_nav ul li { display: inline-block; }
.header_nav ul li a {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.25s, text-shadow 0.25s;
  color: rgba(255,255,255,0.75);
  font-size: 18px;
}
.header_nav ul li a:hover {
  color: var(--brand-color);
  text-shadow: 0 0 12px var(--accent-glow);
}

/* CTA BUTTON */
.header_bnt a {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  color: #0a0e1a;
  font-size: 16px;
  background: var(--brand-color) !important;
  width: 176px;
  height: 52px;
  display: block;
  line-height: 52px;
  text-align: center;
  border-radius: 4px;
  margin: auto;
  margin-right: 0;
  box-shadow: 0 0 20px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,0.3);
}
.header_bnt a:hover {
  background: #ffd060 !important;
  box-shadow: 0 0 35px rgba(240,192,64,0.6);
  transform: translateY(-1px);
  color: #000;
}

.mune_icon_ { display: none; }
.mune_icon_ img { width: 40px; height: 40px; }
.main_header_nav_img { display: none; }
.main_header_nav_img img { max-width: 100%; display: block; margin: auto; }
.header_bnts1 { display: none; }

/* =============================================
   HERO
   ============================================= */
.mobile_hero-area {
  background: transparent;
  padding: 0;
}

.hero-area {
  background: var(--gradient-hero);
  padding: 0;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.hero-area::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(240,192,64,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240,192,64,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridPulse 8s linear infinite;
  pointer-events: none;
}

@keyframes gridPulse {
  0%   { opacity: 0.5; }
  50%  { opacity: 1; }
  100% { opacity: 0.5; }
}

.hero-area::after {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  width: 700px;
  height: 700px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(240,192,64,0.12) 0%, transparent 70%);
  pointer-events: none;
  animation: orbFloat 6s ease-in-out infinite;
}

@keyframes orbFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-20px); }
}

.hero_right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px 60px;
  position: relative;
  z-index: 2;
  animation: fadeUp 0.8s ease 0.2s both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero_right h1 {
  font-family: 'Rajdhani', sans-serif;
  color: #ffffff;
  text-align: center;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
  padding-bottom: 28px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
  letter-spacing: -0.5px;
}

.hero_right a {
  color: #000;
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  width: 240px;
  height: 54px;
  border-radius: 4px;
  background: var(--brand-color);
  display: block;
  margin: auto;
  line-height: 54px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 30px var(--accent-glow), 0 4px 20px rgba(0,0,0,0.3);
  position: relative;
}
.hero_right a::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.2) 0%, transparent 100%);
  border-radius: 4px;
  pointer-events: none;
}
.hero_right a:hover {
  background: #ffd060;
  box-shadow: 0 0 50px rgba(240,192,64,0.7), 0 8px 30px rgba(0,0,0,0.4);
  transform: translateY(-3px) scale(1.02);
  color: #000;
}

.welcome-offer {
  font-family: 'Exo 2', sans-serif;
  margin: 28px 0 0;
  padding: 20px 28px;
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.welcome-offer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-color), transparent);
}
.welcome-label {
  font-size: 11px;
  color: rgba(232, 234, 240, 0.55);
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}
.welcome-main {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  color: var(--brand-color);
  line-height: 1.2;
  display: block;
  margin-bottom: 14px;
  text-shadow: 0 0 20px var(--accent-glow);
}
.welcome-bonus-btn {
  display: inline-block;
  padding: 10px 24px;
  background: var(--brand-color);
  color: #000 !important;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 0 16px var(--accent-glow);
}
.welcome-bonus-btn:hover {
  background: #ffd060;
  box-shadow: 0 0 28px rgba(240, 192, 64, 0.6);
  transform: translateY(-2px);
  color: #000 !important;
}

/* =============================================
   INNER / CONTENT AREA
   ============================================= */
.inner-area {
  padding: 60px 0 80px;
}

.main_text_box {
  padding-top: 20px;
}

.main_text_box h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--brand-color);
  padding-top: 32px;
  padding-bottom: 12px;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.main_text_box h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  padding-top: 24px;
  padding-bottom: 8px;
  opacity: 0.9;
}

.main_text_box p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(232, 234, 240, 0.85);
  padding-top: 10px;
}

.main_text_box ul {
  list-style: none;
  padding: 12px 0 0 0;
}

.main_text_box ul li {
  position: relative;
  padding-left: 20px;
  padding-bottom: 8px;
  font-size: 15px;
  color: rgba(232, 234, 240, 0.8);
  line-height: 1.6;
}

.main_text_box ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--brand-color);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
}

/* TABLE */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 32px;
  font-size: 15px;
}

table th {
  background: var(--footer-header-bg);
  color: var(--brand-color);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.07);
  text-align: left;
}

table td {
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,0.05);
  color: rgba(232,234,240,0.85);
  background: rgba(255,255,255,0.02);
  vertical-align: top;
  line-height: 1.5;
}

table tr:nth-child(even) td {
  background: rgba(255,255,255,0.04);
}

table tr:hover td {
  background: rgba(240,192,64,0.05);
}

/* =============================================
   FOOTER
   ============================================= */
.footer-area {
  background: var(--footer-header-bg);
  padding: 48px 0 0;
  border-top: 1px solid var(--border-subtle);
}

.footer-navigation ul {
  list-style: none;
  padding: 0;
}

.footer-navigation ul li {
  margin-bottom: 10px;
}

.footer-navigation ul li a {
  color: rgba(232, 234, 240, 0.6);
  font-size: 14px;
  transition: color 0.2s, text-shadow 0.2s;
}

.footer-navigation ul li a:hover {
  color: var(--brand-color);
  text-shadow: 0 0 8px var(--accent-glow);
}

.footer_part {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 28px 0 20px;
  margin-top: 20px;
}

.footer_logo img {
  max-width: 130px;
  opacity: 0.8;
  transition: opacity 0.3s;
}
.footer_logo img:hover { opacity: 1; }

.copyright-text p {
  font-size: 13px;
  color: rgba(232, 234, 240, 0.45);
  line-height: 1.6;
  margin-bottom: 6px;
}

.footer-icons-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,0,0,0.3);
  margin: 10px -9999px 20px;
  padding: 24px 9999px;
  border-top: 1px solid rgba(255,255,255,0.05);
  gap: 16px;
}

.footer-svg-icon {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.5;
  transition: opacity 0.25s, filter 0.25s;
}

.footer-svg-icon:hover {
  opacity: 1;
  filter: drop-shadow(0 0 8px var(--accent-glow));
}

.footer-svg-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .container { padding: 0 30px; }
  .header_nav ul li a { font-size: 16px; }
  .hero_right h1 { font-size: 42px; line-height: 1.15; padding-top: 60px; }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .container { padding: 0 30px; }
  .hero_right h1 { font-size: clamp(20px, 4vw, 34px); line-height: 1.2; padding-bottom: 24px; padding-top: 36px; }
  .hero-area { padding-top: 60px; }
  .inner_header_ { display: none; }
  .header-area { padding: 12px 0; }
  .header_left { width: 80%; }
  .header_right { width: 20%; text-align: right; }
  .header_bnts { display: none; }
  .close1_icon { display: none; }
  .mune_icon_ { display: block; }
  .main_header_nav_img { display: block; }
  .inner_header_ { width: 0%; display: block; }
  .main_header_nav {
    width: 105%; height: 591px; position: absolute;
    left: -9px; z-index: 99999; top: 88px;
    background: var(--main-background);
    padding: 0 16px; padding-top: 64px;
    display: none;
    border-bottom: 1px solid var(--border-subtle);
  }
  .header_nav ul li a {
    color: var(--text); font-size: 24px;
    font-weight: 600; display: block; margin: 28px 0;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 1px; text-transform: uppercase;
  }
  .header_nav ul li { display: block; }
  .header_bnt a {
    background: var(--brand-color) !important;
    color: #000; font-size: 15px; font-weight: 700;
    width: 100%; height: 54px; line-height: 54px;
    text-align: center; border-radius: 4px;
    display: block; margin: auto; margin-right: 0;
    margin-top: 80px;
  }
}

@media screen and (max-width: 767px) {
  .inner_header_ { display: block; width: 0%; }
  .header-area { padding: 12px 0; }
  .header_left { width: 80%; }
  .header_right { width: 20%; text-align: right; }
  .header_bnts { display: none; }
  .close1_icon { display: none; }
  .mune_icon_ { display: block; }
  .main_header_nav_img { display: block; }
  .main_header_nav {
    width: 105%; height: 591px; position: absolute;
    left: -9px; z-index: 99999; top: 65px;
    background: var(--main-background);
    padding: 0 16px; padding-top: 64px; display: none;
    border-bottom: 1px solid var(--border-subtle);
  }
  .header_nav ul li a {
    color: var(--text);
    font-family: 'Rajdhani', sans-serif;
    font-size: 24px; font-weight: 600;
    letter-spacing: 1px; text-transform: uppercase;
    display: block; margin: 28px 0;
  }
  .header_nav ul li { display: block; }
  .header_bnt a {
    background: var(--brand-color) !important;
    color: #000; font-size: 15px; font-weight: 700;
    width: 100%; height: 54px; line-height: 54px;
    text-align: center; border-radius: 4px;
    display: block; margin: auto; margin-right: 0;
    margin-top: 80px;
  }
  .footer-area { padding: 0 0 34px; }
  .footer_logo img { display: block; margin: auto; margin-bottom: 24px; }
  .container { padding: 0 16px; }
  .main_text_box h2 { font-size: 24px; line-height: 34px; }
  .main_text_box { padding-top: 28px; }
  .main_text_box p { font-size: 15px; padding-top: 14px; }
  .hero-area { padding-top: 40px; }
  .hero_right h1 { font-size: clamp(26px, 6vw, 38px); line-height: 1.2; padding-bottom: 20px; padding-top: 0; }
  .hero_right { padding: 24px 16px 48px; }
  .header_bnts1 { display: block; }
  .footer-navigation { text-align: center; }
  .footer-navigation .col-sm-12 { margin-bottom: 30px; }
  .footer-icons-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .footer-svg-icon {
    flex: 0 0 calc(33.333% - 20px);
  }
  .table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  table { width: 100%; min-width: 700px; }
}

@media (min-width: 992px) {
  .header_nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0; margin: 0;
  }
  .header_nav li {
    margin: 0 18px;
    position: relative;
    padding-right: 20px;
  }
  .header_nav li:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: -15px;
    color: rgba(255,255,255,0.2);
    font-size: 14px;
  }
}

/* =============================================
   BUBBLE BANNER
   ============================================= */
.bubble-banner-area {
  padding: 48px 0;
}
.bubble-banner {
  position: relative;
  border-radius: 50px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow:
    0 0 0 2px var(--border-subtle),
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(240, 192, 64, 0.08);
}
.bubble-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 14, 26, 0.55) 0%,
    rgba(10, 14, 26, 0.25) 100%
  );
  border-radius: inherit;
}
.bubble-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.bubble-btn {
  display: inline-block;
  padding: 14px 40px;
  background: var(--brand-color);
  color: #000 !important;
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 30px var(--accent-glow), 0 4px 20px rgba(0,0,0,0.4);
  position: relative;
}
.bubble-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.2), transparent);
  border-radius: 4px;
  pointer-events: none;
}
.bubble-btn:hover {
  background: #ffd060;
  box-shadow: 0 0 50px rgba(240, 192, 64, 0.7), 0 8px 30px rgba(0,0,0,0.5);
  transform: translateY(-3px) scale(1.03);
  color: #000 !important;
}
@media (max-width: 767px) {
  .bubble-banner {
    border-radius: 24px;
    min-height: 160px;
  }
}
body, .main {
  overflow-x: hidden;
}