
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #222;
  background: #fff;
}

a {
  text-decoration: none;
}

/* ===========================
   NAVBAR
=========================== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #800000;
  padding: 15px 40px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  color: #FFD700;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 1px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: #fff;
  font-size: 15px;
  padding: 5px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #FFD700;
  border-bottom: 2px solid #FFD700;
}

/* ===========================
   HERO
=========================== */
.hero {
  background: linear-gradient(135deg, #1a0000, #800000);
  color: white;
  padding: 100px 40px;
  text-align: center;
}

.hero h1 {
  font-size: 46px;
  color: #FFD700;
  margin-bottom: 15px;
  line-height: 1.2;
}

.hero p {
  font-size: 18px;
  color: #ddd;
  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-gold {
  background-color: #FFD700;
  color: #1a0000;
  padding: 13px 32px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 15px;
  transition: background 0.3s;
}

.btn-gold:hover {
  background-color: #fff;
}

.btn-outline {
  border: 2px solid #FFD700;
  color: #FFD700;
  padding: 13px 32px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 15px;
  transition: all 0.3s;
}

.btn-outline:hover {
  background-color: #FFD700;
  color: #1a0000;
}

/* ===========================
   STATS BAR
=========================== */
.stats-bar {
  display: flex;
  justify-content: space-around;
  background-color: #FFD700;
  padding: 30px 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.stat {
  text-align: center;
}

.stat h3 {
  font-size: 32px;
  color: #800000;
  font-weight: bold;
}

.stat p {
  font-size: 14px;
  color: #333;
  margin-top: 4px;
}

/* ===========================
   ABOUT
=========================== */
.about {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 70px 80px;
  background-color: #fff8f0;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  min-width: 280px;
}

.about-text h2 {
  font-size: 32px;
  color: #800000;
  margin-bottom: 15px;
}

.about-text p {
  font-size: 15px;
  line-height: 1.9;
  color: #444;
  margin-bottom: 15px;
}

.about-image {
  flex: 1;
  min-width: 200px;
  display: flex;
  justify-content: center;
}

.about-placeholder {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, #800000, #1a0000);
  color: #FFD700;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-align: center;
  line-height: 2;
}

/* ===========================
   SERVICES CARDS
=========================== */
.services {
  padding: 70px 40px;
  background-color: #f5f5f5;
  text-align: center;
}

.services h2 {
  font-size: 32px;
  color: #800000;
  margin-bottom: 40px;
}

.cards-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.card {
  background: white;
  border-radius: 10px;
  padding: 30px 25px;
  width: 280px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  border-top: 4px solid #FFD700;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.card h3 {
  color: #800000;
  margin-bottom: 10px;
  font-size: 18px;
}

.card p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

/* ===========================
   NEWS PREVIEW
=========================== */
.news-preview {
  padding: 70px 40px;
  background-color: #fff;
  text-align: center;
}

.news-preview h2 {
  font-size: 32px;
  color: #800000;
  margin-bottom: 40px;
}

.news-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.news-card {
  background: #fff8f0;
  border-left: 5px solid #FFD700;
  border-radius: 8px;
  padding: 25px;
  width: 300px;
  text-align: left;
}

.news-date {
  font-size: 12px;
  color: #888;
  display: block;
  margin-bottom: 8px;
}

.news-card h3 {
  color: #800000;
  font-size: 16px;
  margin-bottom: 10px;
}

.news-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 12px;
}

.news-card a {
  color: #800000;
  font-weight: bold;
  font-size: 14px;
}

.news-card a:hover {
  color: #FFD700;
}

/* ===========================
   FOOTER
=========================== */
footer {
  background-color: #1a0000;
  color: #ccc;
  padding: 50px 40px 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-col h3 {
  color: #FFD700;
  margin-bottom: 15px;
  font-size: 16px;
}

.footer-col p {
  font-size: 14px;
  line-height: 2;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #ccc;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #FFD700;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #888;
}
/* ===========================
   PAGE HERO (used in all pages)
=========================== */
.page-hero {
  background: linear-gradient(135deg, #1a0000, #800000);
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.page-hero h1 {
  font-size: 36px;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-hero p {
  font-size: 16px;
  color: #ddd;
}

/* ===========================
   RATES TABLE
=========================== */
.rates-section {
  padding: 50px 40px;
  background-color: #fffbf0;
  text-align: center;
}

.rates-date {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

.rates-table {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 15px;
}

.rates-table thead {
  background-color: #800000;
  color: #FFD700;
}

.rates-table th,
.rates-table td {
  padding: 15px 20px;
  border: 1px solid #ddd;
  text-align: center;
}

.rates-table tbody tr:nth-child(even) {
  background-color: #fff3cd;
}

.rates-table tbody tr:hover {
  background-color: #ffe08a;
}

.rates-note {
  margin-top: 20px;
  font-size: 13px;
  color: #888;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

/* ===========================
   GOLD INFO SECTION
=========================== */
.gold-info {
  padding: 60px 40px;
  background-color: #f5f5f5;
  text-align: center;
}

.gold-info h2 {
  font-size: 30px;
  color: #800000;
  margin-bottom: 35px;
}
/* ===========================
   NEWS PAGE
=========================== */
.news-section {
  padding: 60px 40px;
  background-color: #fffbf0;
}

.news-full-grid {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.news-full-card {
  background: white;
  border-left: 5px solid #FFD700;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.07);
}

.news-tag {
  display: inline-block;
  background-color: #800000;
  color: #FFD700;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.news-full-card .news-date {
  display: block;
  font-size: 13px;
  color: #888;
  margin-bottom: 10px;
}

.news-full-card h2 {
  font-size: 20px;
  color: #800000;
  margin-bottom: 12px;
  line-height: 1.4;
}

.news-full-card p {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 10px;
}
/* ===========================
   CONTACT PAGE
=========================== */
.contact-section {
  display: flex;
  gap: 50px;
  padding: 60px 60px;
  background-color: #fffbf0;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
  min-width: 280px;
}

.contact-info h2 {
  font-size: 26px;
  color: #800000;
  margin-bottom: 12px;
}

.contact-info > p {
  font-size: 15px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.7;
}

.info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  align-items: flex-start;
}

.info-icon {
  font-size: 24px;
  margin-top: 3px;
}

.info-item h4 {
  font-size: 14px;
  color: #800000;
  margin-bottom: 4px;
}

.info-item p {
  font-size: 14px;
  color: #444;
  line-height: 1.7;
}

/* CONTACT FORM BOX */
.contact-form-box {
  flex: 1;
  min-width: 280px;
  background: white;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-form-box h2 {
  font-size: 24px;
  color: #800000;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 13px;
  color: #800000;
  font-weight: bold;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  color: #333;
  outline: none;
  transition: border 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #800000;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background-color: #800000;
  color: #FFD700;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-submit:hover {
  background-color: #FFD700;
  color: #800000;
}

/* MAP SECTION */
.map-section {
  padding: 50px 60px;
  background-color: #f5f5f5;
  text-align: center;
}

.map-section h2 {
  font-size: 28px;
  color: #800000;
  margin-bottom: 25px;
}
/* ===========================
   MEMBERS SEARCH
=========================== */
.members-search {
  padding: 30px 40px 10px;
  text-align: center;
  background-color: #fffbf0;
}

.members-search input {
  width: 100%;
  max-width: 500px;
  padding: 12px 20px;
  border: 2px solid #FFD700;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
}

.members-search input:focus {
  border-color: #800000;
}

/* ===========================
   MEMBERS TABLE
=========================== */
.members-section {
  padding: 20px 40px 50px;
  background-color: #fffbf0;
  overflow-x: auto;
}

.members-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.members-table thead {
  background-color: #800000;
  color: #FFD700;
}

.members-table th,
.members-table td {
  padding: 14px 18px;
  border: 1px solid #ddd;
  text-align: center;
}

.members-table tbody tr:nth-child(even) {
  background-color: #fff3cd;
}

.members-table tbody tr:hover {
  background-color: #ffe08a;
}

.badge {
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
}

.badge.active {
  background-color: #d4edda;
  color: #155724;
}

.badge.inactive {
  background-color: #f8d7da;
  color: #721c24;
}

/* ===========================
   JOIN SECTION
=========================== */
.join-section {
  padding: 60px 40px;
  background: linear-gradient(135deg, #1a0000, #800000);
  text-align: center;
  color: white;
}

.join-section h2 {
  font-size: 30px;
  color: #FFD700;
  margin-bottom: 12px;
}

.join-section p {
  font-size: 15px;
  color: #ddd;
  margin-bottom: 25px;
}
/* ===========================
   ADMIN LOGIN PAGE
=========================== */
.admin-login-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #1a0000, #800000);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.admin-login-box {
  background: white;
  padding: 45px 40px;
  border-radius: 12px;
  width: 100%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.admin-logo {
  font-size: 36px;
  font-weight: bold;
  color: #800000;
  margin-bottom: 10px;
}

.admin-login-box h2 {
  font-size: 24px;
  color: #800000;
  margin-bottom: 5px;
}

.admin-login-box > p {
  font-size: 13px;
  color: #888;
  margin-bottom: 25px;
}

.admin-login-box .form-group {
  text-align: left;
  margin-bottom: 18px;
}

.admin-login-box .form-group label {
  display: block;
  font-size: 13px;
  font-weight: bold;
  color: #800000;
  margin-bottom: 6px;
}

.admin-login-box .form-group input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  transition: border 0.3s;
}

.admin-login-box .form-group input:focus {
  border-color: #800000;
}

.back-link {
  display: block;
  margin-top: 20px;
  color: #888;
  font-size: 13px;
  text-decoration: none;
}

.back-link:hover {
  color: #800000;
}
```

/* ===========================
   DASHBOARD
=========================== */
.dashboard-wrapper {
  display: flex;
  min-height: 100vh;
}

/* SIDEBAR */
.sidebar {
  width: 240px;
  background-color: #1a0000;
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
}

.sidebar-logo {
  color: #FFD700;
  font-size: 22px;
  font-weight: bold;
  padding: 10px 20px 25px;
  border-bottom: 1px solid #333;
  margin-bottom: 10px;
}

.sidebar-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sidebar-link {
  color: #ccc;
  padding: 13px 20px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
  border-left: 3px solid transparent;
}

.sidebar-link:hover,
.sidebar-link.active {
  background-color: #2c0000;
  color: #FFD700;
  border-left: 3px solid #FFD700;
}

.sidebar-bottom {
  border-top: 1px solid #333;
  padding-top: 10px;
}

.sidebar-link.logout {
  color: #ff6b6b;
}

/* MAIN */
.dashboard-main {
  margin-left: 240px;
  flex: 1;
  background-color: #f5f5f5;
  min-height: 100vh;
  padding: 0 0 40px;
}

.dash-topbar {
  background: white;
  padding: 18px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  margin-bottom: 30px;
}

.dash-topbar h1 {
  font-size: 22px;
  color: #800000;
}

.dash-admin-name {
  font-size: 14px;
  color: #555;
}

.dash-section {
  padding: 0 30px;
}

.dash-card {
  background: white;
  border-radius: 10px;
  padding: 25px 30px;
  margin-bottom: 25px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.dash-card h3 {
  font-size: 18px;
  color: #800000;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #fff3cd;
}

.dash-form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.dash-form-row .form-group {
  flex: 1;
  min-width: 200px;
}

.president-preview {
  background: #fffbf0;
  border-left: 4px solid #FFD700;
  padding: 15px 20px;
  border-radius: 6px;
  min-height: 60px;
}

/* DELETE BUTTON */
.btn-delete {
  background-color: #f8d7da;
  color: #721c24;
  border: none;
  padding: 6px 12px;
  border-radius: 5px;
  font-size: 12px;
  cursor: pointer;
}

.btn-delete:hover {
  background-color: #f5c6cb;
}

/* OUTLINE RED BUTTON */
.btn-outline-red {
  margin-top: 10px;
  margin-left: 10px;
  padding: 13px 25px;
  background: transparent;
  border: 2px solid #800000;
  color: #800000;
  border-radius: 6px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-outline-red:hover {
  background: #800000;
  color: white;
}
/* ===========================
   MOBILE RESPONSIVE
=========================== */
@media (max-width: 768px) {

  /* NAVBAR */
  .navbar {
    flex-direction: column;
    gap: 15px;
    padding: 15px 20px;
    text-align: center;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .nav-links a {
    font-size: 13px;
  }

  /* HERO */
  .hero {
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  /* STATS BAR */
  .stats-bar {
    flex-wrap: wrap;
    gap: 20px;
    padding: 25px 20px;
  }

  .stat {
    width: 45%;
  }

  /* ABOUT */
  .about {
    flex-direction: column;
    padding: 40px 20px;
  }

  .about-text {
    text-align: center;
  }

  .about-image {
    justify-content: center;
  }

  /* CARDS */
  .cards-grid {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 100%;
    max-width: 400px;
  }

  /* NEWS */
  .news-grid {
    flex-direction: column;
    align-items: center;
  }

  .news-card {
    width: 100%;
    max-width: 400px;
  }

  /* PAGE HERO */
  .page-hero {
    padding: 40px 20px;
  }

  .page-hero h1 {
    font-size: 26px;
  }

  /* RATES TABLE */
  .rates-section {
    padding: 30px 15px;
  }

  .rates-table {
    font-size: 13px;
  }

  .rates-table th,
  .rates-table td {
    padding: 10px 8px;
  }

  /* MEMBERS TABLE */
  .members-section {
    padding: 15px 10px 40px;
  }

  .members-table {
    font-size: 13px;
  }

  .members-table th,
  .members-table td {
    padding: 10px 8px;
  }

  .members-search {
    padding: 20px 15px 10px;
  }

  .members-search input {
    width: 100%;
  }

  /* CONTACT PAGE */
  .contact-section {
    flex-direction: column;
    padding: 30px 20px;
  }

  .contact-form-box {
    padding: 25px 20px;
  }

  .map-section {
    padding: 30px 20px;
  }

  /* NEWS FULL PAGE */
  .news-section {
    padding: 30px 15px;
  }

  .news-full-card {
    padding: 20px 15px;
  }

  .news-full-card h2 {
    font-size: 17px;
  }

  /* FOOTER */
  .footer-content {
    flex-direction: column;
    gap: 25px;
  }

  .footer-col {
    text-align: center;
  }

  /* PRESIDENT MESSAGE */
  #president-banner {
    padding: 30px 20px !important;
  }

  #president-banner p {
    font-size: 15px !important;
  }

  /* DASHBOARD SIDEBAR — hide on mobile */
  .sidebar {
    width: 100%;
    height: auto;
    position: relative;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 10px;
  }

  .sidebar-logo {
    width: 100%;
    text-align: center;
    padding: 10px;
    border-bottom: none;
  }

  .sidebar-nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .sidebar-link {
    font-size: 12px;
    padding: 8px 12px;
    border-left: none;
    border-bottom: 2px solid transparent;
  }

  .sidebar-link:hover,
  .sidebar-link.active {
    border-left: none;
    border-bottom: 2px solid #FFD700;
  }

  .sidebar-bottom {
    width: 100%;
    display: flex;
    justify-content: center;
    border-top: 1px solid #333;
    padding-top: 5px;
  }

  .dashboard-main {
    margin-left: 0;
  }

  .dash-section {
    padding: 0 15px;
  }

  .dash-form-row {
    flex-direction: column;
  }

  .dash-topbar {
    padding: 15px;
  }

  .dash-topbar h1 {
    font-size: 16px;
  }

  /* ADMIN LOGIN */
  .admin-login-box {
    padding: 30px 20px;
  }

}
/*===========================
   LIVE TICKER BAR
=========================== */
.ticker-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #1a1a1a;
  padding: 20px 30px;
  flex-wrap: wrap;
  gap: 15px;
  border-bottom: 3px solid #FFD700;
}

.ticker-item {
  text-align: center;
  background-color: #FFD700;
  padding: 12px 30px;
  border-radius: 6px;
  min-width: 180px;
}

.ticker-label {
  display: block;
  font-size: 12px;
  color: #111;
  letter-spacing: 2px;
  font-weight: bold;
  margin-bottom: 5px;
}

.ticker-value {
  display: block;
  font-size: 28px;
  font-weight: bold;
  color: #111;
  font-family: monospace;
}

.ticker-lohi {
  display: block;
  font-size: 11px;
  color: #333;
  margin-top: 4px;
}

/* ===========================
   RATES UPDATED BAR
=========================== */
.rates-updated-bar {
  background-color: #111;
  color: #aaa;
  text-align: center;
  padding: 12px;
  font-size: 13px;
  border-bottom: 1px solid #222;
}

.rates-updated-bar strong {
  color: #FFD700;
}

/* ===========================
   DARK RATES TABLE
=========================== */
.rates-dark-section {
  background-color: #111;
  padding: 30px 20px;
  overflow-x: auto;
}

.rates-dark-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  min-width: 500px;
}

.rates-dark-table thead tr {
  background-color: #1a1a1a;
  border-top: 1px solid #333;
  border-bottom: 2px solid #FFD700;
}

.rates-dark-table thead th {
  color: #FFD700;
  padding: 16px 20px;
  text-align: left;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: bold;
}

.rates-dark-table thead th:last-child,
.rates-dark-table thead th:nth-child(2) {
  text-align: right;
}

.rates-dark-table tbody tr {
  border-bottom: 1px solid #222;
  transition: background 0.2s;
}

.rates-dark-table tbody tr:hover {
  background-color: #1a1a1a;
}

.rates-dark-table tbody td {
  padding: 16px 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.rates-dark-table tbody td:last-child,
.rates-dark-table tbody td:nth-child(2) {
  text-align: right;
}

.rate-buy {
  color: #4CAF50 !important;
  font-weight: bold !important;
  font-size: 20px !important;
}

.rate-sell {
  color: #FFD700 !important;
  font-weight: bold !important;
  font-size: 20px !important;
}

/* ===========================
   COINS SECTION
=========================== */
.coins-section {
  background-color: #111;
  padding: 0 20px 40px;
  overflow-x: auto;
}

.coins-tabs {
  display: flex;
  margin-bottom: 0;
  border-bottom: 2px solid #FFD700;
}

.coins-tab {
  flex: 1;
  padding: 16px;
  background-color: #1a1a1a;
  color: #aaa;
  border: none;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s;
  border-right: 1px solid #333;
}

.coins-tab.active {
  background-color: #FFD700;
  color: #111;
}

.coins-tab:hover {
  background-color: #FFD700;
  color: #111;
}

.coins-table-wrapper {
  background-color: #111;
}

/* ===========================
   FLASH ANIMATION
=========================== */
@keyframes flashRate {
  0%   { opacity: 1; }
  25%  { opacity: 0.2; }
  50%  { opacity: 1; }
  75%  { opacity: 0.2; }
  100% { opacity: 1; }
}

.flash-anim {
  animation: flashRate 0.6s ease;
}

.rate-animate {
  transition: color 0.5s ease;
}

/* ===========================
   MOBILE RATES
=========================== */
@media (max-width: 768px) {

  .ticker-bar {
    gap: 10px;
    padding: 15px;
  }

  .ticker-item {
    min-width: 140px;
    padding: 10px 15px;
  }

  .ticker-value {
    font-size: 20px;
  }

  .rates-dark-section {
    padding: 15px 5px;
  }

  .rates-dark-table tbody td {
    padding: 12px 10px;
    font-size: 13px;
  }

  .rate-buy,
  .rate-sell {
    font-size: 15px !important;
  }

  .coins-section {
    padding: 0 5px 30px;
  }

  .coins-tab {
    font-size: 12px;
    padding: 12px 8px;
    letter-spacing: 1px;
  }
}
/* ===========================
   FLOATING RATE ANIMATION
=========================== */
@keyframes flashRate {
  0%   { opacity: 1; }
  25%  { opacity: 0.2; }
  50%  { opacity: 1; }
  75%  { opacity: 0.2; }
  100% { opacity: 1; }
}

.flash-anim {
  animation: flashRate 0.5s ease;
}

.rate-lohi {
  display: block;
  font-size: 11px;
  color: #aaa;
  font-weight: normal;
  margin-top: 3px;
  font-family: monospace;
}