/*!****************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./styles/globals.css ***!
  \****************************************************************************************************************************************************************************************************************************************************************/
:root {
  --primary: #0046ad;
  --secondary: #e63946;
  --dark: #1a1a1a;
  --light-gray: #f0f4f8;
  --white: #ffffff;
  --premium-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), 0 5px 15px rgba(0,0,0,0.1);
  --strong-yellow: #ffcc00;
  --btn-light: #eff6ff;
  --gold: #b8860b;
  --green: #008000;
  --whatsapp: #25d366;
  --ad-gold: #ffd700;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Segoe UI', Roboto, sans-serif;
  background-color: var(--light-gray);
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  flex: 1 1;
}

a {
  text-decoration: none;
}

.smart-header { 
  background: var(--white); 
  position: -webkit-sticky; 
  position: sticky; 
  top: 0; 
  z-index: 1000; 
  box-shadow: 0 4px 12px rgba(0,0,0,0.15); 
}

.header-bottom-line { 
  height: 4px; 
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary)); 
  width: 100%; 
}

.top-bar { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  padding: 10px 15px; 
}

.logo { 
  font-size: 24px; 
  font-weight: 900; 
  color: var(--primary); 
  text-decoration: none; 
}

.logo span { 
  color: var(--secondary); 
}

.contact-link { 
  background: var(--green); 
  color: white; 
  padding: 7px 14px; 
  border-radius: 8px; 
  font-weight: 700; 
  font-size: 12px; 
  text-decoration: none; 
  box-shadow: 0 2px 5px rgba(0,128,0,0.3); 
}

.nav-menu { 
  display: flex; 
  background: var(--primary); 
  padding: 6px; 
  gap: 6px; 
  overflow-x: auto; 
  scrollbar-width: none; 
  -ms-overflow-style: none; /* IE/Edge */
}

.nav-menu::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.nav-item { 
  color: var(--white); 
  text-decoration: none; 
  font-size: 13px; 
  font-weight: 600; 
  padding: 8px 16px; 
  border-radius: 6px; 
  background: rgba(255,255,255,0.15); 
  white-space: nowrap; 
}

.nav-item.active { 
  background: var(--white); 
  color: var(--primary); 
  box-shadow: 0 2px 5px rgba(0,0,0,0.2); 
}

/* Mobile: show only 6 main nav items; desktop: show full nav */
@media (max-width: 768px) {
  .nav-item-desktop-only {
    display: none !important;
  }
}

.nav-lang-wrap {
  position: relative;
  display: inline-block;
}

.nav-lang-btn {
  border: none;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-lang-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 4px;
  min-width: 120px;
  background: var(--primary);
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  overflow: hidden;
  z-index: 1001;
}

.nav-lang-dropdown-fixed {
  position: fixed;
  margin-top: 0;
  min-width: 140px;
}

