/* ====== RESET CƠ BẢN ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =============================== */
/*   NỀN MỚI - BLUE + GOLD LUX     */
/* =============================== */

body {
    font-family: 'Rajdhani', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background:
        radial-gradient(circle at 12% 0%, #314a86 0%, transparent 55%),
        radial-gradient(circle at 85% 100%, rgba(255, 207, 77, 0.18) 0%, transparent 60%),
        radial-gradient(circle at 50% 0%, #10162f 0%, #070912 50%, #02040b 100%);
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* ===== LỚP BACKGROUND ẢNH DƯỚI CÙNG ===== */
.bg-image {
    position: fixed;
    inset: 0;
    background-image: url("../images/na777-background.png"); /* ĐỔI TÊN FILE Ở ĐÂY */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    z-index: -10;          /* thấp nhất */
    pointer-events: none;  /* không chặn click */
    opacity: 0.9;          /* nếu muốn mờ hơn thì 0.6–0.8 */
}

/* ----- LỚP 1: SAO MỊN + TRÔI NHẸ ----- */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;

    /* sao siêu nhỏ, tự nhiên hơn */
    background-image:
        radial-gradient(circle, rgba(255,255,255,0.35) 1px, transparent 1px),
        radial-gradient(circle, rgba(255,255,255,0.18) 1px, transparent 1px);
    background-size: 140px 140px, 220px 220px; 

    opacity: 0.28;
    animation: starFloat 85s linear infinite;
}

/* ----- LỚP 2: ÁNH SÁNG NEON (BLUE + GOLD NHẸ) ----- */
body::after {
    content: "";
    position: fixed;
    inset: -25%;
    z-index: -2;
    pointer-events: none;

    background:
        radial-gradient(circle at 18% 22%, rgba(0, 132, 255, 0.35), transparent 65%),
        radial-gradient(circle at 78% 75%, rgba(150, 90, 255, 0.38), transparent 65%),
        radial-gradient(circle at 50% 50%, rgba(255, 207, 77, 0.18), transparent 70%);

    filter: blur(85px);
    opacity: 0.9;

    animation: glowShift 22s ease-in-out infinite alternate;
}

.coin-rain {
    pointer-events: none;
    position: fixed;
    inset: 0;
    overflow: hidden;
    z-index: -1; /* để nằm sau website */
}

.coin-rain img {
    position: absolute;
    width: 35px; /* chỉnh coin lớn nhỏ */
    animation: coinFall linear infinite;
    opacity: 0.8;
    filter: drop-shadow(0 0 6px rgba(255,210,80,0.6));
}

@keyframes coinFall {
    0% {
        transform: translateY(-120px) rotate(0deg);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    100% {
        transform: translateY(120vh) rotate(360deg);
        opacity: 0;
    }
}
.menu-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: rgba(255, 215, 0, 0.18); /* viền vàng mờ */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.menu-icon img {
    width: 60%;
    height: 60%;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.5)); /* ánh sáng icon */
}


/* ----- LỚP 3: GRADIENT CHUYỂN ĐỘNG ----- */
.galaxy-gradient {
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;

    background: linear-gradient(125deg,
        rgba(0, 132, 255, 0.10),
        rgba(255, 207, 77, 0.10),
        rgba(0, 70, 180, 0.15)
    );
    background-size: 200% 200%;
    animation: gradientMove 25s linear infinite;
}


/* =============================== */
/*           ANIMATIONS            */
/* =============================== */

@keyframes starFloat {
    0%   { background-position: 0 0, 0 0; }
    100% { background-position: -900px 600px, 600px -900px; }
}

@keyframes glowShift {
    0%   { transform: translate(0, 0) scale(1); }
    50%  { transform: translate(-50px, 30px) scale(1.10); }
    100% { transform: translate(30px, -40px) scale(1.04); }
}

@keyframes gradientMove {
    0%   { background-position: 0% 0%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 100%; }
}


/* ====== HEADER CHÍNH ====== */
.site-header {
    width: 100%;
    padding: 28px 0 22px;
}

/* Khối gradient chứa logo + stats */
.header-inner {
    width: 80%;
    max-width: 1350px;
    margin: 0 auto;
    padding: 18px 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;

    /* BLUE + GOLD LUXURY */
    background: radial-gradient(circle at top left, #3d7dff 0%, #3d7dff 14%, #2f4b95 44%, #10152c 100%);
    box-shadow: 0 18px 40px rgba(0,0,0,0.7);
}

/* LOGO */
.header-logo-box {
    display: flex;
    align-items: center;
}

.header-logo {
    height: 60px;            /* chỉnh lại bằng logo thật */
    object-fit: contain;
}

/* STATS BÊN PHẢI */
.header-stats {
    display: flex;
    gap: 40px;
}

.stats-number {
    text-align: right;
}

.stats-value {
    display: block;
    font-size: 26px;
    font-weight: 700;
    color: #ffdf7a;
    text-shadow: 0 0 12px rgba(255, 223, 122, 0.9);
}

.stats-label {
    display: block;
    font-size: 12px;
    letter-spacing: 1.6px;
    opacity: 0.9;
}

/* ====== 4 Ô MENU BÊN DƯỚI ====== */
.header-menu {
    width: 80%;
    max-width: 1350px;
    margin: 24px auto 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.menu-card {
    background: rgba(7, 13, 32, 0.96);
    border-radius: 18px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 10px 25px rgba(0,0,0,0.65);
    backdrop-filter: blur(8px);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(255, 207, 77, 0.45);
    border-color: rgba(255, 207, 77, 0.75);
}

.menu-icon {
    font-size: 32px;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 0%, #ffe487, #ffb52c);
    color: #3b2200;
}

.menu-title {
    font-size: 18px;
    font-weight: 600;
}

.menu-sub {
    font-size: 13px;
    color: #a7b4d6;
}

/* ====== RESPONSIVE HEADER ====== */
@media (max-width: 992px) {
    .header-inner,
    .header-menu {
        width: 92%;
    }

    .header-inner {
        padding: 16px 22px;
    }

    .header-stats {
        gap: 22px;
    }
}

@media (max-width: 768px) {
    .header-inner {
        align-items: flex-start;
        gap: 14px;
    }

    .header-stats {
        width: 100%;
        justify-content: space-between;
    }

    .header-menu {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .header-menu {
        grid-template-columns: 1fr;
    }
}

/* ========= OFFICIAL ENTRY ========= */

.entry-section {
    margin-top: 0px;
    padding-bottom: 60px;
}

.entry-wrapper {
    width: 80%;
    max-width: 1350px;
    margin: 0 auto;
    padding: 26px 32px 32px;
    border-radius: 24px;
    background:
      radial-gradient(circle at top left, rgba(255, 207, 77, 0.35) 0%, transparent 55%),
      radial-gradient(circle at bottom right, rgba(59, 122, 255, 0.38) 0%, transparent 60%),
      linear-gradient(145deg, #121835, #070b1c);
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    position: relative;
}

/* Header title + nút refresh */
.entry-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.entry-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 26px;
    font-weight: 700;
    color: #ffdf7a;
    text-shadow: 0 0 12px rgba(255, 223, 122, 0.9);
}

.entry-icon {
    font-size: 26px;
}

/* Nút refresh: BLUE + GOLD nhẹ */
.refresh-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #ffcf4d, #ffb52c);
  color: #321c00;
  border-radius: 30px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s ease;
  box-shadow: 0 0 14px rgba(255, 207, 77, 0.6);
}

.refresh-btn:hover {
  box-shadow: 0 0 20px rgba(255, 207, 77, 0.9);
  transform: translateY(-2px);
}

.refresh-icon {
  display: inline-block;
  font-size: 18px;
  transition: 0.3s ease;
}

.refresh-btn:active .refresh-icon {
  animation: spin 0.6s linear;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.refresh-btn.loading .refresh-icon {
  animation: spin 0.7s linear infinite;
}

/* Grid layout card */
.route-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

/* Card mỗi route */
.route-card {
    position: relative;
}

/* Lớp trong với đường viền trên màu gradient */
.route-card-inner {
    position: relative;
    background: rgba(9, 15, 32, 0.97);
    border-radius: 18px;
    padding: 22px 24px 20px;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 10px 30px rgba(0,0,0,0.75);
    overflow: hidden;
    transition: 0.2s ease;
}

.route-card-inner:hover {
    box-shadow: 0 0 28px rgba(255, 207, 77, 0.45);
    transform: translateY(-3px);
}

/* viền trên gradient: blue + gold */
.route-card-inner::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg,
        #ffcf4d,
        #3d7dff,
        #ffdf7a
    );
}

/* top line: domain + ms + status */
.route-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: -15px;
}

.route-domain {
    font-size: 16px;
    font-weight: 700;
}

/* Latency */
.route-latency {
    margin-top: 6px;
    font-size: 13px;
}

.latency-value {
    color: #ffdf7a;
    font-weight: 600;
    font-size: 15px;
    margin-right: 4px;
}

.latency-unit {
    color: #97a0c5;
    font-size: 12px;
}

/* status pill: GOLD tone */
.route-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(72, 58, 19, 0.95);
    font-size: 12px;
    color: #ffdf7a;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ffcf4d;
    box-shadow: 0 0 10px rgba(255, 207, 77, 0.9);
}

