@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap");
* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

h1,
h2,
h3,
p,
ul {
  margin-top: 0;
}

ul {
  padding-left: 0%;
  margin-bottom: 0%;
}

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

:root {
  --clr-bg-dark: #12141a;
  --clr-bg-red: #4d2323;
  --clr-panel: #1e2129;
  --clr-text-primary: #ffffff;
  --clr-text-secondary: #a9aeb8;
  --clr-accent-blue: #3a7cff;
  --clr-accent-purple: #9c27b0;
  --clr-accent-red: #e53935;
  --clr-accent-gradient: linear-gradient(90deg, var(--clr-accent-blue), var(--clr-accent-purple));
  --clr-border: #33363e;
  --border-radius: 12px;
  --container-padding: 16px;
  --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: var(--clr-text-primary);
  background-color: var(--clr-bg-dark);
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  background-image: url("../images/bg-01.png");
  /* */
  /* These properties ensure it covers the whole screen */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  /* This keeps the background fixed in place when you scroll */
  background-attachment: fixed;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: var(--clr-text-primary);
}

p {
  color: var(--clr-text-secondary);
  margin-bottom: 0.5rem;
}

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

.mobile-container {
  width: 100%;
  min-width: 375px;
  max-width: 425px;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  box-shadow: var(--box-shadow);
  padding-bottom: 80px;
  margin-left: auto;
  margin-right: auto;
  background-color: transparent;
}

.card-panel {
  background-color: var(--clr-panel);
  border-radius: var(--border-radius);
  padding: var(--container-padding);
  margin-bottom: 1rem;
  border: 1px solid var(--clr-border);
  box-shadow: var(--box-shadow);
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 700;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.btn--primary-gradient {
  background: var(--clr-accent-gradient);
  color: white;
}
.btn--primary-gradient:hover {
  opacity: 0.9;
}
.btn--logout {
  background: #333;
  color: var(--clr-text-secondary);
  width: 100%;
}
.btn--logout:hover {
  background: #444;
}

/* --- Bottom Navigation Bar --- */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 375px;
  margin: 0 auto;
  height: 65px;
  background-color: var(--clr-panel);
  border-top: 1px solid var(--clr-border);
  display: flex;
  justify-content: space-around;
  align-items: center;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}
.bottom-nav::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--clr-accent-red) 50%, transparent);
}
.bottom-nav .nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--clr-text-secondary);
  font-size: 10px;
}
.bottom-nav .nav-item i {
  font-size: 20px;
  margin-bottom: 4px;
}
.bottom-nav .nav-item.active {
  color: var(--clr-accent-red);
}
.bottom-nav .nav-item--center {
  position: relative;
  top: -20px;
}
.bottom-nav .nav-item--center .icon-wrapper {
  width: 60px;
  height: 60px;
  background: var(--clr-accent-gradient);
  border-radius: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(45deg);
  box-shadow: var(--box-shadow);
  transition: box-shadow 0.3s ease;
}
.bottom-nav .nav-item--center .icon-wrapper i {
  transform: rotate(-45deg);
  color: white;
  font-size: 28px;
  margin: 0;
}
.bottom-nav .nav-item--center.active .icon-wrapper {
  box-shadow: 0 0 15px 3px rgba(229, 57, 53, 0.6);
}

.data-pair {
  text-align: center;
}
.data-pair .data-label {
  font-size: 12px;
  color: var(--clr-text-secondary);
  margin-bottom: 4px;
}
.data-pair .data-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--clr-text-primary);
}

.back-button {
  font-size: 2rem;
}

.bottom-nav {
  display: flex;
  width: 100%;
  background-color: var(--clr-panel);
  padding: 5px 0;
  max-width: 425px;
  margin: 0 auto;
  border-top: 2px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(to right, rgba(255, 255, 255, 0), var(--clr-accent-red), rgba(255, 255, 255, 0));
}
.bottom-nav .nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--clr-text-secondary);
  text-align: center;
  padding: 5px 2px;
  flex: 1 1 0;
  min-width: 0;
}
.bottom-nav .nav-item i {
  font-size: 22px;
  margin-bottom: 4px;
}
.bottom-nav .nav-item span {
  font-size: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}
.bottom-nav .nav-item.active {
  color: var(--clr-accent-red);
}
.bottom-nav .nav-item.active i {
  color: var(--clr-accent-red);
}
.bottom-nav .nav-item--center {
  flex: 0 0 25%;
  position: relative;
  top: -15px;
}
.bottom-nav .nav-item--center .icon-wrapper {
  background: var(--clr-accent-red);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 15px rgba(255, 0, 0, 0.5);
}
.bottom-nav .nav-item--center .icon-wrapper i {
  font-size: 24px;
  color: white;
  margin: 0;
}