.nav-lang-option {
  display: block;
  width: 100%;
  padding: 10px 14px;
  border: none;
  background: transparent;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.nav-lang-option:hover {
  background: rgba(255,255,255,0.2);
}

/* ENGLISH + JODI dropdowns – clean card, no outer border, soft shadow */
.nav-dropdown-card {
  background: #fff !important;
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
  padding: 8px 0;
  overflow: hidden;
}

.nav-dropdown-card .nav-lang-option,
.nav-dropdown-card a.nav-lang-option {
  color: #334155;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  border: none;
  background: transparent;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-dropdown-card .nav-lang-option:hover,
.nav-dropdown-card a.nav-lang-option:hover {
  background: #f1f5f9;
  color: var(--primary);
}

/* Link ke niche light divider */
.nav-dropdown-card .nav-lang-option:not(:last-child),
.nav-dropdown-card a.nav-lang-option:not(:last-child) {
  border-bottom: 1px solid #e2e8f0;
}

/* Jodi dropdown – width */
.nav-jodi-dropdown {
  min-width: 180px;
  max-width: 220px;
}

.nav-jodi-dropdown a.nav-jodi-option-active {
  background: #eff6ff;
  color: var(--primary);
  font-weight: 700;
}

/* Jodi chart dropdown: links styled like language options */
a.nav-lang-option,
.nav-lang-option-link {
  text-decoration: none;
  box-sizing: border-box;
}

@keyframes blink-red {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.live-dot-blink {
  animation: blink-red 1s infinite;
}

@keyframes blink-live {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.blink-active {
  animation: blink-live 1.5s infinite;
}

.market-card-live {
  background: #fff9e1 !important;
  border: 1px solid #ffcc00 !important;
  animation: blink-live 2s infinite;
}

.market-card-live .market-name {
  color: #d32f2f !important;
}

/* FOOTER */
.royal-footer {
  background: #080808;
  color: #fff;
  padding: 40px 10px 60px 10px;
  margin-top: 0;
  text-align: center;
  border-top: 4px solid var(--secondary);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 0 10px;
  margin-bottom: 20px;
}

.footer-nav a {
  text-decoration: none;
  color: #bbb;
  font-size: 12px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 14px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.3s;
}

.footer-nav a:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
}

.nav-separator {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  width: 90%;
  margin: 0 auto 30px auto;
}

.brand-title {
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px;
  background: linear-gradient(to bottom, #fff, #aaa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
}

.vip-owner-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(184, 134, 11, 0.4);
  border-radius: 12px;
  padding: 15px 20px;
  display: inline-block;
  max-width: 90%;
  width: 300px;
  position: relative;
}

.crown-icon {
  font-size: 20px;
  margin-bottom: 5px;
  opacity: 0.8;
}

.owner-label {
  font-size: 10px;
  color: #666;
  letter-spacing: 2px;
  margin-bottom: 5px;
  font-weight: 700;
}

.owner-name {
  font-size: 18px;
  font-weight: 900;
  color: #deb887;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.royal-call-btn {
  display: block;
  background: linear-gradient(135deg, #b8860b, #daa520);
  color: #fff;
  text-decoration: none;
  padding: 10px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 800;
  border: 1px solid #b8860b;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
  transition: 0.3s;
  animation: pulse-gold 2s infinite;
}

.footer-copyright {
  margin-top: 30px;
  font-size: 12px;
  color: #888;
  line-height: 1.6;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 15px;
}

@keyframes pulse-gold {
  0% { box-shadow: 0 0 0 0 rgba(184, 134, 11, 0.4); }
  70% { box-shadow: 0 0 0 8px rgba(184, 134, 11, 0); }
  100% { box-shadow: 0 0 0 0 rgba(184, 134, 11, 0); }
}

/* ========================================= */
/* CONTACT US PAGE STYLES                    */
/* ========================================= */
/* Contact Us page styles moved to app/contact-us/page.module.css */

/* Form styles moved to respective page modules */

/* VIP Terminal Global Classes for dangerouslySetInnerHTML */
.chat-line {
  color: #ffd700;
  border-left-color: #ffd700;
  font-style: italic;
}

.tech-line {
  color: #00f3ff;
}

.error-line {
  color: #ff3333;
  border-left-color: #ff3333;
}

.feed-line {
  font-size: 11px;
  margin-bottom: 6px;
  color: #39ff14;
  border-left: 3px solid transparent;
  padding-left: 8px;
  line-height: 1.4;
  text-align: left;
}

/* Guessing Forum page styles moved to app/guessing-forum/page.module.css */

/* Open-Close page styles moved to app/open-close/page.module.css */

/* Weekly Jodi Panna page styles moved to app/weekly-jodi-panna/page.module.css */

/* Blog page styles moved to app/blog/page.module.css */

/* Magic Calculator page styles moved to app/magic-calculator/page.module.css */

/* Dream Number page styles moved to app/dream-number/page.module.css */

/* Matka Astrology page styles moved to app/matka-astrology/page.module.css */

/* ========================================= */
/* KALYAN JODI CHART PAGE STYLES - 1:1 MATCH */
/* ========================================= */

/* COMPACT LIVE RESULT (SMALL FONTS) */

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-badge {
  background: rgba(255,255,255,0.1);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  color: #0ea5e9;
  border: 1px solid rgba(255,255,255,0.2);
}

/* Matka Astrology page styles moved to app/matka-astrology/page.module.css */

/* CALCULATOR BOX */
.calc-box {
  background: #fff;
  margin: 20px 15px;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.15);
  border-top: 5px solid #0046ad;
  text-align: center;
}

.calc-title {
  font-size: 18px;
  font-weight: 900;
  color: #0046ad;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.name-input {
  width: 100%;
  padding: 15px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 16px;
  text-align: center;
  margin-bottom: 15px;
  outline: none;
  background: #f8fafc;
}

.name-input:focus {
  border-color: #0046ad;
  box-shadow: 0 0 0 3px rgba(0, 70, 173, 0.1);
  background: #fff;
}

.calc-btn {
  background: #0046ad;
  color: white;
  border: none;
  padding: 12px 30px;
  width: 100%;
  border-radius: 50px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 70, 173, 0.3);
  text-transform: uppercase;
  font-size: 13px;
}

.calc-btn:hover {
  background: #003685;
}

.name-result {
  margin-top: 20px;
  animation: popIn 0.4s;
}

.lucky-circle {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  margin: 10px auto;
  box-shadow: 0 5px 15px rgba(251, 191, 36, 0.4);
  text-shadow: 0 2px 2px rgba(0,0,0,0.1);
}

.content-box {
  background: #fff;
  margin: 30px 15px;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.15);
  border-left: 4px solid #e63946;
}

.content-h2 {
  font-size: 18px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 10px;
}

.content-p {
  font-size: 13px;
  line-height: 1.7;
  color: #475569;
  text-align: justify;
}

.content-p p {
  margin-bottom: 15px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes popIn {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* ========================================= */
/* GLOBAL FIXED BUTTONS (Matka Play / Refresh) */
/* ========================================= */
.play-fixed-btn {
  position: fixed;
  bottom: 20px;
  left: 15px;
  background: linear-gradient(135deg, #ffd700, #ffaa00);
  color: #000;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 900;
  font-size: 12px;
  z-index: 2000;
  box-shadow: 0 8px 20px rgba(255, 170, 0, 0.4);
  border: 2px solid rgba(255,255,255,0.2);
  text-decoration: none;
  animation: pulse-gold-btn 2s infinite;
  cursor: pointer;
}

.play-fixed-btn:hover {
  color: #000;
  opacity: 0.95;
}

.refresh-btn {
  position: fixed;
  bottom: 20px;
  right: 15px;
  background: linear-gradient(135deg, var(--primary), #006aff);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 900;
  font-size: 12px;
  z-index: 2000;
  box-shadow: 0 8px 20px rgba(0, 70, 173, 0.4);
  border: 2px solid rgba(255,255,255,0.2);
  text-decoration: none;
  animation: pulse-blue-btn 2s infinite;
}

.refresh-btn:hover {
  color: white;
  opacity: 0.95;
}

@keyframes pulse-gold-btn {
  0% { box-shadow: 0 0 0 0 rgba(184, 134, 11, 0.4); }
  70% { box-shadow: 0 0 0 8px rgba(184, 134, 11, 0); }
  100% { box-shadow: 0 0 0 0 rgba(184, 134, 11, 0); }
}

@keyframes pulse-blue-btn {
  0% { box-shadow: 0 0 0 0 rgba(0, 70, 173, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(0, 70, 173, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 70, 173, 0); }
}

/* ========================================= */
/* GLOBAL BACK / HOME BUTTONS                */
/* ========================================= */
.royal-home-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), #daa520);
  color: #000;
  text-align: center;
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 14px;
  margin-top: 20px;
  transition: 0.3s;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.2);
  box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

.royal-home-btn:hover {
  color: #000;
  opacity: 0.95;
  transform: translateY(-2px);
}

/* Bottom nav: BACK + HOME (used on open-close, weekly-jodi-panna, guessing-forum, ratan-khatri, etc.) */
.big-nav-btn {
  flex: 1 1;
  padding: 10px 16px;
  text-align: center;
  font-weight: 800;
  color: white;
  border-radius: 50px;
  font-size: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-decoration: none;
  transition: 0.3s;
}

.big-nav-btn:hover {
  color: white;
  opacity: 0.95;
  transform: translateY(-2px);
}

.btn-back {
  background: var(--dark);
}

.btn-home {
  background: var(--secondary);
}

.bottom-nav-container {
  display: flex;
  gap: 10px;
  padding: 0 15px;
  margin-bottom: 20px;
}

/* ========================================= */
/* 404 NOT FOUND PAGE                        */
/* ========================================= */
.error-container {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px 80px;
  text-align: center;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
}

.error-icon-float {
  font-size: 48px;
  margin-bottom: 10px;
  animation: float-icon 3s ease-in-out infinite;
}

@keyframes float-icon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.error-code-royal {
  font-size: 72px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 15px;
}

.error-heading {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin: 0 0 15px 0;
  max-width: 400px;
}

.error-subtext {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  margin: 0 0 25px 0;
  max-width: 420px;
}

.qa-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 12px;
  gap: 12px;
  width: 100%;
  max-width: 600px;
  margin-bottom: 25px;
}

.qa-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 16px;
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  text-decoration: none;
  color: var(--dark);
  font-size: 13px;
  transition: 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.qa-btn:hover {
  border-color: var(--primary);
  background: #f0f9ff;
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,70,173,0.15);
}

.qa-btn b {
  font-size: 14px;
  margin-bottom: 4px;
}

.qa-btn span {
  font-size: 11px;
  color: #64748b;
}

/* Matka Tricks page styles moved to app/matka-tricks/page.module.css */