/* mô tả route */
.route-desc {
    text-align: right;
    font-size: 14px;
    color: #dde3ff;
    margin-bottom: 3px;
}

/* button row */
.route-actions {
    display: flex;
    gap: 27px;
}

/* dùng chung cho mọi btn */
.btn {
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    border-radius: 12px;
    padding: 11px 18px;
    font-size: 14px;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

/* Enter: GOLD chính */
.btn-enter {
    flex: 1;
    background: linear-gradient(135deg, #ffcf4d, #ffb52c);
    color: #2b1700;
    box-shadow: 0 0 14px rgba(255, 207, 77, 0.7);
}

.btn-enter:hover {
    background: linear-gradient(135deg, #ffe487, #ffcf4d);
    transform: translateY(-1px);
    box-shadow: 0 0 18px rgba(255, 215, 95, 0.95);
}

/* Speed Test: BLUE tone */
.btn-speed {
    background: #111c3f;
    color: #ffffff;
    border: 1px solid rgba(105, 135, 230, 0.9);
}

.btn-speed:hover {
    background: #21326a;
    box-shadow: 0 0 12px rgba(105, 135, 230, 0.75);
}

/* Card sáng khi đang test */
.route-card-inner.testing {
    box-shadow: 0 0 26px rgba(255, 207, 77, 0.85);
}

/* Nút Speed Test khi đang test */
.btn-speed.testing {
    position: relative;
    background: #ffcf4d;
    color: #2b1700;
    border-color: #ffe487;
    box-shadow: 0 0 20px rgba(255, 215, 95, 0.85);
    transform: translateY(-1px);
    animation: btnPulse 0.9s ease-in-out infinite;
}

/* Vòng sóng lan */
.btn-speed.testing::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.65);
    opacity: 0.7;
    pointer-events: none;
    animation: ripple 1.1s ease-out infinite;
}

/* Số ms đang test – nhấp nháy + zoom nhẹ */
.latency-testing {
    animation: latencyBlink 0.3s linear infinite alternate;
}

/* ========== KEYFRAMES ========== */

@keyframes btnPulse {
    0%   { transform: translateY(-1px) scale(1); }
    50%  { transform: translateY(-2px) scale(1.03); }
    100% { transform: translateY(-1px) scale(1); }
}

@keyframes ripple {
    0%   { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.15); opacity: 0; }
}

