:root {
  --container-max: 1140px;
  --bg-dark: #050807;
  --card-dark: #0e1614;
  --accent: #00ff66;
  --muted: #c7eedd;
  --btn-primary-bg: #0d6efd; 
}

.container {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: var(--container-max);
  }
}
a{
  text-decoration: none!important;
}
.py-5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-4 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-2 {
  margin-bottom: 0.5rem !important;
}
.mb-3 {
  margin-bottom: 1rem !important;
}
.mt-3 {
  margin-top: 1rem !important;
}
.mt-4 {
  margin-top: 1.5rem !important;
}
.my-4 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.text-center {
  text-align: center;
}


.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.navbar-brand,
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #111;
  text-decoration: none;
}
.navbar-brand img,
.brand img {
  width: 40px;
  height: auto;
  display: inline-block;
}

.navbar-toggler {
  background: #00ff66;
  border: 0;
  line-height: 1;
  cursor: pointer;
  display: none;
  padding: 4px;
}
.navbar-toggler img {
  display: inline-block;
  width: 18px;
 
}

.collapse,
.navbar-collapse,
.nav-menu {
  display: flex;
  gap: 10px;
  align-items: center;
}
.collapse {
  transition: height 0.25s ease;
}

.d-md-none {
  display: block;
} 
.d-lg-block {
  display: none;
} 

@media (min-width: 768px) {
  .navbar-toggler {
    display: none;
  }
  .d-md-none {
    display: none !important;
  }
  .collapse {
    display: flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-block {
    display: block !important;
  }
}

@media (max-width: 767.98px) {
  .navbar-toggler {
    display: block;
  }
  .collapse {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
  }
  .collapse.show {
    display: flex;
  }
  .mobile-btn {
    display: flex;
    gap: 8px;
    margin-left: auto;
  }
}

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}
.btn-primary,
.btn.btn-primary {
  background: var(--btn-primary-bg);
  color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.btn-outline-primary,
.btn.btn-outline-primary {
  background: transparent;
  color: var(--btn-primary-bg);
  border: 1px solid var(--btn-primary-bg);
}
.btn:active {
  transform: translateY(0.5px);
}
.m-auto{
    margin: auto !important;
}

.px-3 {
  padding-left: 12px;
  padding-right: 12px;
}
.px-4 {
  padding-left: 16px;
  padding-right: 16px;
}
.py-2 {
    padding-top: .5rem !important;
    padding-bottom: .5rem !important;
}
.py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}
.py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}
.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}
.promo-section .promo-box {
  max-width: 900px;
  margin: auto;
  background: var(--card-dark);
  border-radius: 10px;
  padding: 30px;
  border: 2px solid rgba(0, 255, 102, 0.12);
}
.promo-logo {
  width: 140px;
  filter: drop-shadow(0 0 8px var(--accent));
  display: block;
  margin: 0 auto 10px;
}
.promo-title {
  color: var(--accent);
  font-size: 28px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}
.table th,
.table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.table thead tr {
  background: rgba(0, 255, 102, 0.08);
  color: var(--accent);
  font-weight: 700;
}
.table.align-middle td,
.table.align-middle th {
  vertical-align: middle;
}

.table-responsive {
  width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.invite-code {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px dashed var(--accent);
  color: var(--accent);
  background: rgba(0, 255, 102, 0.04);
}


.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
  gap: 12px;
}

@media (min-width: 576px) {
  .col-sm-6 {
    width: calc(50% - 12px);
  }
}

@media (min-width: 768px) {
  .col-md-4 {
    width: calc(33.333% - 12px);
  }
}
@media (min-width: 992px) {
  .col-lg-3 {
    width: calc(25% - 12px);
  }
}

.d-flex{
  display: flex;
}
.justify-content-center{
  justify-content: center;
}
.align-items-center{
  align-items: center;
}
.flex-column{
  flex-direction: column;
}
.flex-wrap{
  flex-wrap: wrap;
}
.justify-content-between{
  justify-content: space-between;
}
.text-warning {
    color: #ffc107 !important;
}
.gap-2 {
    gap: .5rem !important;
}
.gap-3 {
    gap: 1rem !important;
}
.testi-card {
  background: var(--card-dark);
  border: 1px solid rgba(0, 255, 102, 0.12);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 0 12px rgba(0, 255, 102, 0.06);
}
.stars {
  color: #ffc107;
  font-size: 16px;
  margin-bottom: 8px;
}
.testi-text {
  color: #caffdd;
  font-size: 14px;
  line-height: 1.4;
}

