/* ============================================================
   EZYTRADE — MAIN STYLESHEET
   Diambil dari versi single-page, dipisahkan untuk multi-page
   ============================================================ */

/* ---------- VARIABEL WARNA ---------- */
:root{
    --bg:#0B0B0F; --bg-alt:#0D0D14; --panel:#101018;
    --text-70:rgba(255,255,255,.7); --text-65:rgba(255,255,255,.65);
    --text-60:rgba(255,255,255,.6); --text-55:rgba(255,255,255,.55);
    --text-50:rgba(255,255,255,.5); --text-45:rgba(255,255,255,.45);
    --text-40:rgba(255,255,255,.4); --text-35:rgba(255,255,255,.35);
    --text-30:rgba(255,255,255,.3); --text-25:rgba(255,255,255,.25);
    --border-10:rgba(255,255,255,.1); --border-08:rgba(255,255,255,.08);
    --border-07:rgba(255,255,255,.07);
    --surface-06:rgba(255,255,255,.06); --surface-05:rgba(255,255,255,.05);
    --surface-04:rgba(255,255,255,.04); --surface-03:rgba(255,255,255,.03);
    --surface-02:rgba(255,255,255,.02);
  }
  
  /* ---------- BASE ---------- */
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { 
    background: var(--bg); 
    color: #fff; 
    font-family: 'Inter', sans-serif; 
    overflow-x: hidden; 
    cursor: default;
    min-height: 100vh;
  }
  body.light { color: #0B0B0F; }
  ::selection { background: #7C5CFF; color: #fff; }
  ::-webkit-scrollbar { width: 8px; }
  ::-webkit-scrollbar-track { background: var(--bg); }
  ::-webkit-scrollbar-thumb { background: #2a2a36; border-radius: 4px; }
  
  a { text-decoration: none; color: inherit; }
  
  /* ---------- TYPOGRAPHY ---------- */
  .font-display { font-family: 'Space Grotesk', sans-serif; }
  .font-body { font-family: 'Inter', sans-serif; }
  .font-mono { font-family: 'JetBrains Mono', monospace; }
  
  .text-gradient {
    background: linear-gradient(90deg, #7C5CFF, #B388FF 50%, #F0B90B);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  /* ---------- NAVBAR ---------- */
  #navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    transition: background .3s ease, border-color .3s ease;
    border-bottom: 1px solid transparent;
  }
  #navbar.scrolled {
    background: rgba(11,11,15,.8);
    backdrop-filter: blur(16px);
    border-color: var(--surface-06);
  }
  .nav-link {
    position: relative;
    color: var(--text-70);
    transition: color .25s ease;
    font-size: .875rem;
  }
  .nav-link:hover { color: #fff; }
  .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1px;
    background: #7C5CFF;
    transition: width .25s ease;
  }
  .nav-link:hover::after { width: 100%; }
  
  .nav-item { position: relative; }
  .nav-dropdown {
    position: absolute;
    left: 0;
    top: 100%;
    padding-top: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }
  .nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  /* Mobile Menu */
  #menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    transition: transform .3s ease, opacity .3s ease;
  }
  #menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  #menu-toggle.open span:nth-child(2) { opacity: 0; }
  #menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  
  #mobile-menu {
    max-height: 0;
    overflow: hidden;
    background: rgba(11,11,15,.98);
    backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    padding: 0 24px;
    transition: max-height .4s ease, padding .4s ease;
    border-bottom: 1px solid var(--surface-06);
  }
  #mobile-menu.open {
    max-height: 600px;
    overflow-y: auto;
    padding: 16px 24px 28px;
  }
  #mobile-menu a, #mobile-menu button {
    text-align: left;
    padding: 10px 0;
    color: var(--text-70);
    border-bottom: 1px solid var(--surface-05);
    background: none;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    font-size: .95rem;
  }
  
  /* Responsive Nav */
  .nav-desktop-only { display: none; }
  .nav-mobile-only { display: flex; }
  @media (min-width: 1024px) {
    .nav-desktop-only { display: flex; }
    .nav-mobile-only { display: none; }
  }
  
  /* ---------- GLASS / BUTTONS ---------- */
  .glass {
    background: var(--surface-04);
    border: 1px solid var(--border-08);
    backdrop-filter: blur(12px);
  }
  .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(90deg, #00D084, #00b873);
    color: #06120c;
    font-weight: 600;
    font-size: .9rem;
    padding: 13px 26px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 0 0 rgba(0,208,132,.4);
    transition: box-shadow .35s ease, transform .25s ease;
  }
  .btn-primary:hover {
    box-shadow: 0 0 32px 4px rgba(0,208,132,.45);
    transform: translateY(-2px);
  }
  .btn-primary.btn-lg { padding: 17px 34px; font-size: 1rem; }
  .dot-green {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #06120c;
  }
  .btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.15);
    color: #fff;
    padding: 13px 26px;
    border-radius: 999px;
    font-size: .9rem;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
    transition: background .25s ease, border-color .25s ease, transform .25s ease;
  }
  .btn-ghost:hover {
    background: var(--surface-06);
    border-color: var(--text-30);
    transform: translateY(-2px);
  }
  
  /* ---------- HERO ---------- */
  .hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 6rem;
    padding-bottom: 6rem;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(ellipse 60% 50% at 20% 20%, rgba(124,92,255,.18), transparent 60%),
                radial-gradient(ellipse 50% 40% at 85% 30%, rgba(240,185,11,.10), transparent 60%),
                var(--bg);
  }
  .hero-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: .35;
    background-image: linear-gradient(var(--surface-04) 1px, transparent 1px),
                      linear-gradient(90deg, var(--surface-04) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 30%, transparent 75%);
  }
  
  /* ---------- SECTIONS ---------- */
  .section {
    padding: 80px 0;
    position: relative;
  }
  @media (min-width: 768px) { .section { padding: 110px 0; } }
  .section-head { max-width: 640px; }
  .eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: .72rem;
    letter-spacing: .12em;
    color: #7C5CFF;
    text-transform: uppercase;
  }
  .section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-top: 10px;
    letter-spacing: -0.02em;
  }
  .section-sub {
    color: var(--text-50);
    margin-top: 14px;
    font-size: 1.05rem;
  }
  
  /* ---------- FEATURE CARDS ---------- */
  .feature-card {
    background: var(--surface-03);
    border: 1px solid var(--border-07);
    border-radius: 16px;
    padding: 26px;
    transition: transform .35s ease, border-color .35s ease, background .35s ease;
  }
  .feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(124,92,255,.4);
    background: rgba(124,92,255,.05);
  }
  .f-icon { font-size: 1.3rem; color: #7C5CFF; margin-bottom: 14px; }
  .feature-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.02rem;
    margin-bottom: 8px;
  }
  .feature-card p {
    color: var(--text-45);
    font-size: .88rem;
    line-height: 1.5;
  }
  
  /* ---------- PRICING CARDS ---------- */
  .price-card {
    position: relative;
    background: var(--surface-03);
    border: 1px solid var(--border-08);
    border-radius: 20px;
    padding: 30px 24px;
    text-align: center;
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
  }
  .price-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,255,255,.2);
  }
  .price-card.popular {
    border-color: rgba(124,92,255,.5);
    background: linear-gradient(180deg, rgba(124,92,255,.1), rgba(124,92,255,.02));
  }
  .price-card .badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #F0B90B, #ff9d2f);
    color: #1a1300;
    font-size: .7rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 999px;
    white-space: nowrap;
  }
  .price-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-70);
  }
  .price-card .price {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.9rem;
    font-weight: 700;
    margin-top: 14px;
  }
  .price-card .price-old {
    font-family: 'JetBrains Mono', monospace;
    font-size: .95rem;
    color: var(--text-35);
    text-decoration: line-through;
    margin-top: 18px;
  }
  
  .badge-shine {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #F0B90B, #ff9d2f);
    color: #1a1300;
    font-size: .7rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 999px;
    white-space: nowrap;
    background-size: 200% 100%;
    animation: badgeShine 2.4s ease-in-out infinite, badgePulse 2.4s ease-in-out infinite;
  }
  @keyframes badgeShine {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  @keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(240,185,11,.5); }
    50% { box-shadow: 0 0 14px 3px rgba(240,185,11,.35); }
  }
  
  .plan-features {
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    text-align: left;
  }
  .plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: .85rem;
    color: #d1d5db;
    line-height: 1.5;
  }
  .bonus-strip {
    margin-top: 16px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(0,208,132,.08);
    border: 1px solid rgba(0,208,132,.25);
    font-size: .76rem;
    color: #00D084;
    text-align: center;
  }
  
  /* ---------- FAQ ---------- */
  .faq-item { border-bottom: 1px solid var(--border-08); }
  .faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 4px;
    text-align: left;
    background: none;
    border: none;
    color: inherit;
    font-weight: 500;
    font-size: 1rem;
    gap: 16px;
    cursor: pointer;
  }
  .faq-q span { color: #7C5CFF; font-size: 1.3rem; transition: transform .3s ease; flex-shrink: 0; }
  .faq-item.open .faq-q span { transform: rotate(45deg); }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .4s ease;
  }
  .faq-item.open .faq-a { max-height: 240px; padding-bottom: 22px; }
  .faq-a p {
    color: var(--text-50);
    font-size: .92rem;
    line-height: 1.6;
    padding-right: 30px;
  }
  
  /* ---------- BLOG CARDS ---------- */
  .blog-card {
    background: var(--surface-03);
    border: 1px solid var(--border-08);
    border-radius: 18px;
    padding: 24px;
    transition: transform .3s ease, border-color .3s ease;
  }
  .blog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(124,92,255,.35);
  }
  .blog-cat {
    font-family: 'JetBrains Mono', monospace;
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #7C5CFF;
  }
  .blog-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    margin-top: 10px;
  }
  .blog-card p {
    color: var(--text-45);
    font-size: .87rem;
    margin-top: 8px;
    line-height: 1.55;
  }
  
  /* ---------- TESTIMONIALS ---------- */
  .testi-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
  }
  .testi-card {
    background: var(--surface-03);
    border: 1px solid var(--border-08);
    border-radius: 18px;
    padding: 28px;
  }
  .testi-card p { margin-top: 14px; color: var(--text-70); font-size: .95rem; line-height: 1.6; }
  .testi-name { display: block; margin-top: 18px; color: var(--text-40); font-size: .8rem; }
  .stars { color: #F0B90B; margin-top: 8px; letter-spacing: 2px; }
  
  /* ---------- COMPARISON TABLE ---------- */
  .compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
  }
  .compare-table th, .compare-table td {
    padding: 14px 16px;
    text-align: center;
    border-bottom: 1px solid var(--border-07);
    font-size: .85rem;
  }
  .compare-table th {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    color: #fff;
  }
  .compare-table td:first-child, .compare-table th:first-child {
    text-align: left;
    color: var(--text-60);
  }
  .compare-table .yes { color: #00D084; }
  .compare-table .no { color: var(--text-25); }
  
  /* ---------- TIMELINE ---------- */
  .timeline { position: relative; max-width: 720px; margin: 0 auto; padding-left: 40px; }
  .timeline-line {
    position: absolute;
    left: 11px;
    top: 6px;
    bottom: 6px;
    width: 1px;
    background: linear-gradient(180deg, #7C5CFF, rgba(124,92,255,.05));
  }
  .timeline-step { position: relative; padding-bottom: 46px; padding-left: 28px; }
  .timeline-step:last-child { padding-bottom: 0; }
  .t-num {
    position: absolute;
    left: -40px;
    top: -2px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--bg);
    border: 1px solid #7C5CFF;
    color: #7C5CFF;
    font-size: .68rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .t-body h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1.08rem; }
  .t-body p { color: var(--text-45); margin-top: 4px; font-size: .92rem; }
  
  /* ---------- MODAL ---------- */
  .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.65);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
    padding: 1rem;
  }
  .modal-overlay.is-open { display: flex; }
  .modal-box {
    background: var(--panel);
    border: 1px solid var(--border-10);
    border-radius: 18px;
    width: 100%;
    max-width: 420px;
    padding: 28px;
    position: relative;
    max-height: 88vh;
    overflow-y: auto;
  }
  .modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    color: var(--text-50);
    cursor: pointer;
    background: none;
    border: none;
    font-size: 20px;
  }
  .auth-input {
    width: 100%;
    border-radius: 10px;
    padding: 10px 14px;
    margin-top: 6px;
    font-size: 14px;
    background: var(--surface-04);
    border: 1px solid var(--border-10);
    color: #fff;
  }
  .auth-input:focus { outline: 2px solid #7C5CFF; outline-offset: 1px; }
  .auth-label { font-size: .75rem; color: var(--text-50); }
  
  /* ---------- FOOTER ---------- */
  .footer { border-top: 1px solid var(--surface-06); }
  .footer h4 {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-40);
    margin-bottom: 14px;
  }
  .footer a {
    display: block;
    color: var(--text-60);
    font-size: .9rem;
    padding: 5px 0;
    transition: color .25s ease;
  }
  .footer a:hover { color: #7C5CFF; }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    border-top: 1px solid var(--surface-06);
    margin-top: 40px;
    padding-top: 24px;
    font-size: .8rem;
    color: var(--text-40);
  }
  
  /* ---------- WA FLOATING ---------- */
  .wa-float {
    position: fixed;
    bottom: 22px;
    right: 22px;
    z-index: 90;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #06120c;
    text-decoration: none;
    border-radius: 999px;
    padding: 14px;
    box-shadow: 0 8px 24px rgba(37,211,102,.4);
    transition: transform .2s ease;
  }
  .wa-float:hover { transform: scale(1.05); }
  .wa-float .wa-label { font-size: .82rem; font-weight: 600; white-space: nowrap; padding-right: 4px; }
  @media (max-width: 640px) {
    .wa-float .wa-label { display: none; }
  }
  
  /* ---------- TICKER ---------- */
  #ticker-wrap {
    background: rgba(16,16,24,.7);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--surface-06);
    overflow: hidden;
    height: 34px;
    display: flex;
    align-items: center;
  }
  #ticker {
    display: inline-flex;
    white-space: nowrap;
    will-change: transform;
    padding-left: 100%;
  }
  
  /* ---------- CURSOR GLOW ---------- */
  #cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(circle, rgba(124,92,255,.12) 0%, rgba(124,92,255,0) 70%);
    transform: translate(-50%, -50%);
    will-change: transform;
  }
  @media (max-width: 768px) { #cursor-glow { display: none; } }
  
  /* ---------- SCROLL PROGRESS ---------- */
  #scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    z-index: 60;
    background: var(--surface-05);
  }
  #scroll-progress span {
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #7C5CFF, #F0B90B);
  }
  
  /* ---------- UTILITY ---------- */
  .hidden { display: none !important; }
  .is-hidden { display: none; }
  .max-w-7xl {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  @media (min-width: 1024px) {
    .max-w-7xl { padding-left: 2.5rem; padding-right: 2.5rem; }
  }
  .relative { position: relative; }
  .text-center { text-align: center; }
  .text-white\/50 { color: var(--text-50); }
  .text-white\/60 { color: var(--text-60); }
  .text-white\/70 { color: var(--text-70); }
  
  /* ---------- PAGE TRANSITION ---------- */
  .page-transition {
    animation: fadeIn .4s ease;
  }
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  /* ---------- FORM STYLES ---------- */
  .form-group { margin-bottom: 1rem; }
  .form-group label { display: block; font-size: .75rem; color: var(--text-50); margin-bottom: 4px; }
  .form-input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    background: var(--surface-04);
    border: 1px solid var(--border-10);
    color: #fff;
    font-size: .9rem;
  }
  .form-input:focus { outline: 2px solid #7C5CFF; outline-offset: 1px; }
  .form-input::placeholder { color: var(--text-35); }
  
  /* ---------- PROFILE ---------- */
  .profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--surface-05);
    border: 2px solid var(--border-10);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    overflow: hidden;
  }
  .profile-avatar img { width: 100%; height: 100%; object-fit: cover; }
  
  /* ---------- ADMIN ---------- */
  .admin-sidebar {
    background: var(--panel);
    border-right: 1px solid var(--border-08);
    min-height: 100vh;
    padding: 24px;
  }
  .admin-sidebar a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    color: var(--text-60);
    font-size: .9rem;
    transition: all .2s ease;
  }
  .admin-sidebar a:hover, .admin-sidebar a.active {
    background: var(--surface-06);
    color: #fff;
  }
  .admin-stat-card {
    background: var(--surface-03);
    border: 1px solid var(--border-08);
    border-radius: 16px;
    padding: 20px;
  }
  
  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 768px) {
    .section { padding: 50px 0; }
    .hero-section { min-height: auto; padding-top: 8rem; padding-bottom: 4rem; }
  }
  /* ==========================================
   BACK TO TOP BUTTON
   ========================================== */
