/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  background: linear-gradient(135deg, #001122 0%, #002b5c 50%, #001122 100%);
  color: #ffffff;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Background Animation */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(255, 215, 0, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(0, 150, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(255, 215, 0, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: -1;
}

/* Market Data Bar */
.market-data-bar {
  background: #001122;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #004080;
  font-size: 12px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.market-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.percentage.negative {
  color: #ff4444;
  font-weight: bold;
}

.market-icon {
  width: 20px;
  height: 20px;
  background: #0066cc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: bold;
  color: white;
}

.market-name {
  font-weight: bold;
  color: #ffffff;
}

.market-value {
  font-weight: bold;
  color: #ffffff;
}

.market-change.negative {
  color: #ff4444;
  font-weight: bold;
}

.market-change-pct {
  color: #cccccc;
}

.tracking-text {
  color: #cccccc;
  font-size: 11px;
  text-align: right;
}

/* Translation Widget */
.translation-widget {
  position: fixed;
  top: 60px;
  right: 20px;
  z-index: 999;
  background: #333;
  border-radius: 5px;
  padding: 10px;
  font-size: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.translate-box {
  display: flex;
  gap: 10px;
  margin-bottom: 5px;
}

.translate-btn {
  background: #555;
  border: none;
  color: white;
  padding: 5px 10px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 11px;
  white-space: nowrap;
}

.language-select {
  background: #555;
  border: none;
  color: white;
  padding: 5px;
  border-radius: 3px;
  font-size: 11px;
}

.translate-provider {
  color: #999;
  font-size: 10px;
  text-align: center;
}

/* TradingView Widget Container */
.tradingview-widget-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #1e222d;
  /*border-bottom: 1px solid #2a2e39;*/
  /*height: 40px;*/
  overflow: hidden;
}

/*.tradingview-widget-container__widget {*/
/*  height: 100%;*/
/*}*/

.crypto-wallet-section {
  text-align: center;
}

.crypto-wallet-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #ffffff;
}

.crypto-wallet-section .highlight {
  color: #ffd700;
}

.crypto-wallet-section p {
  font-size: 16px;
  line-height: 1.6;
  color: #cccccc;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #002b5c 0%, #001122 100%);
  padding: 40px 20px 20px;
  border-top: 2px solid #004080;
}

.payment-methods {
  text-align: center;
  margin-bottom: 40px;
}

.payment-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 10px;
}

.payment-row span {
  font-size: 14px;
  color: #cccccc;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-logo {
  text-align: center;
}

.footer-contact {
  text-align: center;
}

.footer-contact p {
  font-size: 16px;
  color: #cccccc;
  margin-bottom: 20px;
  line-height: 1.6;
}

.btn-feedback {
  background: linear-gradient(45deg, #ffd700, #ffa500);
  border: none;
  color: #001122;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-feedback:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

.footer-links {
  display: flex;
  gap: 40px;
}

.link-column {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.link-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  transition: all 0.3s;
}

.link-item:hover {
  color: #ffd700;
}

.link-dot {
  width: 6px;
  height: 6px;
  background: #ffd700;
  border-radius: 50%;
  margin-bottom: 5px;
}

.link-item span {
  font-size: 14px;
  color: #ffffff;
  font-weight: bold;
}

.link-sub {
  font-size: 12px;
  color: #cccccc;
}

.footer-copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #004080;
}

.footer-copyright p {
  font-size: 12px;
  color: #999;
}

/* Floating Elements */
.floating-elements {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.follow-us {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: #cccccc;
  font-size: 14px;
  text-align: center;
  letter-spacing: 1px;
}

.chat-button {
  position: relative;
  width: 60px;
  height: 60px;
  background: #0066cc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.chat-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

.chat-button i {
  font-size: 24px;
  color: white;
}

.notification-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 20px;
  height: 20px;
  background: #ff4444;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: white;
  font-weight: bold;
  border: 2px solid #001122;
}

/* Live Notifications */
.live-notifications {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
  max-width: 300px;
}

.notification-popup {
  background: white;
  color: #001122;
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  animation: slideInUp 0.5s ease-out;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Deposit notification styling */
.notification-popup.deposit-notification {
  border-left: 4px solid #28a745;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(40, 167, 69, 0.1) 100%
  );
}

.notification-popup.deposit-notification::before {
  content: "💰";
  margin-right: 8px;
  font-size: 16px;
}

/* Withdrawal notification styling */
.notification-popup.withdrawal-notification {
  border-left: 4px solid #dc3545;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(220, 53, 69, 0.1) 100%
  );
}

.notification-popup.withdrawal-notification::before {
  content: "💸";
  margin-right: 8px;
  font-size: 16px;
}

.notification-popup span {
  font-size: 14px;
  font-weight: bold;
}

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

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #001122;
}

::-webkit-scrollbar-thumb {
  background: #ffd700;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #ffa500;
}