.accordion {
  margin-top: 16px;
}
.accordion-item {
  background: #0b100e;
  border: 1px solid rgba(0, 255, 102, 0.12);
  border-radius: 8px;
  margin-bottom: 8px;
  overflow: hidden;
}
.accordion-button {
  background: transparent;
  border: 0;
  width: 100%;
  text-align: left;
  padding: 12px 16px;
  cursor: pointer;
  font-weight: 700;
  color: #e5f9ef;
}
.accordion-button.collapsed {
  color: #d8f5e6;
}
.accordion-button::after {
  content: "\25be";
  float: right;
  transform: rotate(0);
  transition: transform 0.2s;
}
.accordion-button[aria-expanded="true"]::after {
  transform: rotate(180deg);
}
.accordion-collapse {
  display: none;
  padding: 0 16px 12px 16px;
}
.accordion-collapse.show {
  display: block;
}

.simple-footer {
  background: #050807;
  border-top: 2px solid var(--accent);
  color: #c6ffe3;
  padding-top: 14px;
  padding-bottom: 14px;
}
.footer-links a {
  color: #c6ffe3;
  text-decoration: none;
  margin: 0 6px;
  font-size: 14px;
}
.footer-note {
  color: #9bc8b1;
  font-size: 13px;
}
.footer-text {
  color: var(--accent);
  font-weight: 600;
  margin-top: 8px;
}

.hidden {
  display: none !important;
}
.accordion-item {
    border: 1px solid #ddd;
    margin-bottom: 10px;
    border-radius: 6px;
    overflow: hidden;
}

.accordion-button {
    width: 100%;
    background: #f8f9fa;
    border: none;
    padding: 12px 15px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.accordion-button:hover {
    background: #e9ecef;
}

.accordion-button.active {
    background: #dbeafe;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
    padding: 0 15px;
}

/* When Expanded */
.accordion-content.show {
    padding: 15px;
    max-height: 500px; 
}
.mobile-menu-section {
  position: fixed;
  left: 0;
  top: 60px;
  width: 100%;
  height:100vh ;
  background: linear-gradient(180deg, rgba(0,0,0,0.85), rgba(2,6,4,0.95));
  display: none;          
  z-index: 1200;
  overflow-y: auto;
  transition: transform 320ms cubic-bezier(.2,.8,.2,1), opacity 250ms ease;
  transform-origin: top;
  opacity: 0;
  transform: translateY(-6%);
}

.mobile-menu-inner{
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding: 28px 20px;
  box-sizing: border-box;
  position: relative;
}

.mobile-menu-section.open {
  display: flex;
  opacity: 1;
  transform: translateY(-60px);
}

.mobile-nav {
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 22px;
}

.mobile-nav-list {
  list-style:none;
  padding:0;
  margin:0;
  width:100%;
}
.mobile-nav-list li { margin: 8px 0; }
.mobile-nav-link {
  display:block;
  width:100%;
  text-align:center;
  padding:14px 18px;
  border-radius:10px;
  text-decoration:none;
  background: rgba(255,255,255,0.02);
  color: #d8f5e6;
  font-weight:700;
  font-size:18px;
  transition: background .18s, color .18s, transform .12s;
}
.mobile-nav-link:hover,
.mobile-nav-link:focus {
  background: rgba(0,255,102,0.06);
  color: #00ff66;
  transform: translateY(-2px);
}

.mobile-auth {
  display:flex;
  gap:12px;
  width:100%;
  justify-content:center;
  margin-top:8px;
}
.mobile-auth .btn {
  width: 100%;
  text-align: center;
}

.mobile-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: 0;
  color: #d8f5e6;
  font-size: 22px;
  cursor: pointer;
}

@media (max-width: 767.98px) {
  .mobile-menu-section { display: none; } 
}

@media (min-width: 768px) {
  .mobile-menu-section { display: none !important; }
}
