/* OceanWorld theme override: modern ocean gradient + neon cyan accents */

/* Base background and typography */
body.theme-ocean {
  color: #e6f6ff;
  background: radial-gradient(1200px 600px at 80% -100px, rgba(34,211,238,0.08), transparent 60%),
              radial-gradient(900px 500px at -200px 300px, rgba(14,165,233,0.10), transparent 60%),
              linear-gradient(180deg, #0b1020 0%, #0a2740 55%, #071726 100%);
}

/* Header: translucent with blur on scroll */
.header-section.scrolled .header-bottom,
.header-section.menu-fixed .header-bottom {
  background: rgba(4, 12, 22, 0.6) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
}

/* Header base (not scrolled) */
.header-section .header-bottom {
  background: rgba(4, 12, 22, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.header-section .header-bottom::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(34,211,238,0.85), rgba(14,165,233,0.85), rgba(34,211,238,0));
  opacity: 0.7;
  pointer-events: none;
}

.header-section .main-menu li a {
  color: #e6f6ff;
  padding: 10px 10px !important;
  margin-top: 0 !important;
  position: relative;
}

.header-section .main-menu li a:hover,
.header-section.scrolled .main-menu li a:hover {
  color: #22d3ee !important; /* neon cyan */
}

/* Animated underline for nav links */
.header-section .main-menu li a::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  height: 2px;
  background: linear-gradient(90deg, #22d3ee, #7dd3fc);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease;
}
.header-section .main-menu li a:hover::after,
.header-section .main-menu li a.active::after {
  transform: scaleX(1);
}

.header-section.scrolled .main-menu li a {
  color: #a5eaff; /* softer when scrolled */
}

/* Highlight Connect CTA */
.header-section .main-menu #connect_btn {
  background: linear-gradient(135deg, #22d3ee, #0ea5e9);
  color: #001018 !important;
  padding: 10px 16px !important;
  border-radius: 999px;
  box-shadow: 0 8px 30px rgba(34,211,238,0.25);
  border: 0 !important;
  margin-left: 8px;
}
.header-section .main-menu #connect_btn:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}
.header-section .main-menu #connect_btn::after { display: none; }

/* Better mobile menu background */
@media (max-width: 1199px) {
  .header-section .navbar-collapse {
    background: rgba(4, 12, 22, 0.9);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 8px 12px;
  }
}

/* Section backgrounds unify with theme */
.section-bg,
.statistics-section,
.price-section,
.latest-transaction-section,
.profit-calculator-section,
.commission-section {
  background: transparent !important;
}

/* Titles */
.section-title,
.hero-title,
.statistics-section .title {
  background: linear-gradient(90deg, #e0f2fe, #7dd3fc, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Cards: glassmorphism */
.price-item,
.transaction-table-area {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 10px 35px rgba(0, 229, 255, 0.10);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.price-item {
  border-radius: 14px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.price-item .package-name { color: #e6f6ff; }
.price-item .package-feature-list li { color: #cdefff; }

/* Professional price cards */
.price-section .section-header { text-align: center; }
.price-item br { display: none; }
.price-card-header { margin-bottom: 10px; }
.plan-badge { display: inline-block; font-size: 12px; letter-spacing: 0.3px; padding: 6px 10px; border-radius: 999px; background: rgba(34,211,238,0.18); color: #b9f3ff; border: 1px solid rgba(255,255,255,0.12); margin-bottom: 8px; }
.plan-badge.popular { background: linear-gradient(135deg, #22d3ee, #0ea5e9); color: #001018; box-shadow: 0 8px 22px rgba(34,211,238,0.25); border: 0; }
.price-meta { color: #a5eaff; font-size: 14px; opacity: 0.95; }
.price-item .package-name {
  margin: 4px 0;
  font-weight: 700;
}
.price-item .package-name + .package-name {
  color: #7dd3fc;
  font-weight: 800;
}
.price-item .package-feature-list { margin-top: 12px; }
.price-item .package-feature-list li { font-size: 14px; opacity: 0.95; }
.price-item .package-feature-list li::before { color: #22d3ee; }
.price-item:hover { transform: translateY(-6px); border-color: rgba(34,211,238,0.45); box-shadow: 0 18px 55px rgba(0,229,255,0.18); }
.price-item .invest_input { margin-top: 16px; height: 48px; border-radius: 10px; }
.price-item .border-btn { margin-top: 14px; min-width: 100%; border-radius: 12px; padding: 14px 18px; }
.price-item .border-btn { background: linear-gradient(135deg, #22d3ee, #0ea5e9) !important; color: #001018 !important; border: 0 !important; box-shadow: 0 8px 30px rgba(34,211,238,0.25) !important; }
.price-item .border-btn:hover { filter: brightness(1.06); transform: translateY(-1px); }
.price-item [id^="error-message"] { color: #ff7b7b !important; margin-top: 8px; font-size: 13px; }

/* Buttons */
.cmn-btn {
  background: linear-gradient(135deg, #22d3ee 0%, #0ea5e9 100%) !important;
  color: #001018 !important;
  box-shadow: 0 8px 30px rgba(34,211,238,0.25) !important;
  border: 0 !important;
}
.cmn-btn:hover { filter: brightness(1.07); transform: translateY(-1px); }

.border-btn {
  background: transparent !important;
  color: #b9f3ff !important;
  border: 1px solid #22d3ee !important;
  box-shadow: 0 0 0 rgba(0,0,0,0) !important;
}
.border-btn:hover {
  background: rgba(34,211,238,0.15) !important;
  color: #e6f6ff !important;
  border-color: #7dd3fc !important;
}

/* Inputs */
input:not([type="radio"]), textarea, select {
  border-color: rgba(255,255,255,0.18) !important;
  background-color: rgba(255,255,255,0.03) !important;
}

/* Tables */
.transaction-table thead tr { background: linear-gradient(90deg, rgba(34,211,238,0.18), rgba(14,165,233,0.18)) !important; }
.transaction-table thead tr th { color: #a5eaff !important; border-right-color: rgba(255,255,255,0.15) !important; }
.transaction-table tbody tr td { color: #d5f6ff !important; border-right-color: rgba(255,255,255,0.10) !important; }

/* Hero overlay tweak for better contrast if used */
/* .hero-section::before { background: linear-gradient(180deg, rgba(6, 16, 28, 0.7), rgba(3, 10, 18, 0.3)) !important; } */

/* Small polish */
.invest_input { background-color: rgba(255,255,255,0.04) !important; }
.navbar-toggler .menu-toggle { background-color: #22d3ee; }
/* Icon polish */
.plan-icon { color: #7dd3fc; font-size: 16px; margin-right: 8px; vertical-align: middle; }
.hero-badge-icon { margin-right: 8px; }
.statistics-section .round-icon i { display: inline-block; width: 46px; text-align: center; line-height: 46px; font-size: 20px; color: #b9f3ff; }

/* Footer finishing */
.footer-section .footer-top { padding-top: 40px; padding-bottom: 30px; }
.footer-section .footer-bottom { padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.10); }
.footer-section .footer-copy { color: #a5eaff; opacity: 0.9; font-size: 14px; }
.footer-section .footer-description { color: #d5f6ff; opacity: 0.9; line-height: 1.7; text-align: center; max-width: 980px; margin: 0 auto; }
.footer-section .social-media-links a { color: #b9f3ff; }
.footer-section .social-media-links a:hover { color: #22d3ee; }

/* Hero refinement */
.theme-ocean .hero-section { min-height: 85vh; }
.theme-ocean .hero-title { font-size: clamp(36px, 5vw, 56px); font-weight: 800; letter-spacing: -0.01em; }
.theme-ocean .hero-section br { display: none; }
.theme-ocean .hero-section .btn-area { width: 100%; margin-top: 28px !important; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10); box-shadow: 0 10px 35px rgba(0, 229, 255, 0.10); border-radius: 16px; padding: 14px 16px; display: inline-flex; flex-direction: column; gap: 10px; }
.theme-ocean .hero-section .btn-area .cmn-btn { width: 50%; background: rgba(34,211,238,0.18) !important; color: #d7f8ff !important; border: 1px solid rgba(255,255,255,0.12) !important; box-shadow: none !important; padding: 10px 14px !important; line-height: 1.1 !important; }

/* Catchier hero: dim video, add accent bar, make stat badges horizontal on desktop, add hero card */
.theme-ocean .hero-section #myVideo { 
  /* filter: brightness(0.45) saturate(1.1);  */
  z-index: -20; 
  pointer-events: none; }
.theme-ocean .hero-title { text-shadow: 0 6px 28px rgba(0, 229, 255, 0.15); }
.theme-ocean .hero-title::before {
  content: "";
  display: inline-block;
  width: 54px; height: 6px;
  margin-right: 10px; margin-bottom: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #22d3ee, #7dd3fc);
}
.theme-ocean .hero-section .col-lg-6.order-lg-2.order-1 {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 229, 255, 0.10);
  padding: 24px 22px;
}
@media (min-width: 992px) {
  .theme-ocean .hero-section .btn-area { flex-direction: row; align-items: center; gap: 16px; }
}

/* ========== User Statistics (wallets) ========== */
.theme-ocean .statistics-section .statistics-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 18px 16px;
  box-shadow: 0 10px 35px rgba(0, 229, 255, 0.10);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.theme-ocean .statistics-section .statistics-item:hover { transform: translateY(-6px); border-color: rgba(34,211,238,0.35); box-shadow: 0 18px 55px rgba(0,229,255,0.18); }
.theme-ocean .statistics-section .statistics-item .round-icon {
  width: 46px; height: 46px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(34,211,238,0.45), rgba(14,165,233,0.25));
  box-shadow: inset 0 0 0 2px rgba(34,211,238,0.35), 0 6px 18px rgba(0,229,255,0.15);
}
.theme-ocean .statistics-section .title .zoom { background: linear-gradient(90deg, #e0f2fe, #7dd3fc, #22d3ee); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.theme-ocean .statistics-thumb img { filter: drop-shadow(0 20px 60px rgba(0,229,255,0.18)); }

/* ========== KEY POINTS (profit-calculator) ========== */
.theme-ocean .profit-calculator-wrapper {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 35px rgba(0, 229, 255, 0.10);
}
.theme-ocean .profit-calculator-section label {
  display: block;
  padding: 10px 12px 10px 36px;
  margin-bottom: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  position: relative;
  color: #cfefff;
}
.theme-ocean .profit-calculator-section label::before {
  content: "\f00c";
  font-family: 'FontAwesome';
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  color: #22d3ee;
}
.theme-ocean .profit-thumb img { filter: drop-shadow(0 20px 60px rgba(0,229,255,0.18)); border-radius: 14px; }

/* ========== Referral Commission (Reffral) ========== */
.theme-ocean #Reffral .commission-content {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 10px 35px rgba(0,229,255,0.10);
}
.theme-ocean #Reffral .cmn-list li {
  position: relative; padding-left: 28px; margin-bottom: 10px; color: #d5f6ff;
}
.theme-ocean #Reffral .cmn-list li::before {
  content: "\f005"; /* star */
  font-family: 'FontAwesome';
  position: absolute; left: 0; top: 3px; color: #22d3ee;
}
.theme-ocean #Reffral #ref-link {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  color: #e6f6ff !important;
  border-radius: 12px; height: 46px;
}
.theme-ocean #Reffral .border-btn { min-width: 140px; }