.mine-parent {
  width: 90%;
  margin: auto;
  padding-top: 10px;
}

.profile {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
}

.photo-id {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.profile-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

.settings {
  font-size: 30px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.total-assets {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.modal-content,
.modal-content-withdraw {
  background-color: var(--clr-panel);
  margin: 40% auto;
  padding: 24px;
  border: 1px solid var(--clr-border);
  border-radius: var(--border-radius);
  width: 90%;
  max-width: 340px;
  position: relative;
  box-shadow: var(--box-shadow);
}

.close-button {
  color: var(--clr-text-secondary);
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
}
.close-button:hover, .close-button:focus {
  color: var(--clr-accent-red);
  text-decoration: none;
  cursor: pointer;
}

.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--clr-text-secondary);
  font-size: 14px;
}

input[type=text],
input[type=number] {
  width: 100%;
  padding: 12px;
  background-color: var(--clr-bg-dark);
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  color: var(--clr-text-primary);
  font-size: 16px;
}
input[type=text]:focus,
input[type=number]:focus {
  outline: none;
  border-color: var(--clr-accent-blue);
  box-shadow: 0 0 0 3px rgba(58, 124, 255, 0.3);
}

#deposit-modal .form-group p strong {
  display: block;
  background-color: var(--clr-bg-dark);
  padding: 12px;
  border-radius: 8px;
  color: var(--clr-accent-blue);
  font-family: monospace;
  word-wrap: break-word;
}

.help-link {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 25px;
  margin-top: 1rem;
}
.help-link .fa-solid,
.help-link .fa-brands {
  font-size: 28px;
}

.link-child a {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.name-icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}
.name-icon p {
  margin: 0;
}

.alert {
  padding: 1rem;
  margin: 0 1rem 1.5rem 1rem;
  border-radius: var(--border-radius);
  border: 1px solid transparent;
  text-align: center;
  font-weight: bold;
}

.alert-success {
  background-color: #d4edda;
  border-color: #c3e6cb;
  color: #155724;
}

.alert-danger {
  background-color: #f8d7da;
  border-color: #f5c6cb;
  color: #721c24;
}

.withdrawal-form-container {
  border-top: 1px solid #eee;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}

.page-header-custom {
  width: 90%;
  margin: auto;
}
.page-header-custom .fa-arrow-left {
  margin-top: 1rem;
}
.page-header-custom .logo-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.page-header-custom .logo-title .logo {
  width: 35%;
}

.page-content-device {
  padding: 1.5rem var(--container-padding) 100px var(--container-padding);
  min-height: 100vh;
}
.page-content-device .title-exit {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  color: var(--clr-text-primary);
}
.page-content-device .title-exit .back-button {
  font-size: 1.25rem;
  color: var(--clr-text-primary);
  margin-right: 1.5rem;
}
.page-content-device .title-exit h1 {
  font-size: 1.25rem;
  font-weight: 600;
}
.page-content-device .card-panel {
  margin-bottom: 1.5rem;
}
.page-content-device .card-panel h4 {
  color: var(--clr-text-primary);
  font-weight: 600;
  font-size: 1.1rem;
}
.page-content-device .card-panel .list-group-flush {
  background-color: transparent;
}
.page-content-device .card-panel .list-group-item {
  background-color: transparent;
  border-color: var(--clr-border) !important;
  color: var(--clr-text-secondary);
}
.page-content-device .card-panel .list-group-item strong {
  color: var(--clr-text-primary);
}
.page-content-device .card-panel .list-group-item small {
  color: var(--clr-text-secondary);
}

.page-content-register {
  width: 90%;
  margin: auto;
  padding-top: 40px;
}

.password-wrapper {
  position: relative;
}

.password-wrapper .fa-eye,
.password-wrapper .fa-eye-slash {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  cursor: pointer;
  color: #888;
}

#password-strength {
  list-style-type: none;
  padding: 0;
  margin-top: 10px;
  font-size: 0.8rem;
}

#password-strength li {
  color: #dc3545;
  /* Red by default */
  transition: color 0.3s;
}

#password-strength li.valid {
  color: #198754;
  /* Green when valid */
}

#password-strength li.valid::before {
  content: "✓ ";
}

#password-strength li::before {
  content: "✗ ";
}

.logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.transparent-bull-01 {
  width: 150px;
}

/* --- Hide the arrows on the referral code number input --- */
#referral_code {
  -moz-appearance: textfield;
  -webkit-appearance: none;
          appearance: none;
}
#referral_code::-webkit-outer-spin-button, #referral_code::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* --- Password Strength Indicator Styles --- */
#password-strength {
  list-style-type: none;
  padding: 0;
  margin: 0.5rem 0;
  font-size: 0.8rem;
}
#password-strength li {
  color: var(--clr-text-secondary);
  transition: color 0.3s ease;
}
#password-strength li.valid {
  color: var(--clr-accent-blue);
  text-decoration: line-through;
}

.page-content-transactions {
  width: 90%;
  margin: auto;
}

.my-records-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.my-records-logo .logo {
  width: 35%;
}

.page-content-transactions {
  padding: var(--container-padding);
}

.list-group-item {
  background-color: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--clr-border);
  border-radius: calc(var(--border-radius) - 4px);
  margin-bottom: 0.75rem;
  padding: 1rem;
}
.list-group-item:last-child {
  margin-bottom: 0;
}

.list-group-item h5 {
  color: var(--clr-text-primary);
  font-weight: bold;
}
.list-group-item p {
  color: var(--clr-text-secondary);
}
.list-group-item small {
  color: var(--clr-text-secondary);
}

.badge {
  padding: 0.4em 0.6em;
  font-size: 0.75rem;
  font-weight: bold;
  border-radius: 6px;
}
.badge.bg-success {
  background-color: #28a745;
  color: white;
}
.badge.bg-secondary {
  background-color: #444;
  color: var(--clr-text-secondary);
}
.badge.bg-warning {
  background-color: #ffc107;
  color: #111;
}
.badge.bg-danger {
  background-color: var(--clr-accent-red);
  color: white;
}

.card-panel h4 i {
  color: var(--clr-accent-blue);
  margin-right: 8px;
  width: 20px;
}

.page-content-team {
  width: 90%;
  margin: auto;
}

.team-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 16px;
}
.team-header .logo {
  width: 40%;
}

.generation-data-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--clr-border);
}

.generation-data-item:last-child {
  border-bottom: none;
}

.qr-code {
  display: flex;
  align-items: center;
  justify-content: center;
}

.input-with-icon {
  position: relative;
}
.input-with-icon .form-control {
  padding-right: 40px;
}
.input-with-icon .fa-copy {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  color: var(--clr-text-secondary);
  cursor: pointer;
}
.input-with-icon .fa-copy:hover {
  color: var(--clr-text-primary);
}
.input-with-icon #copy-feedback {
  position: absolute;
  bottom: 100%;
  right: 5px;
  margin-bottom: 5px;
  background-color: var(--clr-accent-blue);
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
}