@keyframes latencyBlink {
    from { opacity: 0.4; transform: scale(1); }
    to   { opacity: 1;   transform: scale(1.07); }
}

/* ========= RESPONSIVE ENTRY ========= */

/* tablet: 2 cột */
@media (max-width: 1024px) {
    .entry-wrapper {
        width: 92%;
        padding: 22px 18px 26px;
    }

    .route-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ========== FOOTER ========== */

.site-footer {
    margin-top: -20px;
    padding-bottom: 40px;
}

/* Hộp announcement */
.announcement {
    width: 80%;
    max-width: 1350px;
    margin: 0 auto 40px;
}

.announcement-inner {
    padding: 26px 34px 26px;
    border-radius: 26px;
    border: 1px solid rgba(255, 207, 77, 0.9);
    background:
      radial-gradient(circle at top right, rgba(255, 207, 77, 0.45) 0%, transparent 45%),
      radial-gradient(circle at bottom left, rgba(47, 106, 255, 0.45) 0%, transparent 55%),
      linear-gradient(135deg, #101733, #060915);
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
}

.announcement-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.announcement-icon {
    font-size: 20px;
}

.announcement-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffcf4d;
}

.announcement-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.announcement-list li {
    font-size: 15px;
    line-height: 1.7;
    color: #e6eeff;
}

.announcement-description {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.55;
    color: #dde5ff;
    opacity: 0.95;
}

/* Đường kẻ + copy + links */
.footer-bottom {
    width: 80%;
    max-width: 1350px;
    margin: 0 auto;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.16);

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: #d0daf5;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: #d0daf5;
    text-decoration: none;
    font-size: 13px;
}

