:root {
    --purple-dark:  #2d0a6e;
    --purple-main:  #3d1a8a;
    --purple-mid:   #4e28a0;
    --purple-light: #6b46c1;
    --green-main:   #1a9e3f;
    --green-bright: #22c55e;
    --white:        #ffffff;
    --gray-bg:      #f0f0f5;
    --gray-light:   #f7f7fb;
    --gray-border:  #e0e0ee;
    --text-dark:    #1a1a2e;
    --text-mid:     #4a4a6a;
    --text-light:   #8888aa;
    --shadow:       0 2px 16px rgba(61,26,138,0.10);
    --shadow-hover: 0 8px 28px rgba(61,26,138,0.14);
    --font:         'Poppins', sans-serif;
    --font-display: 'Montserrat', sans-serif;
    --radius:       12px;
    --radius-sm:    8px;
    --radius-xs:    6px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    background: var(--gray-bg);
    color: var(--text-dark);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== TOPBAR ACCENT ===== */
.topbar-accent {
    height: 4px;
    background: linear-gradient(90deg, var(--purple-dark), var(--purple-light), var(--green-main));
}

/* ===== NAVBAR ===== */
.navbar-oneplay {
    background: var(--purple-dark);
    height: 64px;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: 0 2px 12px rgba(0,0,0,0.22);
    gap: 16px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 900;
    font-size: 20px;
    letter-spacing: 1.5px;
    font-family: var(--font-display);
    text-decoration: none;
    flex-shrink: 0;
}
.logo-icon {
    width: 38px; height: 38px;
    border: 2.5px solid rgba(255,255,255,0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #fff;
    transition: border-color .2s;
}
.nav-logo:hover .logo-icon { border-color: #fff; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}
.nav-links a {
    color: rgba(255,255,255,0.75);
    font-size: 13.5px;
    font-weight: 500;
    padding: 7px 14px;
    border-radius: 20px;
    transition: all .2s;
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav-links a:hover, .nav-links a.active {
    color: #fff;
    background: rgba(255,255,255,0.12);
}
.nav-links .charity-link { border: 1px solid rgba(255,255,255,0.2); }
.nav-links .ussd-link { font-weight: 600; }

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.wallet-btn {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-sm);
    padding: 7px 14px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background .2s;
    text-decoration: none;
}
.wallet-btn:hover { background: rgba(255,255,255,0.18); color: #fff; }
.wallet-amount { font-size: 14px; font-weight: 700; display: block; }
.wallet-deposit { font-size: 10px; color: rgba(255,255,255,0.5); display: block; font-weight: 400; }
.account-btn {
    width: 38px; height: 38px;
    border: 2px solid rgba(255,255,255,0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
}
.account-btn:hover { border-color: #fff; color: #fff; }
.btn-login {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.4);
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    padding: 7px 18px;
    border-radius: var(--radius-sm);
    transition: all .2s;
    cursor: pointer;
}
.btn-login:hover { background: rgba(255,255,255,0.1); }
.btn-register {
    background: var(--green-main);
    border: none;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    padding: 7px 18px;
    border-radius: var(--radius-sm);
    transition: background .2s;
    cursor: pointer;
}
.btn-register:hover { background: #158a3a; }
.mobile-toggle {
    display: none;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
}

/* ===== MOBILE OFFCANVAS ===== */
.offcanvas-purple { background: var(--purple-dark); }
.offcanvas-purple .offcanvas-header { border-bottom: 1px solid rgba(255,255,255,0.1); }
.mobile-nav-links { display: flex; flex-direction: column; gap: 2px; margin-top: 8px; }
.mobile-nav-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 8px;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: color .2s;
}
.mobile-nav-links a i { width: 20px; text-align: center; }
.mobile-nav-links a:hover { color: #fff; }

/* ===== HERO SECTION ===== */
.hero-section {
    background: var(--gray-bg);
    padding: 36px 32px 32px;
}
/* .hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 28px;
    align-items: start;
} */
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 28px;
}

/* PLAY CARD */
.play-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    animation: fadeUp .45s ease both;
}
.play-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}
.play-card h1 {
    font-size: 28px;
    font-weight: 900;
    color: var(--text-dark);
    font-family: var(--font-display);
    margin: 0;
    line-height: 1.2;
}
.how-to-btn {
    background: var(--purple-main);
    color: #fff;
    border: none;
    border-radius: var(--radius-xs);
    padding: 9px 18px;
    font-size: 12.5px;
    font-weight: 700;
    font-family: var(--font);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: background .2s;
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: 12px;
}
.how-to-btn i { color: #ffcc00; }
.how-to-btn:hover { background: var(--purple-mid); }

.play-desc {
    color: var(--text-mid);
    font-size: 12.5px;
    line-height: 1.65;
    margin-bottom: 22px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-border);
}
.form-step { margin-bottom: 22px; }
.step-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.step-label i { color: var(--purple-main); font-size: 15px; }
.help-icon {
    width: 17px; height: 17px;
    background: var(--gray-border);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--text-light);
    cursor: pointer;
    font-style: normal;
    margin-left: 2px;
    font-weight: 700;
}

/* Custom select */
.custom-select-wrap { position: relative; }
.custom-select-wrap select,
.form-select-oneplay {
    width: 100%;
    background: var(--white);
    border: 1.5px solid var(--gray-border);
    border-radius: var(--radius-sm);
    padding: 12px 40px 12px 14px;
    font-size: 13.5px;
    font-family: var(--font);
    color: var(--text-dark);
    appearance: none;
    cursor: pointer;
    outline: none;
    font-weight: 500;
    transition: border-color .2s, box-shadow .2s;
}
.custom-select-wrap select:focus,
.form-select-oneplay:focus {
    border-color: var(--purple-main);
    box-shadow: 0 0 0 3px rgba(61,26,138,0.1);
}
.custom-select-wrap::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    pointer-events: none;
    font-size: 11px;
}

/* Phone input - match select & ticket */
.form-input-oneplay {
    width: 100%;
    background: var(--white);
    border: 1.5px solid var(--gray-border);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    font-size: 13.5px;
    font-family: var(--font);
    color: var(--text-dark);
    outline: none;
    font-weight: 500;
    transition: border-color .2s, box-shadow .2s;
}

.form-input-oneplay:focus {
    border-color: var(--purple-main);
    box-shadow: 0 0 0 3px rgba(61,26,138,0.1);
}

/* Ticket counter */
.ticket-counter { display: flex; align-items: center; gap: 10px; }
.counter-btn {
    width: 44px; height: 44px;
    border: 1.5px solid var(--gray-border);
    border-radius: var(--radius-sm);
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--text-mid);
    transition: all .18s;
    flex-shrink: 0;
}
.counter-btn:hover:not(:disabled) {
    border-color: var(--purple-main);
    color: var(--purple-main);
    background: rgba(61,26,138,0.04);
}
.counter-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.counter-input {
    flex: 1;
    text-align: center;
    border: 1.5px solid var(--gray-border);
    border-radius: var(--radius-sm);
    padding: 10px;
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font);
    color: var(--text-dark);
    outline: none;
    background: var(--white);
    transition: border-color .2s;
    cursor: default;
}