.member-center {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.member-center .logo {
  width: 30%;
}

.earning-summary {
  display: flex;
  justify-content: space-around;
  text-align: center;
  padding: 20px;
  background-color: var(--clr-panel);
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
  width: 90%;
  margin: auto;
}

.vip-parent {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
}

.vip-package-card {
  background-color: var(--clr-panel);
  border-left: 4px solid var(--clr-accent-blue);
  padding: var(--container-padding);
  margin-bottom: 1.5rem;
  border-radius: var(--border-radius);
  width: 90%;
  margin: auto;
}

.vip-package-card h4 {
  color: var(--clr-text-primary);
  margin-bottom: 1.5rem;
}

.vip-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

/* --- Custom VIP Button Styles (Improved Specificity) --- */
/* Style for the "Prepare Trade" button */
.btn.btn--prepare {
  background-color: #17a2b8;
  /* A nice info blue */
  border-color: #17a2b8;
  color: white;
}

.btn.btn--prepare:hover {
  background-color: #138496;
  border-color: #117a8b;
}

/* Style for the "On Cooldown" and "Trade Prepared" buttons */
.btn.btn--waiting {
  background-color: #6c757d;
  /* A neutral gray */
  border-color: #6c757d;
  color: white;
  opacity: 0.7;
  /* Make it look disabled */
  cursor: not-allowed;
  /* Show a 'not allowed' cursor on hover */
}

/* Style for the main "Make a Trade" (Claim) button */
.btn.btn--claim {
  background: linear-gradient(90deg, #28a745, #218838);
  /* A vibrant green gradient */
  border-color: #28a745;
  color: white;
  font-weight: bold;
}

.btn.btn--claim:hover {
  background: linear-gradient(90deg, #218838, #1e7e34);
}

/* --- Custom VIP Timer Summary Styles --- */
.vip-timers-summary {
  display: flex;
  flex-direction: column;
  /* Stack each VIP timer vertically */
  gap: 1rem;
  /* Space between each VIP's timer block */
  text-align: center;
  padding: 20px;
  background-color: var(--clr-panel);
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
}

.vip-timer-entry {
  border-bottom: 1px solid var(--clr-border);
  padding-bottom: 1rem;
}

.vip-timer-entry:last-child {
  border-bottom: none;
  /* Don't put a line under the last one */
  padding-bottom: 0;
}

.vip-timer-entry h4 {
  color: var(--clr-accent-blue);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.timer-pair {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  padding: 0.25rem 0.5rem;
  /* Add some padding */
}

.timer-label {
  color: var(--clr-text-secondary);
}

.timer-value {
  color: var(--clr-text-primary);
  font-weight: bold;
  font-family: monospace;
  /* Makes numbers line up nicely */
  font-size: 1.1rem;
}

/* --- Custom Styles for VIP Card Header --- */
.vip-card-header {
  display: flex;
  align-items: center;
  /* Vertically center the title with the image */
  gap: 12px;
  /* Add some space between the image and the title */
  margin-bottom: 1.5rem;
  /* Keep the original margin from the h4 */
}

.vip-badge-image {
  width: 65px;
  /* Changed from 50px */
  height: 65px;
  /* Changed from 50px */
  -o-object-fit: contain;
     object-fit: contain;
  /* Ensures the image scales nicely without being distorted */
}

/* We remove the margin from the h4 since the parent container has it now */
.vip-card-header h4 {
  margin-bottom: 0;
}

.vip-action-area {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}
.vip-action-area .vip-button-wrapper {
  width: 90%;
  max-width: 280px;
  display: flex;
  align-items: center;
}

.vip-locked {
  filter: grayscale(90%);
  opacity: 0.6;
  position: relative;
}
.vip-locked .vip-action-area {
  pointer-events: none;
}
.vip-locked::after {
  content: "🔒";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 50px;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  z-index: 10;
}

.soon {
  width: 90%;
  margin: auto;
}
.soon h4 {
  font-size: 1.3rem;
}
.soon p {
  font-size: 0.8rem;
}

.site-branding {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.site-branding .logo {
  width: 30%;
}
.site-branding .site-title {
  font-size: 1.7rem;
  text-align: center;
  display: flex;
  align-items: center;
}

#big-chart-wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#big-chart-container {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 800px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

#big-chart-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}

.page-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 10px 0;
  color: var(--clr-text-primary);
}

.page-header .back-arrow {
  font-size: 24px;
}

.page-header h1 {
  font-size: 20px;
  margin: 0;
}

/* Styles for the deposit info box */
.deposit-info-container {
  background-color: var(--clr-panel);
  padding: 2rem 1.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  margin-top: 1.5rem;
}

#qrcode {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
  padding: 10px;
  background: white;
  /* QR Codes need a white background */
  border-radius: 8px;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.address-box {
  background-color: var(--clr-bg-dark);
  padding: 12px;
  border-radius: 8px;
  margin-top: 0.5rem;
  word-wrap: break-word;
  font-family: monospace;
  color: var(--clr-text-primary);
  font-size: 16px;
}

.deposit-instructions {
  text-align: left;
  margin-top: 2rem;
  font-size: 14px;
  color: var(--clr-text-secondary);
}

.deposit-instructions ul {
  padding-left: 20px;
}

.page-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 10px 0;
  color: var(--clr-text-primary);
}

.page-header .back-arrow {
  font-size: 24px;
}

.page-header h1 {
  font-size: 20px;
  margin: 0;
}

.balance-display {
  background-color: var(--clr-panel);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  margin-bottom: 1.5rem;
}

.balance-display p {
  margin: 0;
  color: var(--clr-text-secondary);
  font-size: 14px;
}

.balance-display .amount {
  font-size: 28px;
  font-weight: bold;
  color: var(--clr-text-primary);
  margin-top: 0.5rem;
}

.toast {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 20px;
  border-radius: var(--border-radius);
  color: white;
  font-weight: bold;
  z-index: 2000;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
}
.toast.toast--success {
  background-color: #28a745;
  border: 1px solid #1e7e34;
}
.toast.toast--error {
  background-color: var(--clr-accent-red);
  border: 1px solid #a71d1a;
}
.toast.show {
  opacity: 1;
  visibility: visible;
}

.notifications-page-container {
  background: var(--bg-gradient);
  min-height: 100vh;
}
.notifications-page-container .content-area {
  padding: 1rem;
}
.notifications-page-container .list-group-item {
  background-color: var(--clr-panel);
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
}
.notifications-page-container .list-group-item:last-child {
  margin-bottom: 0;
}
.notifications-page-container .list-item-icon {
  color: var(--clr-accent-blue);
  margin-right: 1rem;
  font-size: 1.1rem;
}
.notifications-page-container .list-item-text {
  flex-grow: 1;
}
.notifications-page-container .list-item-arrow {
  color: var(--clr-border);
}
.notifications-page-container .notification-message {
  color: var(--clr-text-primary) !important;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}
.notifications-page-container .notification-time {
  color: var(--clr-text-secondary);
  font-size: 0.75rem;
}
.notifications-page-container .card-panel-empty {
  text-align: center;
  color: var(--clr-text-secondary);
  padding: 4rem 1rem;
  background-color: var(--clr-panel);
  border-radius: var(--border-radius);
}
.notifications-page-container .card-panel-empty i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-us {
  width: 90%;
  margin: auto;
}

.about-us-content .card-panel h3 {
  color: var(--clr-accent-blue);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid var(--clr-border);
  padding-bottom: 0.5rem;
}
.about-us-content .card-panel p {
  color: var(--clr-text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}
.about-us-content .card-panel p:not(:last-child) {
  margin-bottom: 1rem;
}

.coming-soon-page {
  padding: 1rem;
}
.coming-soon-page .coming-soon-content {
  text-align: center;
  padding: 2rem 1rem;
}
.coming-soon-page .vip-badge {
  display: inline-block;
  background-color: var(--clr-accent-red);
  color: var(--clr-text-primary);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}
.coming-soon-page i.fa-landmark-dome {
  font-size: 4rem;
  color: var(--clr-accent-blue);
  margin-bottom: 1.5rem;
}
.coming-soon-page h2 {
  font-size: 1.5rem;
  color: var(--clr-text-primary);
  margin-bottom: 0.75rem;
}
.coming-soon-page .status-text {
  color: var(--clr-text-secondary);
  font-size: 1rem;
  max-width: 300px;
  margin: 0 auto 1.5rem auto;
}
.coming-soon-page .contact-text {
  color: var(--clr-text-secondary);
  font-size: 0.9rem;
  max-width: 320px;
  margin: 0 auto 2rem auto;
  line-height: 1.6;
}

.title-exit {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  color: var(--clr-text-primary);
}
.title-exit .back-button {
  font-size: 1.25rem;
  color: var(--clr-text-primary);
  margin-right: 1.5rem;
}
.title-exit h1 {
  font-size: 1.25rem;
  font-weight: 600;
}

.page-header-custom {
  width: 90%;
  margin: auto;
}
.page-header-custom .fa-arrow-left {
  margin-top: 1rem;
}
.page-header-custom .logo-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.page-header-custom .logo-title .logo {
  width: 35%;
}

.about-us-content {
  padding: 1rem;
}
.about-us-content .card-panel h3 {
  color: var(--clr-accent-blue);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--clr-border);
  padding-bottom: 0.75rem;
}
.about-us-content .card-panel p {
  color: var(--clr-text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}
.about-us-content .card-panel p strong {
  color: var(--clr-text-primary);
}
.about-us-content .card-panel ul {
  padding-left: 20px;
  margin-top: 1rem;
  list-style-type: disc;
}
.about-us-content .card-panel li {
  color: var(--clr-text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.about-us-content .card-panel li strong {
  color: var(--clr-text-primary);
}

.language-settings-parent {
  width: 90%;
  margin: auto;
  padding-top: 10px;
}

.language-header {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--clr-border);
}
.language-header .back-arrow {
  font-size: 24px;
  color: var(--clr-text-primary);
}
.language-header h1 {
  font-size: 20px;
  margin: 0;
}

.language-list {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
}
.language-list .language-item {
  padding: 1rem 0.5rem;
  text-decoration: none;
  color: var(--clr-text-primary);
  font-size: 16px;
  border-bottom: 1px solid var(--clr-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.language-list .language-item:last-child {
  border-bottom: none;
}
.language-list .language-item.active {
  font-weight: bold;
  color: var(--clr-accent-blue);
}
.language-list .language-item.active .fa-check {
  font-size: 20px;
}/*# sourceMappingURL=main.css.map */