.footer-links a:hover {
    color: #ffcf4d;
}

/* ===== FOOTER RESPONSIVE ===== */

@media (max-width: 1024px) {
    .announcement,
    .footer-bottom {
        width: 92%;
    }

    .announcement-inner {
        padding: 22px 22px 22px;
    }
}

@media (max-width: 768px) {
    .announcement-inner {
        padding: 18px 18px 20px;
        border-radius: 20px;
    }

    .announcement-title {
        font-size: 19px;
    }

    .announcement-list li {
        font-size: 14px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 18px;
        gap: 10px;
    }

    .footer-links {
        gap: 18px;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .announcement,
    .footer-bottom {
        width: 95%;
        max-width: 420px;
        padding-left: 14px;
        padding-right: 14px;
    }

    .announcement-inner {
        padding: 16px 14px 18px;
    }

    .announcement-title {
        font-size: 18px;
    }
}

/* mobile: 1 cột + title/nút xếp dọc */
@media (max-width: 768px) {
    .entry-header {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }
    .route-grid {
        grid-template-columns: 1fr;
    }
}

/* ========= MOBILE 390px ========= */
@media (max-width: 480px) {
    .header-inner,
    .header-menu,
    .entry-wrapper {
        width: 95%;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 14px;
        padding-right: 14px;
    }

    .site-header {
        padding-top: 16px;
    }

    .header-inner {
        border-radius: 18px;
        padding: 14px 16px;
    }

    .header-logo {
        height: 48px;
    }

    .header-stats {
        gap: 16px;
    }

    .stats-value {
        font-size: 20px;
    }

    .stats-label {
        font-size: 10px;
        letter-spacing: 1.4px;
    }

    .header-menu {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        margin-top: 16px;
    }

    .menu-card {
        padding: 12px 10px;
        border-radius: 14px;
    }

    .menu-icon {
        font-size: 26px;
    }

    .menu-title {
        font-size: 14px;
    }

    .menu-sub {
        font-size: 11px;
    }

    .entry-wrapper {
        margin-top: 10px;
        padding: 18px 16px 22px;
        border-radius: 20px;
    }

    .entry-title {
        font-size: 20px;
    }

    .entry-icon {
        font-size: 22px;
    }

    .refresh-btn {
        padding: 8px 16px;
        font-size: 11px;
        border-radius: 22px;
    }
}

/* ============================== */
/*      NỀN TECH GRID + ICON      */
/* ============================== */

.tech-grid {
    position: fixed;
    inset: 0;
    z-index: -5;
    pointer-events: none;

    background-image:
        linear-gradient(to right, rgba(0, 132, 255, 0.18) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 132, 255, 0.14) 1px, transparent 1px);
    background-size: 120px 120px;
    opacity: 0.25;
    mix-blend-mode: screen;

    animation: techGridMove 35s linear infinite;
}