/* Wallet pay row */
.wallet-pay-row {
    border: 1.5px solid var(--gray-border);
    border-radius: 10px;
    padding: 14px 16px;
    cursor: pointer;
    transition: border-color .2s, background .2s;
}
.wallet-pay-row:hover { border-color: var(--purple-main); background: rgba(61,26,138,0.02); }
.wallet-pay-row.selected { border-color: var(--purple-main); background: rgba(61,26,138,0.04); }
.wallet-pay-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.wallet-pay-header i { color: var(--purple-mid); }
.wallet-pay-info { display: flex; align-items: center; gap: 10px; font-size: 12.5px; color: var(--text-mid); }
.wallet-icon {
    width: 32px; height: 32px;
    border: 1.5px solid var(--gray-border);
    border-radius: var(--radius-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--purple-main);
}
.wallet-balance { font-weight: 700; color: var(--text-dark); }
.deposit-link { color: var(--purple-main); font-weight: 600; margin-left: 4px; }
.deposit-link:hover { text-decoration: underline; }

/* CTA Button */
.btn-complete {
    width: 100%;
    background: var(--green-main);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 800;
    font-family: var(--font);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background .2s, transform .1s, box-shadow .2s;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 14px rgba(26,158,63,0.3);
}
.btn-complete:hover { background: #158a3a; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26,158,63,0.38); }
.btn-complete:active { transform: translateY(0); }
.price-tag {
    background: rgba(255,255,255,0.2);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

/* DISABLED STATE */
.btn-complete:disabled,
.btn-complete.btn-disabled {
    background: #cfcfcf !important;
    box-shadow: none !important;
    cursor: not-allowed !important;
    opacity: 0.65;
    transform: none !important;
}

/* Remove hover effect when disabled */
.btn-complete:disabled:hover,
.btn-complete.btn-disabled:hover {
    background: #cfcfcf !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Optional: dim price tag when disabled */
.btn-complete:disabled .price-tag {
    background: rgba(0,0,0,0.1);
}

/* ===== PROMO BANNER ===== */
.promo-slider {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 420px; /* keep your height */
    overflow: hidden;
    border-radius: 16px;
}

.promo-slide {
    position: absolute;
    inset: 0;              /* keep full container size */
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: translateX(100%); /* start off-screen right */
    transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
    z-index: 0;
}

.promo-slide.active {
    transform: translateX(0); /* slide into view */
    opacity: 1;
    z-index: 1;
}

.promo-slide.prev {
    transform: translateX(-100%); /* slide out left */
    opacity: 0;
    z-index: 0;
}

/* ===== DRAWS SECTION ===== */
.draws-section-wrap { background: var(--gray-bg); padding-bottom: 8px; }
.section-inner { max-width: 1100px; margin: 0 auto; padding: 36px 32px; }
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.section-title {
    font-size: 21px;
    font-weight: 900;
    color: var(--text-dark);
    font-family: var(--font-display);
    margin: 0;
}
.carousel-nav { display: flex; gap: 8px; }
.carousel-btn {
    width: 36px; height: 36px;
    border: 1.5px solid var(--gray-border);
    border-radius: var(--radius-sm);
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-mid);
    font-size: 12px;
    transition: all .2s;
    box-shadow: var(--shadow);
}
.carousel-btn:hover { border-color: var(--purple-main); color: var(--purple-main); }

.draws-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.draw-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: var(--shadow);
    border: 1.5px solid var(--gray-border);
    cursor: pointer;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.draw-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: var(--purple-light);
}
.draw-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-border);
}
.draw-station-logo {
    width: 38px; height: 38px;
    border-radius: var(--radius-xs);
    background: var(--gray-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    border: 1px solid var(--gray-border);
}
.draw-card-title { font-size: 13px; font-weight: 700; color: var(--text-dark); line-height: 1.3; }
.draw-card-date { font-size: 11px; color: var(--text-light); margin-top: 3px; }
.draw-info-row { margin-bottom: 10px; }
.draw-info-label { font-size: 10px; text-transform: uppercase; letter-spacing: .6px; color: var(--text-light); font-weight: 700; margin-bottom: 4px; }
.draw-prize { display: flex; align-items: center; justify-content: space-between; }
.draw-prize-amount { font-size: 16px; font-weight: 900; color: var(--text-dark); font-family: var(--font-display); }
.draw-prize-icon { font-size: 18px; }
.draw-winner { display: flex; align-items: center; justify-content: space-between; }
.draw-winner-number { font-size: 12.5px; font-weight: 600; color: var(--text-mid); }
.draw-winner-medal { font-size: 18px; }

/* ===== CHARITY SECTION ===== */
.charity-section-wrap { background: var(--white); }
.charity-section-wrap .section-inner { padding-top: 36px; padding-bottom: 36px; border-top: 1px solid var(--gray-border); }
.charity-inner { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.charity-text { flex: 1; min-width: 200px; }
.charity-text p { font-size: 15px; font-weight: 500; color: var(--text-mid); line-height: 1.65; margin-bottom: 18px; }
.charity-text p strong { color: var(--text-dark); }
.btn-charity {
    background: var(--purple-main);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    padding: 12px 22px;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    transition: background .2s;
    text-decoration: none;
}
.btn-charity:hover { background: var(--purple-mid); color: #fff; }
.charity-arrow-wrap { flex-shrink: 0; }
.charity-total {
    background: var(--green-main);
    color: #fff;
    border-radius: var(--radius);
    padding: 24px 36px;
    text-align: center;
    min-width: 270px;
    box-shadow: 0 4px 20px rgba(26,158,63,0.25);
}
.charity-amount { font-family: var(--font-display); font-size: 30px; font-weight: 900; letter-spacing: -1px; line-height: 1; }
.charity-counting { font-size: 13px; font-weight: 500; opacity: 0.85; margin-top: 5px; }

/* ===== PARTNERS ===== */
.partners-section-wrap { background: var(--white); border-top: 1px solid var(--gray-border); }
.partners-section-wrap .section-inner { padding: 28px 32px 40px; text-align: center; }
.partners-title { font-size: 12px; color: var(--text-light); font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px; }
.partners-logos { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.partner-logo {
    height: 52px; width: 110px;
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--gray-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 10.5px;
    font-weight: 700;
    color: var(--text-mid);
    padding: 6px 8px;
    gap: 3px;
    transition: border-color .2s;
    cursor: pointer;
}
.partner-logo:hover { border-color: var(--purple-light); }

/* ===== MODAL ===== */
.modal-oneplay { border-radius: var(--radius); overflow: hidden; }
.modal-oneplay .modal-header { background: var(--purple-dark); color: #fff; border-bottom: none; }
.modal-oneplay .modal-title { font-weight: 800; font-size: 16px; }
.modal-oneplay .btn-close { filter: invert(1) opacity(.7); }
.modal-oneplay .modal-body { padding: 26px; }
.step-card { display: flex; gap: 16px; margin-bottom: 20px; align-items: flex-start; }
.step-num {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--purple-main);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 15px;
    flex-shrink: 0;
}
.step-body h6 { font-weight: 700; color: var(--text-dark); margin-bottom: 4px; font-size: 14px; }
.step-body p { font-size: 13px; color: var(--text-mid); line-height: 1.55; margin: 0; }
.how-to-tip {
    background: var(--gray-bg);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    font-size: 12.5px;
    color: var(--text-mid);
    border-left: 3px solid var(--purple-main);
    line-height: 1.6;
}

/* ===== FOOTER ===== */
.site-footer { background: var(--purple-dark); color: rgba(255,255,255,0.8); padding: 44px 32px 24px; margin-top: 0; }
.footer-grid {
    max-width: 1100px;
    margin: 0 auto 32px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 32px;
}
.footer-logo { margin-bottom: 14px; font-size: 18px; }
.footer-desc { font-size: 12.5px; line-height: 1.75; opacity: .7; margin-bottom: 18px; }
.footer-socials { display: flex; gap: 10px; }
.social-icon {
    width: 34px; height: 34px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    transition: all .2s;
    cursor: pointer;
    text-decoration: none;
}
.social-icon:hover { background: rgba(255,255,255,0.22); color: #fff; }
.footer-col h6 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.68); transition: color .2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    flex-wrap: wrap;
    gap: 8px;
}

/* ===== TOAST ===== */
.toast-oneplay {
    position: fixed;
    bottom: 24px; right: 24px;
    background: var(--green-main);
    color: #fff;
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 13px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    z-index: 9999;
    transform: translateY(80px);
    opacity: 0;
    transition: all .35s cubic-bezier(.175,.885,.32,1.275);
    display: flex;
    align-items: center;
    gap: 10px;
}
.toast-oneplay.show { transform: translateY(0); opacity: 1; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-inner { grid-template-columns: 1fr; }
    .promo-banner { min-height: 200px; }
    .promo-amount { font-size: 32px; }
    .draws-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .navbar-oneplay { padding: 0 16px; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-toggle { display: flex; }
    .hero-section { padding: 20px 16px; }
    .section-inner { padding: 24px 16px; }
    .charity-inner { flex-direction: column; }
    .charity-total { width: 100%; min-width: unset; }
    .charity-arrow-wrap { transform: rotate(90deg); }
}
@media (max-width: 540px) {
    .draws-grid { grid-template-columns: 1fr 1fr; overflow-x: auto; }
    .footer-grid { grid-template-columns: 1fr; }
    .nav-right .wallet-btn { display: none; }
    .play-card { padding: 20px 16px; }
}
.global-toast {
    position: fixed;
    right: 25px;
    background: #28a745;
    color: white;
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 14px;
    opacity: 0;
    transition: all .35s ease;
    z-index: 9999;
}

/* Top toast */
.top-toast {
    top: 25px;
    transform: translateY(-15px); /* slides down */
}

/* Bottom toast */
.bottom-toast {
    bottom: 25px;
    transform: translateY(15px); /* slides up */
}

/* Show state for both */
.global-toast.show {
    opacity: 1;
    transform: translateY(0);
}