/* FOOTER AREA */
.footer-area {
    text-align: center;
    background-color: #0a0a0a;
    padding: 10px 0 10px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    margin-top: 10px;
}

/* WRAPPER TOMBOL */
.footer-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

/* TOMBOL */
.footer-btn {
    position: relative;
    padding: 14px 40px;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    background: rgba(0, 0, 0, 0.85);
    border-radius: 12px;
    cursor: pointer;
    z-index: 1;
    overflow: hidden;
    display: inline-block;

    /* Animasi melayang */
    animation: floatBtn 3s ease-in-out infinite;
    transition: 0.3s ease;
}

/* Hover Glow */
.footer-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(255,255,255,0.75),
                0 0 30px rgba(255,0,200,0.5);
}

/* RGB BORDER ANIMASI GERAK */
.rgb-border::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px; /* ketebalan border */
    border-radius: 22px;

    background: linear-gradient(
        120deg,
        #eeca00,
        #ff7a00,
        #ffee00,
        #00ff73,
        #00d0ff,
        #0066ff,
        #b300ff,
        #ff00ba,
        #eeca00
    );
    background-size: 400% 400%;
    animation: borderMove 5s linear infinite;

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
}

/* Animasi border warna-warni */
@keyframes borderMove {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Animasi tombol melayang */
@keyframes floatBtn {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-7px); }
    100% { transform: translateY(0px); }
}

/* TEKS FOOTER */
.footer-text {
    font-size: 14px;
    color: #ddd;
    text-shadow: 0 0 5px #000;
}