/* ============================================================
   MASTER STYLESHEET
   Sections:
   1.  Root Variables
   2.  Base / Body / HTML
   3.  Typography & Fonts
   4.  Scrollbar
   5.  Navbar
   6.  Navbar Responsive
   7.  Hero Section
   8.  Ticker
   9.  Stats Bar
   10. Content Area
   11. Buttons
   12. Form Inputs
   13. User Avatar / Icon
   14. Badges
   15. Phase Divider
   16. Affiliate
   17. Utilities
   18. Footer
   19. Auth — Login / Sign Up Page
   20. Animations
   ============================================================ */


/* ============================================================
   1. ROOT VARIABLES
   ============================================================ */

:root {
  --border: rgba(255, 255, 255, 0.08);
  scroll-behavior: smooth;
  --black: #0a0a0a;
    --dark: #111111;
    --card: #161616;
    --border: #2a2a2a;
    --caramel: #C68B3A;
    --caramel-light: #E0A84E;
    --caramel-dim: rgba(198,139,58,0.12);
    --white: #f5f5f5;
    --muted: #888888;
    --error: #e05a5a;
}


/* ============================================================
   2. BASE / BODY / HTML
   ============================================================ */

html, body {
  overflow: -moz-scrollbars-none;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  color: white !important;
  background-color: black !important;
}


/* ============================================================
   3. TYPOGRAPHY & FONTS
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

.font-1 {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #fff;
}

.font {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
  color: white;
  font-size: 40px;
}

label {
  font-weight: bold;
  margin-top: 10px;
  display: block;
  cursor: pointer;
}


/* ============================================================
   4. SCROLLBAR
   ============================================================ */

.scrollbar {
  display: none;
}


/* ============================================================
   5. NAVBAR
   ============================================================ */

.navbar-custom {
  background: black;
}
/* 
.nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
} */
header{
  margin-bottom: 50px;
}
.navbar-nav {
  align-items: center;
  font-family: 'Poppins', sans-serif;
  /* display: flex; */
  gap: 15px;
  /* margin-right: 250px; */
  font-size: 14px;
  color: white;
}
/* nav{
  margin-bottom: 200px;
} */

.navbar-nav .nav-link {
  position: relative;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.685);
}

.navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #79e079;
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::before {
  width: 100%;
}

.navbar-nav .nav-link:hover {
  transition: all 0.3s ease;
  color: white;
}

.navbar-toggler {
  border: none;
  outline: none;
  background-color: transparent;
  color: white;
}

.toggler {
  color: white;
  font-size: 24px;
}

.line {
  display: none;
  height: 2px;
  width: 100%;
  background-color: white;
}



.navbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  right: 18px;
  margin-right: 50px;
}

.nav-action-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.9);
  padding: 8px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 140ms ease, transform 140ms ease;
}

.nav-action-btn:hover {
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-1px);
}

.navbar-actions-2 {
  display: none;
}

/* User Avatar in Header */

.user-avatar {
  cursor: pointer;
  margin-left: 10px;
}

.user-avatar .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2fd66a, #12b07a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #042;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.user-avatar .avatar:hover {
  transform: scale(1.05);
  border-color: rgba(255, 255, 255, 0.3);
}

.user-avatar .avatar.img {
  background-size: cover;
  background-position: center;
  color: transparent;
}


/* ============================================================
   6. NAVBAR RESPONSIVE
   ============================================================ */

@media (max-width: 991px) {
  .navbar-nav {
    overflow: auto;
    flex-direction: column;
    margin-right: 0;
    padding-bottom: 20px;
    gap: 1px;
  }

  .line {
    display: block;
  }

  .navbar-nav.show {
    max-height: 300px;
    padding: 10px 20px;
    transition: 1s all;
    text-align: center;
    align-items: center;
  }

  .navbar-nav .nav-link {
    transition: 1s all;
    margin-right: 0;
    padding: 0.5rem 0;
  }

  .navbar-toggler {
    display: block;
  }
}

