/* ===== CSS BLOCK 1 - extracted from original HTML ===== */
   /* KUNCI overflow agar tidak meluber ke kanan */
   .preview,
   .m-product-preview__glider,
   .glide,
   .glide__track {
    overflow: hidden !important;
    max-width: 100% !important;
   }

   /* Biarkan Glide bekerja normal */
   .glide__slides {
    display: flex !important;
    /* jaga-jaga */
    margin: 0 !important;
    /* rollback kalau sebelumnya sempat dipasang: */
    contain: none !important;
   }

   .glide__slide img,
   .m-product-preview__glider-img img,
   .preview .jsProductMainImage {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
   }

   /* Anti scroll horizontal */
   html,
   body {
    overflow-x: hidden !important;
   }
  


/* ===== CSS BLOCK 2 - extracted from original HTML ===== */
    .vc-header-logo {
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        gap: 12px;
        justify-content: space-between;
        align-items: center;
    }

    /* Container tombol dengan sentuhan robot */
    .n-columns-2 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        font-weight: 700;
        margin: 0 auto;
        position: relative;
        padding: 20px;
        border-radius: 16px;
        background: radial-gradient(ellipse at center, rgba(0, 195, 140, 0.05) 0%, transparent 70%);
    }


    .n-columns-2 a {
        text-align: center;
        margin: 0;
        text-decoration: none;
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
        overflow: hidden;
    }

    .login,
    .register {
        color: #ffffff;
        padding: 16px 10px;
        letter-spacing: 1px;
        font-size: 18px;
        text-transform: uppercase;
        font-family: 'Courier New', monospace;
    }

    /* Efek kilau untuk kedua tombol - versi robot */
    .login::after,
    .register::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(
            135deg,
            rgba(23, 148, 231, 0.959) 0%,
            rgb(10, 142, 175) 25%,
            rgba(22, 183, 204, 0.993) 50%
        );
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
        transition: transform 0.6s ease;
        pointer-events: none;
    }

    .login:hover::after,
    .register:hover::after {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }

    /* === TOMBOL LOGIN - Robot Chrome Premium dengan sentuhan Saljuny A === */
    .login,
    .login-button {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        border-radius: 12px;
        border: 2px solid rgba(0, 255, 200, 0.3);
        box-shadow: 
            0 4px 0 #008f6a,
            0 8px 15px rgba(0, 0, 0, 0.3),
            inset 0 1px 2px rgba(255, 255, 255, 0.5),
            0 0 30px rgba(0, 255, 200, 0.1);
        background: linear-gradient(180deg, 
            #1682e7 0%,
            #1682e7 30%,
            #1682e7 70%,
            #1682e7 100%);
        color: #fff;
        position: relative;
    }

    /* Efek highlight atas untuk efek chrome - versi robot glow */
    .login::before {
        content: '';
        position: absolute;
        top: 2px;
        left: 5%;
        width: 90%;
        height: 30%;
        background: linear-gradient(180deg, 
            rgba(0, 255, 200, 0.5) 0%,
            rgba(0, 255, 200, 0.15) 50%,
            rgba(0, 255, 200, 0) 100%);
        border-radius: 10px 10px 0 0;
        pointer-events: none;
    }

    /* Efek saljuny a pada login - glitch pulse */
    .login .saljuny-glow {
        display: inline-block;
        animation: saljunyPulse 2s ease-in-out infinite;
    }

    @keyframes saljunyPulse {
        0%, 100% { text-shadow: 0 0 5px rgba(0, 255, 200, 0.3); }
        50% { text-shadow: 0 0 20px rgba(0, 255, 200, 0.8), 0 0 40px rgba(0, 255, 200, 0.3); }
    }

    .login:hover {
        background: linear-gradient(180deg, 
            #1682e7 0%,
            #1682e7 30%,
            #1682e7 70%,
            #1682e7 100%);
        border-color: rgba(32, 118, 218, 0.959);
        box-shadow: 
            0 6px 0 #1682e7,
            0 12px 20px rgba(0, 0, 0, 0.4),
            inset 0 1px 3px rgba(255, 255, 255, 0.8),
            0 0 50px rgba(16, 137, 207, 0.993);
        transform: translateY(-2px);
        color: #fff;
    }

    .login:active {
        transform: translateY(2px);
        box-shadow: 
            0 2px 0 #1682e7,
            0 5px 12px rgba(0, 0, 0, 0.3);
    }

    /* === TOMBOL REGISTER - Robot Dark Chrome dengan Saljuny A === */
    .register,
    .register-button {
        text-shadow: 2px 2px 4px rgb(22, 130, 219);
        border-radius: 12px;
        border: 2px solid rgb(39, 110, 176);
        box-shadow: 
            0 4px 0 #1682e7,
            0 8px 15px rgba(0, 0, 0, 0.3),
            inset 0 1px 2px rgba(255, 255, 255, 0.2),
            0 0 30px rgba(156, 39, 176, 0.1);
        background: linear-gradient(180deg, 
            #1682e7 0%,
            #1682e7 30%,
            #1682e7 70%,
            #1682e7 100%);
        color: #fff;
        position: relative;
    }

    /* Efek highlight atas untuk efek dark chrome - versi robot */
    .register::before {
        content: '';
        position: absolute;
        top: 2px;
        left: 5%;
        width: 90%;
        height: 30%;
        background: linear-gradient(180deg, 
            rgba(156, 39, 176, 0.4) 0%,
            rgba(156, 39, 176, 0.1) 50%,
            rgba(156, 39, 176, 0) 100%);
        border-radius: 10px 10px 0 0;
        pointer-events: none;
    }

    /* Efek saljuny a pada register */
    .register .saljuny-glow {
        display: inline-block;
        animation: saljunyPurplePulse 2.5s ease-in-out infinite;
    }

    @keyframes saljunyPurplePulse {
        0%, 100% { text-shadow: 0 0 5px rgba(156, 39, 176, 0.3); }
        50% { text-shadow: 0 0 20px rgba(156, 39, 176, 0.8), 0 0 40px rgba(156, 39, 176, 0.3); }
    }

    .register:hover {
        background: linear-gradient(180deg, 
            #1682e7 0%,
            #1682e7 30%,
            #1682e7 70%,
            #1682e7 100%);
        border-color: rgba(156, 39, 176, 0.6);
        box-shadow: 
            0 6px 0 #1682e7,
            0 12px 20px rgba(0, 0, 0, 0.5),
            inset 0 1px 3px rgba(255, 255, 255, 0.3),
            0 0 50px rgba(156, 39, 176, 0.2);
        transform: translateY(-2px);
        color: #e0b0ff;
    }

    .register:active {
        transform: translateY(2px);
        box-shadow: 
            0 2px 0 #2A0A5A,
            0 5px 12px rgba(0, 0, 0, 0.3);
    }

    /* Efek hover untuk interaksi */
    .login:hover, .register:hover {
        opacity: 1;
        filter: brightness(1.1);
    }

    /* Efek ikon panah kecil dengan robot */
    .login span, .register span {
        display: inline-block;
        transition: transform 0.3s ease;
    }

    .login:hover span, .register:hover span {
        transform: translateX(5px);
    }

    /* Ikon robot di dalam tombol */
    .btn-robot-icon {
        display: inline-block;
        margin-right: 8px;
        animation: robotWave 2s ease-in-out infinite;
    }

    @keyframes robotWave {
        0%, 100% { transform: rotate(0deg); }
        25% { transform: rotate(-10deg); }
        75% { transform: rotate(10deg); }
    }

    /* Status LED di samping tombol */
    .status-led-robot {
        display: inline-block;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        margin-left: 6px;
        animation: ledBlinkRobot 1.5s ease-in-out infinite;
    }

    .status-led-robot.green {
        background: #00ffc8;
        box-shadow: 0 0 12px rgba(0, 255, 200, 0.6);
    }

    .status-led-robot.purple {
        background: #9c27b0;
        box-shadow: 0 0 12px rgba(156, 39, 176, 0.6);
    }

    @keyframes ledBlinkRobot {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.2; }
    }

    /* Efek scanline pada container */
    .scanline-robot {
        position: relative;
        overflow: hidden;
    }

    .scanline-robot::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, transparent, #00ffc8, #9c27b0, #00ffc8, transparent);
        animation: scanMoveRobot 4s linear infinite;
        opacity: 0.2;
        pointer-events: none;
    }

    @keyframes scanMoveRobot {
        0% { top: 0; }
        100% { top: 100%; }
    }

    /* Stiker Saljuny A di bawah tombol */
    .saljuny-sticker {
        text-align: center;
        margin-top: 16px;
        font-family: 'Courier New', monospace;
        font-size: 11px;
        color: #00ffc8;
        letter-spacing: 3px;
        text-transform: uppercase;
        opacity: 0.7;
        animation: stickerGlow 3s ease-in-out infinite;
    }

    .saljuny-sticker .sticker-icon {
        display: inline-block;
        margin: 0 6px;
        animation: spinSlow 8s linear infinite;
    }

    @keyframes spinSlow {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    @keyframes stickerGlow {
        0%, 100% { opacity: 0.5; text-shadow: 0 0 5px rgba(0, 255, 200, 0.1); }
        50% { opacity: 1; text-shadow: 0 0 20px rgba(0, 255, 200, 0.3); }
    }

    /* Responsif untuk mobile */
    @media (max-width: 480px) {
        .n-columns-2 {
            gap: 10px;
            padding: 16px 10px;
        }
        
        .n-columns-2::before {
            font-size: 8px;
            padding: 2px 12px;
            top: -12px;
            letter-spacing: 1px;
        }

        .login, .register {
            padding: 14px 8px;
            font-size: 14px;
        }

        .saljuny-sticker {
            font-size: 9px;
            letter-spacing: 2px;
        }
    }

    @media (max-width: 380px) {
        .n-columns-2::before {
            font-size: 7px;
            padding: 2px 8px;
            top: -10px;
            white-space: normal;
        }
    }

    /* Container background untuk section */
    .section-2-container {
        background: linear-gradient(180deg, #0a0a0f 0%, #1a1a2e 100%);
        padding: 30px 0 20px;
        position: relative;
    }

    .section-2-container .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }

    /* Dekorasi robot tambahan */
    .robot-deco {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 10px;
        font-size: 14px;
        color: rgba(0, 255, 200, 0.15);
        font-family: 'Courier New', monospace;
        letter-spacing: 4px;
    }

    @media (max-width: 480px) {
        .robot-deco {
            font-size: 10px;
            letter-spacing: 2px;
            gap: 10px;
        }
    }


/* ===== CSS BLOCK 3 - extracted from original HTML ===== */
   .btn-x {
    display: inline-block;
    min-width: 200px;
    text-align: center;
    padding: 14px 28px;
    margin: 5px;
    /* Efek Yellow Chrome dengan gradasi metalik */
    background: linear-gradient(180deg, #FFD700 0%, #FFB700 50%, #FFA500 100%);
    color: #ffffff;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    /* Memberikan sedikit tekstur border agar lebih tegas */
    border: 1px solid #D9A405;
    /* Bayangan lebih dalam untuk efek timbul */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
   }

   .btn-x:hover {
    /* Hover menjadi chrome yang lebih cerah/menyala */
    background: linear-gradient(180deg, #FFB700 0%, #FFD700 100%);
    box-shadow: 0 6px 20px rgba(255, 183, 0, 0.4);
    transform: translateY(-2px);
    color: #fff;
   }

   .right-rail:empty,
   .sidebar:empty,
   .product__aside:empty {
    display: none !important;
   }

   .page-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
   }


/* ===== CSS BLOCK 4 - extracted from original HTML ===== */
:root{
    --primary:#d44537;
    --gold:#f4c542;
    --gold2:#d6a52b;
    --dark:#111111;
    --dark2:#1d1d1d;
    --light:#ffffff;
    --bg:#fcfcfc;

    --radius:18px;
    --speed:.35s;
}

/*==============================
 PREMIUM INFO BOX
==============================*/

.SENYUMTOTO-info{
    max-width:850px;
    margin:15px auto;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    position:relative;
    border:2px solid rgba(212,69,55,.25);
    box-shadow:
    0 10px 35px rgba(0,0,0,.08),
    0 0 30px rgba(212,69,55,.08);
}

.SENYUMTOTO-info::before{
    content:"";
    position:absolute;
    inset:0;
    padding:2px;
    border-radius:20px;
    background:linear-gradient(
    135deg,
    #d44537,
    #ffce54,
    #d44537);
    -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
    -webkit-mask-composite:xor;
            mask-composite:exclude;
    pointer-events:none;
}

/*==============================
 HEADER
==============================*/

.SENYUMTOTO-head{
    background:
    linear-gradient(135deg,#111,#252525);
    color:#fff;
    text-align:center;
    padding:22px;
    position:relative;
    overflow:hidden;
}

.SENYUMTOTO-head::before{
    content:"";
    position:absolute;
    left:-50%;
    top:0;
    width:200%;
    height:100%;
    background:
    linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.08),
    transparent);
    animation:shine 5s linear infinite;
}

@keyframes shine{
0%{transform:translateX(-100%)}
100%{transform:translateX(100%)}
}

.SENYUMTOTO-head h2{
    margin:0;
    font-size:22px;
    font-weight:700;
    letter-spacing:1px;
    color:#f4c542;
}

.SENYUMTOTO-head p{
    margin-top:6px;
    font-size:13px;
    color:#d8d8d8;
}

/*==============================
 ROW
==============================*/

.SENYUMTOTO-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:16px 24px;
    transition:.35s;
    border-bottom:1px solid rgba(0,0,0,.06);
    position:relative;
}

.SENYUMTOTO-row:last-child{
    border:none;
}

.SENYUMTOTO-row:hover{
    background:#fffdf8;
    transform:translateX(6px);
}

.SENYUMTOTO-row::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:4px;
    height:100%;
    background:linear-gradient(#d44537,#f4c542);
    transform:scaleY(0);
    transition:.3s;
}

.SENYUMTOTO-row:hover::before{
    transform:scaleY(1);
}

.SENYUMTOTO-label{
    width:35%;
    color:#222;
    font-size:14px;
    font-weight:600;
}

.SENYUMTOTO-value{
    width:65%;
    text-align:right;
    color:#555;
    font-size:14px;
    font-weight:500;
}

.SENYUMTOTO-badge{
    display:inline-block;
    padding:6px 14px;
    border-radius:40px;
    background:linear-gradient(135deg,#d44537,#ffbe3b);
    color:#fff;
    font-weight:700;
    font-size:13px;
    box-shadow:0 5px 15px rgba(212,69,55,.25);
}

/*==============================
 RATING
==============================*/

.SENYUMTOTO-rating{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    gap:10px;
}

.SENYUMTOTO-stars{
    color:#ffc400;
    font-size:18px;
    letter-spacing:2px;
}

.SENYUMTOTO-score{
    background:#111;
    color:#f4c542;
    padding:5px 12px;
    border-radius:50px;
    font-weight:700;
    font-size:13px;
}

/*==============================
 RESPONSIVE
==============================*/

@media(max-width:640px){

.SENYUMTOTO-row{
flex-direction:column;
align-items:flex-start;
gap:8px;
}

.SENYUMTOTO-label,
.SENYUMTOTO-value{
width:100%;
text-align:left;
}

.SENYUMTOTO-rating{
justify-content:flex-start;
}

.SENYUMTOTO-head h2{
font-size:18px;
}

}


/* ===== CSS BLOCK 5 - extracted from original HTML ===== */
.section-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #00c38c;
}

/* Styling untuk Description Section */
.description-section {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.description-content {
    line-height: 1.8;
    color: #444;
    font-size: 16px;
}

.description-content p {
    margin-bottom: 20px;
}

.description-content strong {
    color: #000000;
    font-weight: 600;
}

.reviews-section {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.review-card {
    background: #f9f9f9;
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid #00c38c;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(123, 24, 159, 0.1);
}

.reviewer-name {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.reviewer-name::before {
    font-size: 16px;
}

.review-text {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    font-style: italic;
}

.faq-section {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00c38c, #9c27b0, #00c38c);
    background-size: 200% 100%;
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.faq-section .section-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 35px;
    padding-bottom: 15px;
    position: relative;
    text-align: center;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.faq-section .section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #00c38c;
    border-radius: 2px;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    background: linear-gradient(145deg, #f8f9fa, #ffffff);
    border-radius: 10px;
    padding: 28px 30px;
    border: 1px solid #eaeaea;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #00c38c, #9c27b0);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(123, 24, 159, 0.12);
    border-color: #d1c4e9;
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.faq-question::before {
    content: "Q.";
    color: #000000;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.faq-answer {
    position: relative;
    padding-left: 30px;
}.faq-answer::before {
    content: "A.";
    position: absolute;
    left: 0;
    top: 0;
    color: #4a5568;
    font-weight: 700;
    font-size: 16px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin: 0;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.faq-item:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: -12.5px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        padding: 25px 20px;
        margin: 30px 0;
    }
    
    .faq-section .section-title {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .faq-question {
        font-size: 16px;
        gap: 10px;
    }
    
    .faq-answer p {
        font-size: 15px;
    }
    
    .faq-question::before {
        font-size: 16px;
    }
    
    .faq-answer::before {
        font-size: 15px;
    }
    
    .faq-answer {
        padding-left: 25px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item {
    animation: fadeInUp 0.4s ease-out forwards;
    opacity: 0;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }

/* === ROBOT THEME & SALJUNY A VARIATION === */
.robot-badge {
    display: inline-block;
    background: linear-gradient(135deg, #2d3748, #1a202c);
    color: #00ffc8;
    padding: 4px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid #00ffc8;
    box-shadow: 0 0 15px rgba(0, 255, 200, 0.3);
    margin-left: 10px;
    font-family: 'Courier New', monospace;
}

.robot-icon {
    display: inline-block;
    font-size: 20px;
    animation: robotPulse 2s ease-in-out infinite;
}

@keyframes robotPulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

.section-title .robot-icon {
    margin-right: 8px;
}

.section-title .saljuny-glow {
    color: #00ffc8;
    text-shadow: 0 0 10px rgba(0, 255, 200, 0.5), 0 0 30px rgba(0, 255, 200, 0.2);
}

/* Saljuny A - variasi gaya */
.saljuny-variant {
    position: relative;
}

.review-card.saljuny-variant {
    border-left-color: #9c27b0;
    background: linear-gradient(145deg, #f8f4ff, #ffffff);
}

.faq-item.saljuny-variant {
    border: 1px solid #9c27b0;
    background: linear-gradient(145deg, #f8f4ff, #ffffff);
}

.faq-item.saljuny-variant::before {
    background: linear-gradient(180deg, #9c27b0, #00c38c);
    opacity: 0.6;
}


.robot-float:hover {
    transform: scale(1.1);
    box-shadow: 0 0 50px rgba(0, 255, 200, 0.4);
}

@keyframes robotFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.robot-float .tooltip {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: #1a202c;
    color: #00ffc8;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-family: 'Courier New', monospace;
    white-space: nowrap;
    border: 1px solid #00ffc8;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.robot-float:hover .tooltip {
    opacity: 1;
}

/* Scanline effect */
.scanline {
    position: relative;
    overflow: hidden;
}

.scanline::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ffc8, transparent);
    animation: scanMove 3s linear infinite;
    opacity: 0.3;
}

@keyframes scanMove {
    0% { top: 0; }
    100% { top: 100%; }
}

/* Status indicator */
.status-led {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 8px;
    animation: ledBlink 1.5s ease-in-out infinite;
}

.status-led.green {
    background: #00ffc8;
    box-shadow: 0 0 15px rgba(0, 255, 200, 0.6);
}

.status-led.purple {
    background: #9c27b0;
    box-shadow: 0 0 15px rgba(156, 39, 176, 0.6);
}

@keyframes ledBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Glitch text effect for saljuny */
.glitch-text {
    animation: glitch 2s infinite;
}

@keyframes glitch {
    0%, 90%, 100% { transform: translate(0); }
    92% { transform: translate(-2px, 2px); }
    94% { transform: translate(2px, -2px); }
    96% { transform: translate(-1px, 1px); }
    98% { transform: translate(1px, -1px); }
}

/* Responsive untuk robot elements */
@media (max-width: 768px) {
    .robot-float {
        width: 50px;
        height: 50px;
        font-size: 22px;
        bottom: 15px;
        right: 15px;
    }
    
    .robot-float .tooltip {
        display: none;
    }
    
    .saljuny-variant::after {
        font-size: 7px;
        padding: 1px 8px;
        top: -5px;
        right: -5px;
    }
}


/* ===== CSS BLOCK 6 - extracted from original HTML ===== */
   :root {
    /* Mengubah palet abu-abu menjadi Yellow Chrome */
    --brand: #FFD700;      /* Gold/Chrome Light */
    --brand-mid: #FFB700;  /* Chrome Standard */
    --brand-dark: #FFA500; /* Chrome Deep */
    --border: #E6B800;
    --bg: #ffffff;
    --shadow: 0 6px 15px rgba(0, 0, 0, .08);
   }

   .app-card {
    max-width: 650px;
    margin: 25px auto;
    background: var(--bg);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: transform .2s, box-shadow .3s;
    font-family: system-ui, Arial, sans-serif;
    font-size: .92rem;
   }

   .app-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 183, 0, .2); /* Shadow sedikit kekuningan */
   }

   .app-header {
    padding: 12px 16px;
    text-align: center;
    /* Efek Gradasi Chrome Glossy */
    background: linear-gradient(135deg, var(--brand), var(--brand-mid), var(--brand-dark));
    color: #000000;
    font-weight: 800;
    font-size: 1.15rem;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5); /* Shadow terang agar teks hitam terbaca mewah */
    border-bottom: 2px solid var(--border);
   }

   .app-table {
    width: 100%;
    border-collapse: collapse;
   }

   .app-table th,
   .app-table td {
    padding: 8px 12px;
    vertical-align: middle;
   }

   .app-table th {
    width: 35%;
    background: #FFF9E6; /* Kuning sangat muda untuk kontras kolom */
    color: #000000;
    font-weight: 700;
    letter-spacing: .2px;
    border-bottom: 1px solid var(--border);
    text-transform: uppercase;
    font-size: .85rem;
   }

   .app-table td {
    border-bottom: 1px solid #f0f0f0;
    color: #1f1f1f;
    font-size: .9rem;
   }

   @media(max-width:640px) {
    .app-table,
    .app-table tbody,
    .app-table tr,
    .app-table th,
    .app-table td {
     display: block;
     width: 100%;
    }
    .app-table th { border-bottom: none; background: #FFF4CC; }
   }

   .review-section {
    max-width: 850px;
    margin: 30px auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
    font-family: system-ui, Arial, sans-serif;
   }

   .review-card {
    background: #fdfdfd;
    padding: 16px 20px;
    border-radius: 10px;
    /* Aksen garis samping Yellow Chrome */
    border-left: 5px solid #00c38c;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .05);
    transition: all .25s ease-in-out;
    border-top: 1px solid #eee;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
   }

   .review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(255, 183, 0, .15);
    background: #fff;
   }

   .review-author {
    font-weight: 700;
    color: #000000;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
   }

   .review-author::before {
    font-size: 20px;
    filter: sepia(1) saturate(5) hue-rotate(10deg); /* Membuat emoji sedikit kekuningan */
   }

   .review-card p {
    margin: 0;
    color: #222;
    font-size: 14px;
    line-height: 1.6;
   }

   .review-rating {
    margin-left: auto;
    font-weight: 700;
    color: var(--brand-dark); /* Nilai angka rating jadi warna chrome */
   }

   .stars {
    --rating: 5;
    --star-size: 1rem;
    --star-gap: 2px;
    --star-empty: #e0e0e0;
    --star-fill: var(--brand-mid); /* Warna bintang jadi kuning chrome */
    position: relative;
    display: inline-block;
    font-size: var(--star-size);
    line-height: 1;
    letter-spacing: var(--star-gap);
   }

   .stars::before {
    color: var(--star-empty);
   }

   .stars::after {
    color: var(--star-fill);
    position: absolute;
    left: 0;
    top: 0;
    width: calc((var(--rating)/5)*100%);
    overflow: hidden;
    white-space: nowrap;
    pointer-events: none;
    /* Efek kilau pada bintang */
    text-shadow: 0 0 2px rgba(255, 165, 0, 0.4);
   }

   .stars.lg {
    --star-size: 1.1rem;
    letter-spacing: 3px
   }

   .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap
   }

   .badge small {
    color: #555;
    font-weight: 600
   }


/* ===== CSS BLOCK 7 - extracted from original HTML ===== */
    .footer-floating-SENYUMTOTO {
        position: fixed;
        bottom: 18px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        max-width: 1500px;
        display: flex;
        gap: 14px;
        padding: 16px 22px;
        background: linear-gradient(135deg, #0a0a1a 0%, #1a0a2a 30%, #0a1a1a 70%, #0a0a1a 100%);
        backdrop-filter: blur(10px);
        border-radius: 20px;
        border: 2px solid rgba(0, 255, 200, 0.4);
        box-shadow: 0 0 30px rgba(0, 255, 200, 0.2), 0 0 60px rgba(156, 39, 176, 0.1);
        z-index: 999;
    }

   

    /* Scanline effect */
    .footer-floating-SENYUMTOTO::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 20px;
        background: repeating-linear-gradient(
            0deg,
            rgba(0, 255, 200, 0) 0px,
            rgba(0, 255, 200, 0) 2px,
            rgba(0, 255, 200, 0.03) 2px,
            rgba(0, 255, 200, 0.03) 4px
        );
        pointer-events: none;
        animation: scanlineMove 8s linear infinite;
    }

    @keyframes scanlineMove {
        0% { background-position: 0 0; }
        100% { background-position: 0 20px; }
    }

    /* BUTTON BASE - Robot Version with Saljuny A */
    .footer-btn-SENYUMTOTO {
        flex: 1;
        min-width: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px 10px;
        font-size: 14px;
        font-weight: bold;
        color: #ffffff;
        background: linear-gradient(135deg, #1a2a2a, #0d1a1a);
        border-radius: 32px;
        border: 2px solid rgba(0, 255, 200, 0.3);
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 0 14px rgba(0, 255, 200, 0.15), inset 0 0 20px rgba(0, 255, 200, 0.05);
        animation: floatUpDown 3s ease-in-out infinite;
        text-decoration: none;
        user-select: none;
        white-space: nowrap;
        font-family: 'Courier New', monospace;
        position: relative;
        overflow: hidden;
        text-shadow: 0 0 10px rgba(0, 255, 200, 0.3);
    }

    /* Glow border animation - Saljuny A */
    .footer-btn-SENYUMTOTO::before {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        border-radius: 34px;
        background: linear-gradient(135deg, #00c38c, #9c27b0, #00c38c);
        background-size: 300% 300%;
        z-index: -1;
        animation: borderGlow 3s ease-in-out infinite;
        opacity: 0.3;
        transition: opacity 0.3s ease;
    }

    .footer-btn-SENYUMTOTO:hover::before {
        opacity: 1;
    }

    @keyframes borderGlow {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

    /* Saljuny A sparkle inside button */
    .footer-btn-SENYUMTOTO .saljuny-sparkle {
        display: inline-block;
        animation: sparkleRotate 4s linear infinite;
        font-size: 12px;
    }

    @keyframes sparkleRotate {
        0% { transform: rotate(0deg) scale(1); }
        50% { transform: rotate(180deg) scale(1.2); }
        100% { transform: rotate(360deg) scale(1); }
    }

    /* ICON with robot style */
    .footer-btn-SENYUMTOTO img {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
        filter: drop-shadow(0 0 8px rgba(0, 255, 200, 0.6));
        animation: iconPulse 2s ease-in-out infinite;
    }

    @keyframes iconPulse {
        0%, 100% { filter: drop-shadow(0 0 8px rgba(0, 255, 200, 0.6)); }
        50% { filter: drop-shadow(0 0 20px rgba(0, 255, 200, 0.9)) brightness(1.2); }
    }

    /* FLOAT DELAY - Saljuny A variants */
    .footer-btn-SENYUMTOTO.promo {
        animation-delay: 0.1s;
        border-color: rgba(18, 165, 223, 0.938);
    }
    .footer-btn-SENYUMTOTO.login {
        animation-delay: 0.3s;
        border-color: rgba(0, 255, 200, 0.4);
    }
    .footer-btn-SENYUMTOTO.daftar {
        animation-delay: 0.5s;
        border-color: rgba(156, 39, 176, 0.4);
    }
    .footer-btn-SENYUMTOTO.link {
        animation-delay: 0.7s;
        border-color: rgba(0, 255, 200, 0.3);
    }
    .footer-btn-SENYUMTOTO.chat {
        animation-delay: 0.9s;
        border-color: rgba(156, 39, 176, 0.3);
    }

    /* HOVER GLOW - Robot + Saljuny A */
    .footer-btn-SENYUMTOTO:hover {
        background: linear-gradient(135deg, #00c38c, #9c27b0);
        box-shadow: 
            0 0 20px rgba(0, 255, 200, 0.4),
            0 0 40px rgba(156, 39, 176, 0.3),
            0 0 60px rgba(0, 255, 200, 0.2);
        transform: translateY(-6px) scale(1.05);
        color: #fff;
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    }

    .footer-btn-SENYUMTOTO:hover img {
        filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.8)) brightness(1.5);
    }

    .footer-btn-SENYUMTOTO:hover .saljuny-sparkle {
        animation-duration: 1s;
    }

    /* ACTIVE */
    .footer-btn-SENYUMTOTO:active {
        background: linear-gradient(135deg, #0a2a2a, #1a0a2a);
        color: #00ffc8;
        border-color: #9c27b0;
        box-shadow: 
            0 0 25px rgba(156, 39, 176, 0.5),
            0 0 50px rgba(0, 255, 200, 0.2);
        transform: translateY(-2px) scale(0.98);
    }

    /* FLOAT ANIMATION - Robot style */
    @keyframes floatUpDown {
        0% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-10px);
        }
        100% {
            transform: translateY(0);
        }
    }

    /* Status LED per button */
    .footer-btn-SENYUMTOTO .status-led {
        display: inline-block;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        margin-left: 4px;
        animation: ledBlink 1.5s ease-in-out infinite;
    }

    .footer-btn-SENYUMTOTO .status-led.green {
        background: #00ffc8;
        box-shadow: 0 0 10px rgba(0, 255, 200, 0.8);
    }

    .footer-btn-SENYUMTOTO .status-led.purple {
        background: #9c27b0;
        box-shadow: 0 0 10px rgba(156, 39, 176, 0.8);
    }

    @keyframes ledBlink {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.2; }
    }

    /* RESPONSIVE */
    @media (max-width: 1024px) {
        .footer-floating-SENYUMTOTO {
            flex-wrap: wrap;
            gap: 10px;
            padding: 14px 16px;
        }
        .footer-floating-SENYUMTOTO::before {
            font-size: 8px;
            padding: 2px 12px;
            top: -10px;
            letter-spacing: 1px;
        }
        .footer-btn-SENYUMTOTO {
            flex: 1 1 calc(50% - 10px);
            font-size: 12px;
            padding: 10px 8px;
        }
    }

    @media (max-width: 600px) {
        .footer-floating-SENYUMTOTO {
            bottom: 10px;
            padding: 12px 12px;
            gap: 8px;
            border-radius: 14px;
        }
        .footer-floating-SENYUMTOTO::before {
            font-size: 7px;
            padding: 2px 10px;
            top: -9px;
            letter-spacing: 1px;
            white-space: nowrap;
        }
        .footer-btn-SENYUMTOTO {
            flex: 1 1 100%;
            font-size: 11px;
            padding: 8px 10px;
            gap: 5px;
            border-radius: 25px;
        }
        .footer-btn-SENYUMTOTO img {
            width: 14px;
            height: 14px;
        }
        .footer-btn-SENYUMTOTO .saljuny-sparkle {
            font-size: 9px;
        }
        .footer-btn-SENYUMTOTO .status-led {
            width: 5px;
            height: 5px;
        }
    }

    @media (max-width: 380px) {
        .footer-floating-SENYUMTOTO {
            padding: 10px 8px;
            gap: 6px;
        }
        .footer-floating-SENYUMTOTO::before {
            font-size: 6px;
            padding: 1px 8px;
            top: -8px;
        }
        .footer-btn-SENYUMTOTO {
            font-size: 9px;
            padding: 6px 8px;
            border-width: 1.5px;
        }
        .footer-btn-SENYUMTOTO img {
            width: 12px;
            height: 12px;
        }
    }

    /* Saljuny A corner decorations */
    .footer-corner-deco {
        position: absolute;
        font-size: 8px;
        font-family: 'Courier New', monospace;
        color: rgba(0, 255, 200, 0.15);
        letter-spacing: 2px;
        pointer-events: none;
    }
    .footer-corner-deco.tl { top: 6px; left: 12px; }
    .footer-corner-deco.tr { top: 6px; right: 12px; }
    .footer-corner-deco.bl { bottom: 6px; left: 12px; }
    .footer-corner-deco.br { bottom: 6px; right: 12px; }

    @media (max-width: 600px) {
        .footer-corner-deco { display: none; }
    }

/* ==========================================================
   SENYUMTOTO RED PREMIUM OVERRIDE
   Taruh paling bawah CSS
   ========================================================== */

:root{
  --syt-red:#e50914;
  --syt-red-light:#ff3540;
  --syt-red-dark:#8b0007;
  --syt-black:#09090d;
  --syt-white:#ffffff;
}

/* Area tombol utama */
.n-columns-2{
  background:radial-gradient(circle at 50% 0%,rgba(229,9,20,.16),transparent 58%),
             linear-gradient(180deg,#111118,#09090d)!important;
  border:1px solid rgba(255,45,56,.22)!important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.04),0 12px 30px rgba(0,0,0,.22)!important;
}

/* LOGIN / DAFTAR / button lain: merah */
.login,.register,.login-button,.register-button,.btn-x{
  background:linear-gradient(180deg,#ff3540 0%,#e50914 38%,#b8060f 72%,#8b0007 100%)!important;
  color:#fff!important;
  border:1px solid rgba(255,96,104,.75)!important;
  text-shadow:0 1px 2px rgba(0,0,0,.65)!important;
  box-shadow:0 4px 0 #680006,0 8px 18px rgba(0,0,0,.28),
             inset 0 1px 0 rgba(255,255,255,.32),
             0 0 18px rgba(229,9,20,.18)!important;
}

.login::before,.register::before{
  background:linear-gradient(180deg,rgba(255,255,255,.34),rgba(255,255,255,.10) 48%,transparent)!important;
}

.login::after,.register::after{
  background:linear-gradient(135deg,transparent 15%,rgba(255,255,255,.08) 34%,
             rgba(255,255,255,.50) 50%,rgba(255,255,255,.08) 66%,transparent 85%)!important;
}

.login:hover,.register:hover,.btn-x:hover{
  background:linear-gradient(180deg,#ff4b54 0%,#f10d19 42%,#c00610 74%,#960009 100%)!important;
  border-color:#ff6870!important;
  color:#fff!important;
  box-shadow:0 5px 0 #720006,0 12px 26px rgba(0,0,0,.32),
             inset 0 1px 0 rgba(255,255,255,.42),
             0 0 25px rgba(229,9,20,.34)!important;
}

/* LED dan efek lama cyan/ungu -> merah */
.status-led-robot.green,.status-led-robot.purple,
.status-led.green,.status-led.purple,
.footer-btn-SENYUMTOTO .status-led.green,
.footer-btn-SENYUMTOTO .status-led.purple{
  background:#ff2d38!important;
  box-shadow:0 0 7px rgba(255,45,56,.95),0 0 15px rgba(229,9,20,.55)!important;
}

.scanline-robot::after,.scanline::after{
  background:linear-gradient(90deg,transparent,#8b0007,#ff2d38,#8b0007,transparent)!important;
}

/* Section tombol */
.section-2-container{
  background:radial-gradient(circle at 50% -30%,rgba(229,9,20,.18),transparent 54%),
             linear-gradient(180deg,#101015,#09090d)!important;
  border-top:1px solid rgba(229,9,20,.12)!important;
  border-bottom:1px solid rgba(229,9,20,.12)!important;
}

/* Box informasi */
.SENYUMTOTO-info{
  border-color:rgba(229,9,20,.28)!important;
  box-shadow:0 12px 35px rgba(0,0,0,.10),0 0 28px rgba(229,9,20,.09)!important;
}
.SENYUMTOTO-info::before{
  background:linear-gradient(135deg,#7a0006,#e50914,#ff6169,#e50914,#7a0006)!important;
}
.SENYUMTOTO-head{
  background:radial-gradient(circle at 50% 0%,rgba(229,9,20,.20),transparent 62%),
             linear-gradient(135deg,#0b0b0f,#1a0a0d,#111116)!important;
}
.SENYUMTOTO-head h2{color:#ff343f!important;text-shadow:0 0 15px rgba(229,9,20,.25)!important;}
.SENYUMTOTO-row:hover{background:#fff7f7!important;}
.SENYUMTOTO-row::before{background:linear-gradient(#ff3540,#9c0008)!important;}
.SENYUMTOTO-badge{background:linear-gradient(135deg,#ff3540,#b4000b)!important;}
.SENYUMTOTO-score{background:#111116!important;color:#ff434c!important;}

/* Artikel / FAQ / review */
.section-title{border-bottom-color:#e50914!important;}
.description-section,.reviews-section,.faq-section{
  border:1px solid rgba(229,9,20,.10)!important;
  box-shadow:0 8px 24px rgba(0,0,0,.07)!important;
}
.description-content strong{color:#c8000b!important;font-weight:700!important;}
.review-card{border-left-color:#e50914!important;}
.review-card:hover{box-shadow:0 8px 22px rgba(229,9,20,.12)!important;}
.faq-section::before{
  background:linear-gradient(90deg,#700006,#e50914,#ff4a54,#e50914,#700006)!important;
}
.faq-section .section-title::after{background:#e50914!important;}
.faq-item::before,.faq-item.saljuny-variant::before{
  background:linear-gradient(180deg,#ff3540,#850007)!important;
}
.faq-item:hover{
  border-color:rgba(229,9,20,.28)!important;
  box-shadow:0 8px 25px rgba(229,9,20,.10)!important;
}

/* Badge robot */
.robot-badge{
  background:linear-gradient(135deg,#1a0b0d,#0d0d12)!important;
  color:#ff434c!important;
  border-color:#e50914!important;
  box-shadow:0 0 15px rgba(229,9,20,.24)!important;
}
.section-title .saljuny-glow,.saljuny-sticker{
  color:#e50914!important;
  text-shadow:0 0 12px rgba(229,9,20,.25)!important;
}

/* App card */
.app-card{
  --brand:#ff3540;
  --brand-mid:#e50914;
  --brand-dark:#940008;
  --border:rgba(229,9,20,.35);
}
.app-header{
  background:linear-gradient(135deg,#ff3540,#e50914,#a90009)!important;
  color:#fff!important;
  text-shadow:0 1px 2px rgba(0,0,0,.5)!important;
}
.app-table th{background:#fff3f3!important;}
.review-rating{color:#e50914!important;}

/* Floating footer */
.footer-floating-SENYUMTOTO{
  background:radial-gradient(circle at 50% 0%,rgba(229,9,20,.14),transparent 58%),
             linear-gradient(135deg,#09090d 0%,#17080b 45%,#09090d 100%)!important;
  border:1px solid rgba(229,9,20,.48)!important;
  box-shadow:0 8px 30px rgba(0,0,0,.42),0 0 24px rgba(229,9,20,.16)!important;
}
.footer-floating-SENYUMTOTO::after{
  background:repeating-linear-gradient(0deg,transparent 0,transparent 2px,
             rgba(229,9,20,.025) 2px,rgba(229,9,20,.025) 4px)!important;
}

.footer-btn-SENYUMTOTO,
.footer-btn-SENYUMTOTO.promo,
.footer-btn-SENYUMTOTO.login,
.footer-btn-SENYUMTOTO.daftar,
.footer-btn-SENYUMTOTO.link,
.footer-btn-SENYUMTOTO.chat{
  background:linear-gradient(180deg,#bd0710,#8e0008)!important;
  border-color:rgba(255,64,74,.62)!important;
  color:#fff!important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.14),
             0 5px 12px rgba(0,0,0,.20),0 0 12px rgba(229,9,20,.13)!important;
}
.footer-btn-SENYUMTOTO::before{
  background:linear-gradient(120deg,#6e0005,#e50914,#ff4b55,#e50914,#6e0005)!important;
  background-size:300% 300%!important;
  opacity:.42!important;
}
.footer-btn-SENYUMTOTO:hover{
  background:linear-gradient(180deg,#ff3540,#d70813 58%,#9d0009)!important;
  border-color:#ff5d66!important;
  box-shadow:0 8px 20px rgba(0,0,0,.28),0 0 22px rgba(229,9,20,.30)!important;
}

/* Tambahan polish */
.m-design-details__title::after{
  content:"";
  display:block;
  width:72px;
  height:3px;
  margin-top:12px;
  border-radius:99px;
  background:linear-gradient(90deg,#e50914,#ff4b55,transparent);
}

@media (max-width:768px){
  .footer-btn-SENYUMTOTO{animation:none!important;}
}