#backToTop {
  position: fixed;
  bottom: 80px;
  right: 22px;
  z-index: 89;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(124,92,255,.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all .3s ease;
  box-shadow: 0 4px 16px rgba(124,92,255,.4);
}
#backToTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#backToTop:hover {
  background: #7C5CFF;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(124,92,255,.6);
}
#backToTop svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  stroke-width: 2.5;
}

/* ==========================================
 TOAST NOTIFICATION
 ========================================== */
.toast-container {
  position: fixed;
  top: 90px;
  right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.toast {
  min-width: 280px;
  max-width: 380px;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: .85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(12px);
  animation: toastIn .4s ease, toastOut .4s ease 2.6s forwards;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
}
.toast.success {
  background: rgba(0,208,132,.15);
  border: 1px solid rgba(0,208,132,.3);
  color: #00D084;
}
.toast.error {
  background: rgba(255,77,77,.15);
  border: 1px solid rgba(255,77,77,.3);
  color: #FF4D4D;
}
.toast.info {
  background: rgba(124,92,255,.15);
  border: 1px solid rgba(124,92,255,.3);
  color: #7C5CFF;
}
.toast.warning {
  background: rgba(240,185,11,.15);
  border: 1px solid rgba(240,185,11,.3);
  color: #F0B90B;
}
@keyframes toastIn {
  from { opacity: 0; transform: translateX(100px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes toastOut {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(100px); }
}