@media (max-width: 1020px) {
  .nav-inline-search {
    display: none;
  }
}

@media (max-width: 1325px) and (min-width: 900px) {
  .navbar-nav {
    font-size: smaller;
    gap: 0px;
  }

  .navbar-actions {
    margin-right: 0px;
  }
}


/* ============================================================
   7. HERO SECTION
   ============================================================ */

.hero-sections {
  display: flex;
  margin-top: 70px;
  position: relative;
  color: white;
  gap: 100px;
  justify-content: start;
  margin-inline: 120px;
  margin-bottom: 100px;
}

.hero-images {
  color: white;
  display: flex;
}

.hero {
  background-image: url(../images/hero-2.webp);
  height: 500px;
  width: 550px;
  opacity: 0.15;
  position: relative;
}

.hero-02 {
  background-image: url(../images/hero-1.webp);
  height: 500px;
  width: 550px;
  position: absolute;
  opacity: 0.5;
  margin-left: 50px;
}

.hero-btn {
  border: 1px solid rgb(121, 224, 121);
  color: white;
  padding: 15px;
  font-size: 20px;
  border-radius: 30px;
  padding-inline: 22px;
  background-color: transparent;
}

@media (max-width: 1020px) {
  .hero-02 {
    display: none;
  }

  .hero {
    display: none;
  }

  .hero-sections {
    margin-inline: 50px;
    gap: 20px;
    position: relative;
  }
}

@media (max-width: 1325px) and (min-width: 900px) {
  .hero-sections {
    margin-inline: 10px;
    gap: 10px;
  }
}


/* ============================================================
   8. TICKER
   ============================================================ */

.tick {
  width: 100%;
  height: 2px;
  background-color: white;
}

.ticker-wrapper {
  width: 100%;
  background: #1e1c1c;
  color: white;
  overflow: hidden;
  height: 42px;
  display: flex;
  align-items: center;
  font-family: 'Inter', sans-serif;
}

.ticker-label {
  flex-shrink: 0;
  padding: 0 18px 0 20px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  border-right: 1.5px solid #ddd;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ticker-track {
  flex: 1;
  overflow: hidden;
  height: 100%;
  position: relative;
}

.ticker-inner {
  display: flex;
  align-items: center;
  height: 100%;
  white-space: nowrap;
  animation: ticker-scroll 16s linear infinite;
}

.ticker-inner:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 30px;
  font-size: 13px;
  font-weight: 500;
}

.sep {
  display: inline-block;
  color: #ccc;
  padding: 0 4px;
  font-size: 15px;
}


/* ============================================================
   9. STATS BAR
   ============================================================ */

.stats-bar {
  display: flex;
  margin-top: 100px;
}

.stats {
  padding: 30px;
  padding-top: 30px;
  margin-top: 50px;
  margin-bottom: 50px;
  background-image: linear-gradient(to top, black 2%, rgb(14, 15, 15) 94%);
}

.top-stats {
  padding: 50px;
  padding-top: 30px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 50px;
  background-image: linear-gradient(to top, rgb(14, 15, 15) 2%, rgb(14, 15, 15) 94%);
}


/* ============================================================
   10. CONTENT AREA
   ============================================================ */

.main {
  scroll-behavior: smooth;
}

.content {
  padding: 20px;
  margin-top: 100px;
  background-image: linear-gradient(to top, black 2%, rgb(14, 15, 15) 94%);
}

.element {
  padding: 4px;
  padding-inline: 9px;
  height: 0;
  width: fit-content;
  border-radius: 30px;
  background-color: #02b8cc;
}

.divider {
  width: 80%;
  height: 1px;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.123);
}

.top-1 h3 {
  color: #C68964;
}

.hidden {
  display: none;
}


/* ============================================================
   11. BUTTONS
   ============================================================ */

.btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 18px;
  color: rgb(89, 89, 89);
  background-color: transparent;
  border: 2px solid rgb(89, 89, 89);
  border-radius: 60px;
  cursor: pointer;
  position: relative;
}

.btn .fa-btn {
  display: none;
}

.btn:hover .fa-btn {
  display: inline-block;
  animation: fadeIn 0.3s ease;
  margin-inline: 5px;
  color: rgb(121, 224, 121);
}

.btn a {
  text-decoration: none;
  color: rgb(89, 89, 89);
}

.content-btn {
  background-color: transparent;
  border: 1px solid gray;
  color: #C68964;
  font-size: 18px;
  border-radius: 50px;
  padding: 10px;
  padding-inline: 12px;
  transition: 0.5s all;
}

.content-btn:hover {
  background-color: rgba(55, 55, 55, 0.451);
}

.content-btn-01 {
  background-color: white;
  color: black;
  border: 1px solid gray;
  font-size: 12px;
  margin-left: 12px;
  border-radius: 14px;
  padding: 6px;
  padding-inline: 12px;
  transition: 0.5s all;
}

.content-btn-01:hover {
  background-color: rgba(255, 255, 255, 0.17);
  color: white;
}

.next-badge {
  font-size: 12px;
  font-weight: 700;
  padding: 3px 15px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  float: right;
  
}


.next-badge:hover {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 20px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  float: right;
  transition: 1s all;
}




/* ============================================================
   13. USER AVATAR / ICON
   ============================================================ */

.user-icon {
  padding: 5px;
  padding-inline: 10px;
  background-color: green;
  margin-left: 30px;
  border-radius: 50px;
  width: fit-content;
  position: fixed;
  top: 24px;
  right: 30px;
}

.avatar-img {
  height: 50px;
  width: 50px;
  padding: 5px;
  padding-inline: 10px;
  margin-left: 30px;
  border-radius: 50px;
  width: fit-content;
  position: fixed;
  top: 24px;
  right: 30px;
}

@media (max-width: 700px) {
  .user-icon {
    position: fixed;
    top: 90%;
    right: 20px;
  }

  .avatar-img {
    position: fixed;
    top: 80%;
    right: 20px;
  }
}


/* ============================================================
   14. BADGES
   ============================================================ */

.badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 6px 8px;
  border-radius: 3px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.badge.live    { background: #000000; color: #ffffff; border: 1px solid #ffffff; }
.badge.updated { background: #000000; color: #ffffff; border: 1px solid #ffffff; }
.badge.coming  { background: #000000; color: #ffffff; border: 1px solid #ffffff; }

.tool-badge {
  font-size: 9px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-free    { background: rgba(0, 230, 118, 0.12);  color: var(--green);   border: 1px solid rgba(0, 230, 118, 0.2); }
.badge-hot     { background: rgba(255, 165, 0, 0.12);  color: #ffaa00;        border: 1px solid rgba(255, 165, 0, 0.2); }
.badge-premium { background: rgba(0, 212, 255, 0.12);  color: var(--accent);  border: 1px solid rgba(0, 212, 255, 0.2); }
.badge-new     { background: rgba(180, 100, 255, 0.12); color: #cc80ff;       border: 1px solid rgba(180, 100, 255, 0.2); }
.badge-use     { background: rgba(154, 255, 100, 0.12); color: #74f65e;       border: 1px solid rgba(255, 255, 255, 0.2); }


/* ============================================================
   15. PHASE DIVIDER
   ============================================================ */

.phase-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 36px 0 20px;
  color: var(--text3);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
}

.phase-divider::before,
.phase-divider::after {
  content: '';
  flex: 1;
  height: 2px;
  background: var(--border);
}


/* ============================================================
   16. AFFILIATE
   ============================================================ */

.affiliate-chips {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.chip {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--border);
  color: var(--text2);
}

.chip.green {
  background: rgba(0, 230, 118, 0.1);
  color: var(--green);
  border-color: rgba(0, 230, 118, 0.2);
}


/* ============================================================
   17. UTILITIES
   ============================================================ */

/* (utility classes can be added here as the project grows) */


/* ============================================================
   18. FOOTER
   ============================================================ */

footer a {
  font-size: 12px;
}

footer .row {
  display: flex;
}

.footer {
  background-color: black;
  color: white;
  margin-top: 20px;
  display: flex;
  justify-content: start;
}

.footer .col {
  padding: 30px;
  padding-top: 50px;
  padding-bottom: 50px;
}

.footer .col-1 {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .col-2 {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.list-unstyled {
  list-style: none;
  padding: 0;
}

.list-unstyled li {
  margin-bottom: 4px;
}

.list-unstyled li a {
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.list-unstyled li a:hover {
  color: white;
  margin-left: 5px;
  transition: 0.2s all;
}

.list-unstyled a:hover {
  color: white;
}


/* ============================================================
   19. AUTH — LOGIN / SIGN UP PAGE
   ============================================================ */


  /* ── RIGHT PANEL (FORM) ── */
  .right-panel {
    max-width: 50%;
    min-width: 20%;
    /* background: var(--card); */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 28px;
    position: relative;
    /* border-left: 1px solid var(--border); */
    overflow-y: auto;
    margin-block: 50px;
    border-radius: 20px;
  }

  /* Tab switcher */
  .tabs {
    display: flex;
    background: #1e1e1e;
    border-radius: 12px;
    padding: 4px;
    margin-bottom: 36px;
  }
  .tab-btn {
    flex: 1;
    padding: 11px;
    background: none;
    border: none;
    color: var(--muted);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    border-radius: 9px;
    cursor: pointer;
    transition: all 0.25s;
  }
  .tab-btn.active {
    background: var(--caramel);
    color: #0a0a0a;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(198,139,58,0.35);
  }

  /* Form */
  .form-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
  }
  .form-subtitle {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 28px;
  }

  .form-group {
    margin-bottom: 18px;
  }
  .form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--muted);
    margin-bottom: 8px;
  }
  .form-group input {
    width: 100%;
    background: #1c1c1c;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 13px 16px;
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .form-group input::placeholder { color: #444; }
  .form-group input:focus {
    border-color: var(--caramel);
    box-shadow: 0 0 0 3px rgba(198,139,58,0.15);
  }

  .input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .forgot {
    text-align: right;
    margin-top: -10px;
    margin-bottom: 20px;
  }
  .forgot a {
    font-size: 12px;
    color: var(--caramel);
    text-decoration: none;
    transition: opacity 0.2s;
  }
  .forgot a:hover { opacity: 0.75; }

  .btn-main {
    width: 100%;
    padding: 14px;
    background: var(--caramel);
    color: #0a0a0a;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 6px 24px rgba(198,139,58,0.35);
    letter-spacing: 0.3px;
  }
  .btn-main:hover {
    background: var(--caramel-light);
    transform: translateY(-1px);
    box-shadow: 0 10px 32px rgba(198,139,58,0.45);
  }
  .btn-main:active { transform: translateY(0); }

  .divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 22px 0;
    color: var(--muted);
    font-size: 12px;
  }
  .divider::before, .divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
  }

  .btn-google {
    width: 100%;
    padding: 13px;
    background: #1c1c1c;
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: border-color 0.2s, background 0.2s;
  }
  .btn-google:hover {
    border-color: var(--caramel);
    background: #222;
  }
  .google-icon {
    width: 18px; height: 18px;
  }

  .terms {
    text-align: center;
    font-size: 11.5px;
    color: var(--muted);
    margin-top: 20px;
    line-height: 1.6;
  }
  .terms a {
    color: var(--caramel);
    text-decoration: none;
  }
  .terms a:hover { text-decoration: underline; }

  /* Success toast */
  .toast {
    position: fixed;
    top: 28px; right: 28px;
    background: #1a1a1a;
    border: 1px solid var(--caramel);
    border-radius: 12px;
    padding: 14px 20px;
    color: var(--white);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateX(180px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(.17,.67,.35,1.2);
    z-index: 999;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  }
  .toast.show { transform: translateX(0); opacity: 1; }
  .toast-dot { width: 8px; height: 8px; background: var(--caramel); border-radius: 50%; }

  /* Hidden form */
  .auth-form { display: none; }
  .auth-form.active { display: block; }

  /* Animations */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero-heading, .hero-sub, .stats-row, .brand {
    animation: fadeUp 0.6s ease both;
  }
  .hero-heading { animation-delay: 0.1s; }
  .hero-sub     { animation-delay: 0.2s; }
  .stats-row    { animation-delay: 0.3s; }

  .right-panel {
    animation: fadeUp 0.5s ease 0.05s both;
  }

  /* Choice panel */
  .choice-panel {
    text-align: center;
  }
  .btn-group-vertical a {
    text-decoration: none;
  }
  
  /* Mobile responsive */
  @media (max-width: 820px) {
    .left-panel { display: none; }
    .right-panel { 
      max-width: 100%; 
      min-width: unset; 
      padding: 40px 24px; 
      border-left: none;
      border-radius: 0;
    }
    body { justify-content: center; }
    .w-70 { width: 100% !important; }
  }
  
  /* Form validation */
  input:invalid { border-color: var(--error); }
  input:focus:invalid { box-shadow: 0 0 0 3px rgba(224,90,90,0.2); }
  
/* Dashboard Styles */
.dashboard-container { color: white; }
.dashboard-title { font-size: 3rem; font-weight: 700; background: linear-gradient(135deg, var(--caramel), #ffaa44); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.user-name { color: var(--caramel); }
.user-badge { background: rgba(198,139,58,0.2); padding: 8px 16px; border-radius: 25px; font-size: 0.9rem; border: 1px solid var(--caramel); }
.stat-card { background: rgba(255,255,255,0.05); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 2rem; text-align: center; transition: transform 0.3s, box-shadow 0.3s; cursor: pointer; }
.stat-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.stat-icon { font-size: 3rem; opacity: 0.8; margin-bottom: 1rem; }
.stat-number { font-size: 2.5rem; font-weight: 800; line-height: 1; }
.stat-label { font-size: 0.9rem; opacity: 0.8; text-transform: uppercase; letter-spacing: 1px; }
.bg-gradient-primary { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.bg-gradient-success { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.bg-gradient-warning { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.bg-gradient-info { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
.dashboard-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 2rem; }
.card-title { color: var(--caramel); font-weight: 600; border-bottom: 2px solid rgba(198,139,58,0.3); padding-bottom: 1rem; margin-bottom: 1.5rem; }
.tool-link { display: block; padding: 1rem; background: rgba(255,255,255,0.05); border-radius: 12px; color: white; text-decoration: none; transition: all 0.3s; border: 1px solid transparent; }
.tool-link:hover { background: rgba(198,139,58,0.2); border-color: var(--caramel); transform: translateX(8px); }
@media (max-width: 768px) { .dashboard-title { font-size: 2rem; } .stat-number { font-size: 2rem; } }



/* ============================================================
   20. ANIMATIONS
   ============================================================ */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-15px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes ticker-scroll {
  0%   { transform: translate3d(0, 0, 0); visibility: visible; }
  100% { transform: translate3d(-100%, 0, 0); }
}

@keyframes side {
  0%   { transform: translateX(100%); }
  100% { transform: translateX(0); }
}

@keyframes authFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* TOols Layout  */

.tool_btn{
  background-color: transparent;
  color: #C68964;
  font-size: 16px;
  padding: 5px;
  transition: 0.5s all; 
  display: flex;
  justify-content: flex-end;
  
}
.tool_btn:hover {
  color: white;
}
.top-stats a {
  text-decoration: none;  
  color: #C68964;
}