/* Investment Plan Section */
.investment-plan-section {
  background: #002b5c;
  padding: 60px 0;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Benefits Button */
.benefits-button-container {
  text-align: center;
  margin-bottom: 50px;
}

.btn-benefits {
  background: #ffd700;
  color: #002b5c;
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-benefits:hover {
  background: #ffc107;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Investment Content */
.investment-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.investment-title {
  font-size: 42px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.investment-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
  gap: 15px;
}

.yellow-line {
  width: 40px;
  height: 3px;
  background: #ffd700;
  border-radius: 2px;
}

.subtitle-text {
  font-size: 18px;
  color: #ffffff;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* About Plans */
.about-plans {
  text-align: left;
}

.about-plans-title {
  font-size: 28px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 30px;
  text-align: center;
  text-transform: capitalize;
}

.plans-description {
  line-height: 1.8;
}

.plans-description p {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 20px;
  text-align: justify;
  opacity: 0.95;
}

.plans-description p:last-child {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .investment-plan-section {
    padding: 40px 0;
  }

  .investment-title {
    font-size: 32px;
    letter-spacing: 1px;
  }

  .subtitle-text {
    font-size: 16px;
  }

  .about-plans-title {
    font-size: 24px;
  }

  .plans-description p {
    font-size: 15px;
  }

  .btn-benefits {
    padding: 12px 25px;
    font-size: 14px;
  }
}

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

  .investment-title {
    font-size: 28px;
  }

  .subtitle-text {
    font-size: 14px;
  }

  .about-plans-title {
    font-size: 20px;
  }

  .plans-description p {
    font-size: 14px;
  }

  .btn-benefits {
    padding: 10px 20px;
    font-size: 13px;
  }

  .yellow-line {
    width: 30px;
    height: 2px;
  }
}

/* Investment Plans Flip Cards Section */
.investment-plans-section {
  background: #002b5c;
  padding: 60px 0;
  position: relative;
}

/* Introductory Text */
.intro-text {
  text-align: center;
  margin-bottom: 30px;
}

.intro-text p {
  color: #cccccc;
  font-size: 14px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.8;
}

/* Main Title */
.plans-main-title {
  font-size: 36px;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
  text-transform: capitalize;
  letter-spacing: 1px;
}

/* Plans Container */

/* Plans Container */
.plans-container {
  max-width: 1200px;
  margin: 0 auto;
  perspective: 1000px;
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Plan Card */
.plan-card {
  display: block;
  width: 350px;
  height: 600px;
  margin: 0;
  flex: 1;
  min-width: 300px;
  max-width: 380px;
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(0, 43, 92, 0.9) 0%,
    rgba(0, 43, 92, 0.8) 100%
  );
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  cursor: default;
}

/* Mobile: Show all cards in column, no flipping */
@media (max-width: 768px) {
  .plans-container {
    max-width: 400px;
    flex-direction: column;
    gap: 20px;
  }

  .plan-card {
    width: 100%;
    height: auto;
    min-height: 500px;
    display: block;
  }
}

/* Desktop: Show all cards in row */
@media (min-width: 769px) {
  .card-inner {
    cursor: default;
  }
}

/* Card Front */
.card-front {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: transparent;
}

/* Plan Header */
.plan-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.plan-name {
  font-size: 14px;
  font-weight: bold;
  color: #ffd700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

.plan-dot {
  width: 8px;
  height: 8px;
  background: #ffd700;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(255, 215, 0, 0.6);
}

/* Plan Percentage Section */
.plan-percentage-section {
  text-align: center;
  margin-bottom: 20px;
  padding: 12px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.percentage-main {
  font-size: 28px;
  font-weight: bold;
  color: #ffd700;
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.4);
  line-height: 1;
  margin-bottom: 3px;
}

.percentage-label {
  font-size: 10px;
  color: #cccccc;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Plan Duration */
.plan-duration {
  text-align: center;
  margin-bottom: 20px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.duration-number {
  font-size: 32px;
  font-weight: bold;
  color: #ffffff;
  line-height: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.duration-text {
  font-size: 11px;
  color: #cccccc;
  line-height: 1.2;
  margin-top: 3px;
  font-weight: 500;
}

/* Plan Range */
.plan-range {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
}

.min-investment,
.max-investment {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.amount {
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 3px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.label {
  font-size: 9px;
  color: #cccccc;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* Plan Details Summary */
.plan-details-summary {
  margin-bottom: 15px;
  padding: 12px;
  background: rgba(255, 215, 0, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  padding: 3px 0;
}

.detail-row:last-child {
  margin-bottom: 0;
}

.detail-row .detail-label {
  font-size: 10px;
  color: #cccccc;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.detail-row .detail-value {
  font-size: 12px;
  color: #ffd700;
  font-weight: bold;
  text-shadow: 0 0 4px rgba(255, 215, 0, 0.3);
}

/* Invest Button */
.invest-btn1 {
  background: linear-gradient(135deg, #ffd700 0%, #ffc107 100%);
  color: #002b5c;
  border: none;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  width: 100%;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.invest-btn1:hover {
  background: linear-gradient(135deg, #ffc107 0%, #ffd700 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.invest-btn1:active {
  transform: translateY(-1px);
}

/* Mobile Enhancements */
@media (max-width: 768px) {
  .card-front {
    padding: 20px 15px;
  }

  .plan-card {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .plan-name {
    font-size: 13px;
    text-shadow: none;
  }

  .percentage-main {
    font-size: 24px;
    text-shadow: none;
  }

  .duration-number {
    font-size: 28px;
    text-shadow: none;
  }

  .amount {
    font-size: 16px;
    text-shadow: none;
  }

  .detail-row .detail-label {
    font-size: 9px;
  }

  .detail-row .detail-value {
    font-size: 11px;
    text-shadow: none;
  }

  .invest-btn1 {
    padding: 10px 16px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .card-front {
    padding: 18px 12px;
  }

  .plan-card {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .plan-name {
    font-size: 12px;
    text-shadow: none;
  }

  .percentage-main {
    font-size: 22px;
    text-shadow: none;
  }

  .duration-number {
    font-size: 26px;
    text-shadow: none;
  }

  .amount {
    font-size: 15px;
    text-shadow: none;
  }

  .detail-row .detail-value {
    text-shadow: none;
  }

  .invest-btn1 {
    padding: 9px 14px;
    font-size: 11px;
  }
}

/* About Us Section Styles */
.about-us-main-section {
  background: linear-gradient(135deg, #002b5c 0%, #004080 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.about-us-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.about-us-header {
  text-align: center;
  margin-bottom: 60px;
}

.about-us-title {
  font-size: 48px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-us-highlight {
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.about-us-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.about-us-line {
  width: 60px;
  height: 3px;
  background: #ffd700;
  border-radius: 2px;
}

.about-us-dot {
  width: 8px;
  height: 8px;
  background: #ffd700;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

.about-us-label {
  font-size: 14px;
  color: #cccccc;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.about-us-content {
  display: grid;
  gap: 40px;
}

.about-us-main-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about-us-main-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #ffffff;
  font-weight: 500;
}

.about-us-details {
  display: grid;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.about-us-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.1);
  transition: all 0.3s ease;
}

.about-us-detail-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 215, 0, 0.2);
  transform: translateY(-2px);
}

.about-us-detail-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ffd700 0%, #ffc107 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.about-us-detail-icon i {
  font-size: 20px;
  color: #002b5c;
}

.about-us-detail-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #cccccc;
  margin: 0;
}

/* Mobile Responsive for About Us */
@media (max-width: 768px) {
  .about-us-main-section {
    padding: 60px 0;
  }

  .about-us-title {
    font-size: 36px;
  }

  .about-us-main-text p {
    font-size: 16px;
  }

  .about-us-detail-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .about-us-detail-icon {
    align-self: center;
  }

  .about-us-detail-content p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .about-us-main-section {
    padding: 40px 0;
  }

  .about-us-title {
    font-size: 28px;
  }

  .about-us-main-text p {
    font-size: 15px;
  }

  .about-us-detail-content p {
    font-size: 13px;
  }
}

/* Affiliate Program Section Styles */
.affiliate-program-main-section {
  background: linear-gradient(135deg, #001122 0%, #002b5c 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.affiliate-program-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.affiliate-program-header {
  text-align: center;
  margin-bottom: 60px;
}

.affiliate-program-title {
  font-size: 48px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.affiliate-program-content {
  display: grid;
  gap: 60px;
}

/* Representatives Section */
.affiliate-representatives-section {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.affiliate-section-title {
  font-size: 32px;
  font-weight: bold;
  color: #ffd700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.affiliate-section-description {
  margin-bottom: 30px;
}

.affiliate-section-description p {
  font-size: 16px;
  line-height: 1.6;
  color: #cccccc;
  margin: 0;
}

.affiliate-action-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.affiliate-btn-deposit-video,
.affiliate-btn-company-pdf {
  background: linear-gradient(135deg, #ffd700 0%, #ffc107 100%);
  color: #002b5c;
  border: none;
  padding: 15px 25px;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.affiliate-btn-deposit-video:hover,
.affiliate-btn-company-pdf:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

/* Partners Section */
.affiliate-partners-section {
  text-align: center;
}

/* Commission Levels */
.affiliate-commission-levels {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.affiliate-level-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.1);
  min-width: 120px;
  transition: all 0.3s ease;
}

.affiliate-level-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 215, 0, 0.2);
  transform: translateY(-3px);
}

.affiliate-level-percentage {
  font-size: 36px;
  font-weight: bold;
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.affiliate-level-label {
  font-size: 14px;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.affiliate-level-sub {
  font-size: 18px;
  color: #87ceeb;
  font-weight: bold;
}

/* Cryptocurrencies Section */
.affiliate-crypto-accepted {
  margin-top: 50px;
}

.affiliate-crypto-title {
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.affiliate-crypto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.affiliate-crypto-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.1);
  transition: all 0.3s ease;
}

.affiliate-crypto-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 215, 0, 0.2);
  transform: translateY(-2px);
}

.affiliate-crypto-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  background: linear-gradient(135deg, #ffd700 0%, #ffc107 100%);
}

.affiliate-crypto-icon.bitcoin {
  background: linear-gradient(135deg, #f7931a 0%, #ff9500 100%);
}

.affiliate-crypto-icon.dogecoin {
  background: linear-gradient(135deg, #c2a633 0%, #d4af37 100%);
}

.affiliate-crypto-icon.dash {
  background: linear-gradient(135deg, #008ce7 0%, #00a3ff 100%);
}

.affiliate-crypto-icon.ethereum {
  background: linear-gradient(135deg, #627eea 0%, #7b8aff 100%);
}

.affiliate-crypto-icon.tether {
  background: linear-gradient(135deg, #26a17b 0%, #2ecc71 100%);
}

.affiliate-crypto-icon.binance {
  background: linear-gradient(135deg, #f3ba2f 0%, #ffd700 100%);
}

.affiliate-crypto-item span {
  font-size: 12px;
  color: #cccccc;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* Mobile Responsive for Affiliate Program */
@media (max-width: 768px) {
  .affiliate-program-main-section {
    padding: 60px 0;
  }

  .affiliate-program-title {
    font-size: 36px;
  }

  .affiliate-section-title {
    font-size: 28px;
  }

  .affiliate-commission-levels {
    gap: 20px;
  }

  .affiliate-level-item {
    min-width: 100px;
    padding: 15px;
  }

  .affiliate-level-percentage {
    font-size: 28px;
  }

  .affiliate-crypto-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
  }

  .affiliate-action-buttons {
    flex-direction: column;
    align-items: center;
  }

  .affiliate-btn-deposit-video,
  .affiliate-btn-company-pdf {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .affiliate-program-main-section {
    padding: 40px 0;
  }

  .affiliate-program-title {
    font-size: 28px;
  }

  .affiliate-section-title {
    font-size: 24px;
  }

  .affiliate-commission-levels {
    flex-direction: column;
    align-items: center;
  }

  .affiliate-level-item {
    width: 100%;
    max-width: 200px;
  }

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

/* Statistics and Crypto Wallet Section Styles */
.statistics-crypto-main-section {
  background: linear-gradient(135deg, #001122 0%, #002b5c 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.statistics-crypto-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  display: grid;
  gap: 80px;
}

/* Statistics Section */
.statistics-section {
  text-align: center;
}

.statistics-header {
  margin-bottom: 50px;
}

.statistics-title {
  font-size: 48px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.statistics-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.statistics-line {
  width: 60px;
  height: 3px;
  background: #ffd700;
  border-radius: 2px;
}

.statistics-dot {
  width: 8px;
  height: 8px;
  background: #ffd700;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

.statistics-content {
  display: grid;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.statistics-text {
  text-align: left;
}

.statistics-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 20px;
}

.statistics-text p:last-child {
  margin-bottom: 0;
}

.statistics-numbers {
  text-align: center;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.statistics-number-display {
  font-size: 48px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 10px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.statistics-number-label {
  font-size: 18px;
  color: #ffd700;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Crypto Wallet Section */
.crypto-wallet-section {
  text-align: center;
}

.crypto-wallet-header {
  margin-bottom: 50px;
}

.crypto-wallet-title {
  font-size: 48px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.crypto-wallet-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.crypto-wallet-line {
  width: 60px;
  height: 3px;
  background: #ffd700;
  border-radius: 2px;
}

.crypto-wallet-dot {
  width: 8px;
  height: 8px;
  background: #ffd700;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

.crypto-wallet-content {
  display: grid;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.crypto-wallet-text {
  text-align: left;
}

.crypto-wallet-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #cccccc;
  margin: 0;
}

/* Security Features Grid */
.security-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.security-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.1);
  transition: all 0.3s ease;
  text-align: left;
}

.security-feature-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 215, 0, 0.2);
  transform: translateY(-3px);
}

.security-feature-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ffd700 0%, #ffc107 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.security-feature-icon i {
  font-size: 20px;
  color: #002b5c;
}

.security-feature-content {
  flex: 1;
}

.security-feature-title {
  font-size: 18px;
  font-weight: bold;
  color: #ffd700;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.security-feature-subtitle {
  font-size: 14px;
  color: #cccccc;
  margin-bottom: 10px;
  font-weight: 500;
}

.security-feature-highlight {
  font-size: 16px;
  color: #ff6b6b;
  font-weight: bold;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.security-feature-description {
  font-size: 14px;
  color: #cccccc;
  line-height: 1.5;
  margin: 0;
}

/* Mobile Responsive for Statistics and Crypto Wallet */
@media (max-width: 768px) {
  .statistics-crypto-main-section {
    padding: 60px 0;
  }

  .statistics-crypto-container {
    gap: 60px;
  }

  .statistics-title,
  .crypto-wallet-title {
    font-size: 36px;
  }

  .statistics-number-display {
    font-size: 36px;
  }

  .security-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .security-feature-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .security-feature-icon {
    align-self: center;
  }
}

@media (max-width: 480px) {
  .statistics-crypto-main-section {
    padding: 40px 0;
  }

  .statistics-crypto-container {
    gap: 40px;
  }

  .statistics-title,
  .crypto-wallet-title {
    font-size: 28px;
  }

  .statistics-number-display {
    font-size: 28px;
  }

  .statistics-text p,
  .crypto-wallet-text p {
    font-size: 14px;
  }

  .security-features-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .security-feature-description {
    font-size: 13px;
  }
}

/* Market Chart and Open Deposit Section Styles */
.market-deposit-main-section {
  background: linear-gradient(135deg, #001122 0%, #002b5c 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.market-deposit-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Market Chart Section */
.market-chart-section {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.market-chart-header {
  text-align: center;
  margin-bottom: 30px;
}

.market-chart-label {
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.market-chart-title {
  font-size: 32px;
  font-weight: bold;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.market-chart-desc {
  font-size: 14px;
  color: #cccccc;
  line-height: 1.5;
  margin: 0;
}

.market-chart-table-wrapper {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  padding: 20px;
  overflow-x: auto;
}

.market-chart-table {
  width: 100%;
  border-collapse: collapse;
  color: #ffffff;
}

.market-chart-table th {
  text-align: left;
  padding: 12px 8px;
  font-size: 14px;
  font-weight: bold;
  color: #ffd700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.market-chart-table td {
  padding: 12px 8px;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.market-chart-table tr:hover {
  background: rgba(255, 215, 0, 0.05);
}

.market-chart-matches {
  font-size: 12px;
  color: #cccccc;
  font-weight: normal;
  display: block;
  margin-top: 5px;
}

/* Coin Icons */
.coin {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
}

.coin.bitcoin {
  background: #f7931a;
}

.coin.ethereum {
  background: #627eea;
}

.coin.tether {
  background: #26a17b;
}

.coin.binance {
  background: #f3ba2f;
}

.coin.solana {
  background: #14f195;
}

.coin.xrp {
  background: #23292f;
}

.coin.cardano {
  background: #0033ad;
}

.coin-name {
  font-weight: 500;
  color: #ffffff;
}

/* Open Deposit Section */
.open-deposit-section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.open-deposit-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  text-align: center;
  max-width: 400px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.open-deposit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(255, 215, 0, 0.05),
    rgba(255, 193, 7, 0.03)
  );
  border-radius: 20px;
  z-index: -1;
}

.open-deposit-content {
  position: relative;
  z-index: 2;
}

.open-deposit-label {
  font-size: 18px;
  font-weight: bold;
  color: #ffd700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.open-deposit-title {
  font-size: 32px;
  font-weight: bold;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.open-deposit-desc {
  font-size: 16px;
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 30px;
}

.open-deposit-btn {
  background: linear-gradient(135deg, #ffd700 0%, #ffc107 100%);
  color: #002b5c;
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.open-deposit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.open-deposit-btn:active {
  transform: translateY(0);
}

/* Mobile Responsive for Market Chart and Open Deposit */
@media (max-width: 768px) {
  .market-deposit-main-section {
    padding: 60px 0;
  }

  .market-deposit-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .market-chart-title {
    font-size: 28px;
  }

  .market-chart-label {
    font-size: 20px;
  }

  .open-deposit-title {
    font-size: 28px;
  }

  .open-deposit-card {
    padding: 30px 20px;
  }

  .market-chart-table-wrapper {
    padding: 15px;
  }

  .market-chart-table th,
  .market-chart-table td {
    padding: 10px 6px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .market-deposit-main-section {
    padding: 40px 0;
  }

  .market-deposit-container {
    gap: 30px;
  }

  .market-chart-section {
    padding: 20px;
  }

  .market-chart-title {
    font-size: 24px;
  }

  .market-chart-label {
    font-size: 18px;
  }

  .open-deposit-title {
    font-size: 24px;
  }

  .open-deposit-desc {
    font-size: 14px;
  }

  .open-deposit-btn {
    padding: 12px 25px;
    font-size: 14px;
  }

  .market-chart-table th,
  .market-chart-table td {
    padding: 8px 4px;
    font-size: 12px;
  }

  .coin {
    width: 16px;
    height: 16px;
    margin-right: 8px;
  }
}

/* Main Tasks and Milestones Section Styles */
.tasks-milestones-main-section {
  background: linear-gradient(135deg, #001122 0%, #002b5c 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.tasks-milestones-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Tokenization Introduction */
.tokenization-intro {
  text-align: center;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.tokenization-intro p {
  font-size: 16px;
  line-height: 1.6;
  color: #cccccc;
  margin: 0;
}

/* Progress Tabs */
.progress-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.progress-tab {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #002b5c;
  color: #002b5c;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 60px;
  text-align: center;
}

.progress-tab:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: #ffd700;
  color: #ffd700;
}

.progress-tab.active {
  background: #ffd700;
  border-color: #ffd700;
  color: #002b5c;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* Tasks Content */
.tasks-content {
  position: relative;
}

.task-tab-content {
  display: none;
  animation: fadeInUp 0.5s ease-out;
}

.task-tab-content.active {
  display: block;
}

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

.task-section-title {
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 30px;
  text-align: center;
}

.task-number {
  font-size: 120px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.1);
  text-align: center;
  margin-bottom: 20px;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.task-phase-title {
  font-size: 28px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.task-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  position: relative;
  z-index: 2;
}

.task-list li {
  font-size: 16px;
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
}

.task-list li::before {
  content: "•";
  color: #ffd700;
  font-size: 20px;
  position: absolute;
  left: 0;
  top: -2px;
}

.milestone-indicator {
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 10px;
  padding: 20px;
  margin-top: 30px;
  position: relative;
  z-index: 2;
}

.milestone-indicator strong {
  color: #ffd700;
  font-weight: bold;
}

.milestone-indicator {
  font-size: 16px;
  color: #cccccc;
  line-height: 1.5;
}

/* Mobile Responsive for Tasks and Milestones */
@media (max-width: 768px) {
  .tasks-milestones-main-section {
    padding: 60px 0;
  }

  .progress-tabs {
    gap: 10px;
    margin-bottom: 40px;
  }

  .progress-tab {
    padding: 10px 15px;
    font-size: 14px;
    min-width: 50px;
  }

  .task-section-title {
    font-size: 20px;
  }

  .task-number {
    font-size: 80px;
  }

  .task-phase-title {
    font-size: 24px;
  }

  .task-list li {
    font-size: 14px;
    padding-left: 20px;
  }

  .milestone-indicator {
    padding: 15px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .tasks-milestones-main-section {
    padding: 40px 0;
  }

  .progress-tabs {
    gap: 8px;
    margin-bottom: 30px;
  }

  .progress-tab {
    padding: 8px 12px;
    font-size: 12px;
    min-width: 40px;
  }

  .tokenization-intro p {
    font-size: 14px;
  }

  .task-section-title {
    font-size: 18px;
  }

  .task-number {
    font-size: 60px;
  }

  .task-phase-title {
    font-size: 20px;
  }

  .task-list li {
    font-size: 13px;
    padding-left: 18px;
  }

  .milestone-indicator {
    padding: 12px;
    font-size: 13px;
  }
}

/* Key Financial Metrics Section Styles */
.financial-metrics-main-section {
  background: linear-gradient(135deg, #001122 0%, #002b5c 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.financial-metrics-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Metrics Header */
.metrics-header {
  text-align: center;
  margin-bottom: 60px;
}

.metrics-title {
  font-size: 48px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.metrics-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.metrics-line {
  width: 60px;
  height: 3px;
  background: #ffd700;
  border-radius: 2px;
}

.metrics-dot {
  width: 8px;
  height: 8px;
  background: #ffd700;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

/* Metrics Grid */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.metric-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(255, 215, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.metric-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(255, 215, 0, 0.05),
    rgba(255, 193, 7, 0.03)
  );
  border-radius: 15px;
  z-index: -1;
}

.metric-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 215, 0, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.1);
}

.metric-header {
  margin-bottom: 20px;
}

.metric-title {
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.metric-subtitle {
  font-size: 14px;
  color: #cccccc;
  margin: 0;
  font-weight: 500;
}

.metric-value {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.2;
}

.company-value {
  color: #ffd700;
}

.invested-value {
  color: #ffd700;
}

.paidout-value {
  color: #ffd700;
}

.investor-value {
  color: #ffffff;
}

.metric-line {
  width: 40px;
  height: 2px;
  margin: 0 auto;
  border-radius: 1px;
}

.gold-line {
  background: #ffd700;
}

.blue-line {
  background: #4a90e2;
}

/* Metrics Info */
.metrics-info {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.info-text {
  font-size: 16px;
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 15px;
}

.milestone-text {
  font-size: 16px;
  color: #ffd700;
  font-weight: 600;
  margin: 0;
}

/* Mobile Responsive for Financial Metrics */
@media (max-width: 768px) {
  .financial-metrics-main-section {
    padding: 60px 0;
  }

  .metrics-title {
    font-size: 36px;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .metric-card {
    padding: 25px;
  }

  .metric-value {
    font-size: 24px;
  }

  .metric-title {
    font-size: 18px;
  }

  .info-text,
  .milestone-text {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .financial-metrics-main-section {
    padding: 40px 0;
  }

  .metrics-title {
    font-size: 28px;
  }

  .metrics-grid {
    gap: 20px;
  }

  .metric-card {
    padding: 20px;
  }

  .metric-value {
    font-size: 20px;
  }

  .metric-title {
    font-size: 16px;
  }

  .metric-subtitle {
    font-size: 12px;
  }

  .info-text,
  .milestone-text {
    font-size: 13px;
  }
}

/* Live Financial Metrics Section Styles */
.live-metrics-main-section {
  background: linear-gradient(135deg, #001122 0%, #002b5c 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.live-metrics-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Live Metrics Header */
.live-metrics-header {
  text-align: center;
  margin-bottom: 60px;
}

.live-metrics-title {
  font-size: 48px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.live-metrics-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.live-metrics-line {
  width: 60px;
  height: 3px;
  background: #ffd700;
  border-radius: 2px;
}

.live-metrics-dot {
  width: 8px;
  height: 8px;
  background: #ffd700;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

/* Live Metrics Grid */
.live-metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.live-metric-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(255, 215, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.live-metric-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(255, 215, 0, 0.05),
    rgba(255, 193, 7, 0.03)
  );
  border-radius: 15px;
  z-index: -1;
}

.live-metric-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 215, 0, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.1);
}

.live-metric-header {
  margin-bottom: 20px;
}

.live-metric-title {
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.live-metric-subtitle {
  font-size: 14px;
  color: #cccccc;
  margin: 0;
  font-weight: 500;
}

.live-metric-value {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.2;
}

.total-paidout-value {
  color: #ffd700;
}

.total-investor-value {
  color: #ffffff;
}

.last-invested-value {
  color: #ffd700;
}

.last-paidout-value {
  color: #4a90e2;
}

.live-metric-line {
  width: 40px;
  height: 2px;
  margin: 0 auto;
  border-radius: 1px;
}

/* Live Activity Info */
.live-activity-info {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.live-info-text {
  font-size: 16px;
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 15px;
}

.live-status-text {
  font-size: 16px;
  color: #ffd700;
  font-weight: 600;
  margin: 0;
}

/* Mobile Responsive for Live Financial Metrics */
@media (max-width: 768px) {
  .live-metrics-main-section {
    padding: 60px 0;
  }

  .live-metrics-title {
    font-size: 36px;
  }

  .live-metrics-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .live-metric-card {
    padding: 25px;
  }

  .live-metric-value {
    font-size: 24px;
  }

  .live-metric-title {
    font-size: 18px;
  }

  .live-info-text,
  .live-status-text {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .live-metrics-main-section {
    padding: 40px 0;
  }

  .live-metrics-title {
    font-size: 28px;
  }

  .live-metrics-grid {
    gap: 20px;
  }

  .live-metric-card {
    padding: 20px;
  }

  .live-metric-value {
    font-size: 20px;
  }

  .live-metric-title {
    font-size: 16px;
  }

  .live-metric-subtitle {
    font-size: 12px;
  }

  .live-info-text,
  .live-status-text {
    font-size: 13px;
  }
}

/* Why Us Section Styles */
.why-us-main-section {
  background: linear-gradient(135deg, #001122 0%, #002b5c 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.why-us-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Why Us Header */
.why-us-header {
  text-align: center;
  margin-bottom: 60px;
}

.why-us-title {
  font-size: 48px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.why-us-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.why-us-line {
  width: 60px;
  height: 3px;
  background: #ffd700;
  border-radius: 2px;
}

.why-us-dot {
  width: 8px;
  height: 8px;
  background: #ffd700;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

.why-us-category {
  font-size: 16px;
  color: #cccccc;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Why Us Content */
.why-us-content {
  max-width: 900px;
  margin: 0 auto 50px auto;
}

.why-us-paragraph {
  margin-bottom: 30px;
}

.why-us-paragraph:last-child {
  margin-bottom: 0;
}

.why-us-paragraph p {
  font-size: 16px;
  line-height: 1.7;
  color: #cccccc;
  margin: 0;
  text-align: justify;
}

/* Progress Indicators */
.why-us-progress {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 50px 0 40px 0;
}

.progress-indicator {
  width: 50px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #002b5c;
  color: #002b5c;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  font-family: "Arial", sans-serif;
}

.progress-indicator:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: #ffd700;
  color: #ffd700;
}

.progress-indicator.active {
  background: #ffd700;
  border-color: #ffd700;
  color: #002b5c;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* Mobile Responsive for Why Us */
@media (max-width: 768px) {
  .why-us-main-section {
    padding: 60px 0;
  }

  .why-us-title {
    font-size: 36px;
  }

  .why-us-category {
    font-size: 14px;
  }

  .why-us-paragraph p {
    font-size: 15px;
    text-align: left;
  }

  .why-us-progress {
    gap: 10px;
  }

  .progress-indicator {
    width: 40px;
    height: 35px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .why-us-main-section {
    padding: 40px 0;
  }

  .why-us-title {
    font-size: 28px;
  }

  .why-us-subtitle {
    gap: 10px;
  }

  .why-us-line {
    width: 40px;
  }

  .why-us-category {
    font-size: 12px;
  }

  .why-us-paragraph p {
    font-size: 14px;
  }

  .why-us-progress {
    gap: 8px;
  }

  .progress-indicator {
    width: 35px;
    height: 30px;
    font-size: 12px;
  }
}

/* Why Us Tab Content */
.why-us-tab-content {
  display: none;
  animation: fadeInUp 0.5s ease-out;
}

.why-us-tab-content.active {
  display: block;
}

.why-us-content {
  max-width: 900px;
  margin: 0 auto 50px auto;
  position: relative;
}

/* Regional Statistics Content */
.regional-statistics {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.region-title {
  font-size: 32px;
  font-weight: bold;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.region-percentage {
  font-size: 72px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.region-description {
  font-size: 18px;
  color: #cccccc;
  line-height: 1.6;
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
}

/* Mobile Responsive for Regional Statistics */
@media (max-width: 768px) {
  .regional-statistics {
    padding: 30px 15px;
  }

  .region-title {
    font-size: 28px;
  }

  .region-percentage {
    font-size: 56px;
  }

  .region-description {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .regional-statistics {
    padding: 20px 10px;
  }

  .region-title {
    font-size: 24px;
  }

  .region-percentage {
    font-size: 48px;
  }

  .region-description {
    font-size: 14px;
  }
}

/* Why Us Main Content */
.why-us-main-content {
  display: block;
  max-width: 900px;
  margin: 0 auto;
}

.why-us-tab-content-wrapper {
  display: none;
}

.why-us-tab-content-wrapper.active {
  display: block;
}

/* Footer Section Styles */
.footer-main-section {
  background: linear-gradient(135deg, #001122 0%, #002b5c 100%);
  padding: 60px 0 30px 0;
  position: relative;
  overflow: hidden;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Cryptocurrency and Payment Methods */
.crypto-payment-methods {
  text-align: center;
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.payment-logo {
  font-size: 14px;
  color: #cccccc;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.payment-logo:hover {
  color: #ffd700;
}

/* Footer Main Content */
.footer-main-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

/* Company Info */
.footer-company-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.logo-icon {
  width: 40px;
  height: 40px;
  background: #ffd700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  color: #002b5c;
}

.logo-text {
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-contact-text {
  font-size: 16px;
  color: #cccccc;
  line-height: 1.6;
  margin: 0;
}

.footer-feedback-btn {
  background: #ffd700;
  color: #002b5c;
  border: none;
  padding: 12px 25px;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.footer-feedback-btn:hover {
  background: #ffc107;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* Footer Navigation */
.footer-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.footer-nav-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-item {
  font-size: 14px;
  color: #cccccc;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.footer-nav-item:hover {
  color: #ffd700;
}

/* Copyright */
.footer-copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
  font-size: 14px;
  color: #cccccc;
  margin: 0;
}

/* Mobile Responsive for Footer */
@media (max-width: 768px) {
  .footer-main-section {
    padding: 40px 0 20px 0;
  }

  .footer-main-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .payment-logos {
    gap: 15px;
  }

  .payment-logo {
    font-size: 12px;
  }

  .logo-text {
    font-size: 18px;
  }

  .footer-contact-text {
    font-size: 14px;
  }

  .footer-feedback-btn {
    padding: 10px 20px;
    font-size: 12px;
  }

  .footer-navigation {
    gap: 30px;
  }

  .footer-nav-item {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .footer-main-section {
    padding: 30px 0 15px 0;
  }

  .payment-logos {
    gap: 10px;
  }

  .payment-logo {
    font-size: 11px;
  }

  .logo-text {
    font-size: 16px;
  }

  .footer-contact-text {
    font-size: 13px;
  }

  .footer-feedback-btn {
    padding: 8px 16px;
    font-size: 11px;
  }

  .footer-nav-item {
    font-size: 12px;
  }

  .footer-copyright p {
    font-size: 12px;
  }
}

#page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 17, 34, 0.92);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#page-loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-spinner {
  width: 56px;
  height: 56px;
  border: 6px solid #ffd700;
  border-top: 6px solid #001122;
  border-radius: 50%;
  animation: spinLoader 1s linear infinite;
  margin-bottom: 18px;
  box-shadow: 0 0 24px #ffd70044;
}
@keyframes spinLoader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loader-text {
  color: #ffd700;
  font-size: 1.1rem;
  letter-spacing: 2px;
  font-weight: 600;
  text-shadow: 0 2px 8px #001122cc;
}

.mobile-nav {
  display: none;
}

@media (max-width: 768px) {
  .mobile-nav {
    display: block;
  }
}

.about-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
}
.about-icon .logo-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(45deg, #ffd700, #ffa500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  color: #001122;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}
.about-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #ffd700 0%, #ffa500 100%);
  border-radius: 2px;
  margin: 0 auto 18px auto;
}
.about-highlight {
  color: #ffd700;
  font-weight: 700;
}
.about-cta {
  display: inline-block;
  margin-top: 24px;
  font-size: 1.08rem;
  padding: 12px 32px;
  border-radius: 8px;
  background: #ffd700;
  color: #001122;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 2px 12px #ffd70033;
  transition: background 0.2s, color 0.2s;
}
.about-cta:hover {
  background: #ffe066;
  color: #002b5c;
}
@media (max-width: 600px) {
  .about-content {
    background: #001122 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    max-width: none !important;
    width: 100vw !important;
    min-height: 100vh !important;
    padding: 24px 8px 12px 8px !important;
    margin: 0 !important;
    align-items: stretch !important;
  }
  .about-section {
    padding: 0 !important;
    min-height: 100vh !important;
    width: 100vw !important;
  }
  .about-icon .logo-icon {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
  }
  .about-divider {
    width: 40px;
    height: 3px;
    margin-bottom: 12px;
  }
  .about-cta {
    width: 100%;
    font-size: 1rem;
    padding: 14px 0;
  }
}

.about-timeline {
  margin: 32px 0 24px 0;
  text-align: center;
}
.about-timeline-title {
  color: #ffd700;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.about-timeline-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 400px;
}
.about-timeline-list li {
  color: #e6e6e6;
  font-size: 1rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.about-timeline-year {
  color: #ffd700;
  font-weight: 700;
  margin-right: 8px;
  min-width: 48px;
  display: inline-block;
}

.about-features {
  margin: 32px 0 24px 0;
  text-align: center;
}
.about-features-title {
  color: #ffd700;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.about-features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-top: 8px;
}
.about-feature-item {
  background: rgba(0, 17, 34, 0.7);
  border-radius: 10px;
  padding: 14px 18px;
  color: #ffd700;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 8px #ffd70022;
  min-width: 140px;
  transition: background 0.2s;
}
.about-feature-item i {
  font-size: 1.2rem;
}
.about-feature-item span {
  color: #fff;
  font-weight: 500;
}
.about-feature-item:hover {
  background: #ffd70022;
}

.about-team {
  margin: 32px 0 24px 0;
  text-align: center;
}
.about-team-title {
  color: #ffd700;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.about-team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-top: 8px;
}
.about-team-member {
  background: rgba(0, 17, 34, 0.7);
  border-radius: 10px;
  padding: 16px 18px;
  color: #ffd700;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 180px;
  box-shadow: 0 2px 8px #ffd70022;
  transition: background 0.2s;
}
.about-team-member:hover {
  background: #ffd70022;
}
.about-team-avatar {
  font-size: 2.2rem;
  color: #ffd700;
  background: #001122;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-team-info {
  text-align: left;
}
.about-team-name {
  color: #fff;
  font-weight: 700;
  font-size: 1.08rem;
}
.about-team-role {
  color: #ffd700;
  font-size: 0.98rem;
  font-weight: 500;
}

.about-vision {
  margin: 32px 0 18px 0;
  text-align: center;
  color: #ffd700;
  font-size: 1.08rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.about-vision i {
  font-size: 1.3rem;
}

@media (max-width: 600px) {
  .about-timeline-list li {
    font-size: 0.98rem;
    min-width: 0;
  }
  .about-features-list,
  .about-team-list {
    flex-direction: column;
    gap: 12px;
  }
  .about-feature-item,
  .about-team-member {
    min-width: 0;
    width: 100%;
    justify-content: flex-start;
  }
  .about-team-avatar {
    width: 38px;
    height: 38px;
    font-size: 1.3rem;
  }
  .about-vision {
    font-size: 1rem;
    gap: 6px;
  }
}


@media (max-width: 768px) {
  header {
    margin-top:-100px !important;
  }