.constellation-layer {
    position: fixed;
    inset: 0;
    z-index: -4;
    pointer-events: none;
}

.constellation-icon {
    position: absolute;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 20% 25%, #ffffff 0%, rgba(255,255,255,0.12) 35%, transparent 60%),
        radial-gradient(circle at 70% 70%, #2e82ff 0%, rgba(46,130,255,0.12) 40%, transparent 70%);
    box-shadow:
        0 0 14px rgba(46,130,255,0.85),
        0 0 40px rgba(0,0,0,0.8);
    opacity: 0.9;
}

.icon-1 {
    top: 18%;
    left: 12%;
    animation: constellationMove1 30s ease-in-out infinite alternate;
}

.icon-2 {
    bottom: 18%;
    right: 10%;
    animation: constellationMove2 36s ease-in-out infinite alternate;
}

.constellation-icon::before,
.constellation-icon::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 10px rgba(255,255,255,0.9);
}

.constellation-icon::before {
    top: 18px;
    left: 14px;
}

.constellation-icon::after {
    top: 32px;
    right: 12px;
}

@keyframes techGridMove {
    0%   { background-position: 0 0, 0 0; }
    100% { background-position: 220px 220px, -220px 220px; }
}

@keyframes constellationMove1 {
    0%   { transform: translate(0, 0) rotate(0deg);     opacity: 0.7; }
    50%  { transform: translate(40px, -30px) rotate(8deg); opacity: 1; }
    100% { transform: translate(-20px, 20px) rotate(-5deg); opacity: 0.85; }
}

@keyframes constellationMove2 {
    0%   { transform: translate(0, 0) rotate(0deg);      opacity: 0.8; }
    50%  { transform: translate(-35px, 25px) rotate(-6deg); opacity: 1; }
    100% { transform: translate(25px, -20px) rotate(4deg); opacity: 0.85; }
}

/* ===== LOADING OVERLAY FULL SCREEN ===== */
.route-loader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, #11162a 0%, #050510 55%, #020107 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.route-loader.active {
  opacity: 1;
  pointer-events: auto;
}

.loader-ring {
  position: relative;
  width: 70px;
  height: 70px;
  animation: spin-ring 1.1s linear infinite;
}

.loader-ring .arc {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 4px solid transparent;
}

.loader-ring .arc1 {
  border-top-color: #ffcf4d;   /* gold */
}

.loader-ring .arc2 {
  border-right-color: #3d7dff; /* blue */
  transform: rotate(120deg);
}

.loader-ring .arc3 {
  border-bottom-color: #9b6bff; /* tím xanh */
  transform: rotate(240deg);
}

.loader-text {
  margin-top: 18px;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: #ffffff;
  opacity: 0.85;
}

@keyframes spin-ring {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Khung bên phải - social */
.social-bar {
  position: fixed;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px 6px;
  background: rgba(14, 18, 35, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 40px;
  z-index: 9999;
  box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.sbtn {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease;
}

.sbtn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sbtn:hover {
  transform: translateX(-3px) scale(1.1);
  filter: brightness(1.18);
  box-shadow: 0 0 12px rgba(255, 207, 77, 0.75);
}

.sbtn::after {
  content: "";
  position: absolute;
  top: -60%;
  left: -120%;
  width: 150%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 207, 77, 0.7) 50%,
    transparent 100%
  );
  transform: skewX(-25deg);
  opacity: 0;
  transition: 0.6s;
}

.sbtn:hover::after {
  left: 120%;
  opacity: 1;
}
