html{
    scroll-behavior:smooth;
}

#rating{
    display:none;
    scroll-margin-top:90px;
}

#rating.show{
    display:block;
}

body{
    background:#050510;
    color:white;
    font-family:Poppins,sans-serif;
    margin:0;
}

.navbar{
    position:sticky;
    top:0;
    z-index:999;
    display:flex;
    align-items:center;
    padding:15px 20px;
    background:#0b1120;
    border-bottom:1px solid rgba(255,255,255,.1);
}

.nav-left{
    display:flex;
    align-items:center;
    gap:10px;
}

.nav-logo{
    width:42px;
    height:42px;
    object-fit:cover;
    border-radius:50%;

    border:2px solid #06b6d4;

    box-shadow:
    0 0 8px rgba(6,182,212,.8),
    0 0 18px rgba(6,182,212,.5);

    padding:2px;
}

.brand{
    font-weight:800;
    color:white;
}

.menu-btn{
    background:none;
    border:none;
    color:white;
    font-size:28px;
    cursor:pointer;
}

.brand{
    font-size:22px;
    font-weight:800;
    margin-left:10px;
}

.wa-btn{
    margin-left:auto;
    text-decoration:none;
    color:white;
    padding:10px 20px;
    border-radius:12px;
    font-weight:bold;
    background:linear-gradient(
        90deg,
        #8b5cf6,
        #06b6d4
    );
}

.sidebar{
    position:fixed;
    top:0;
    left:-250px;
    width:250px;
    height:100vh;
    background:#0f172a;
    padding-top:0px;
    transition:.3s;
    z-index:9999; /* ubah ini */

    display:flex;
    flex-direction:column;
}

.sidebar.active{
    left:0;
}

.sidebar a{
    display:block;
    color:white;
    text-decoration:none;
    padding:15px 20px;
    border-bottom:1px solid rgba(255,255,255,.1);
}

.sidebar a:hover{
    background:#111827;
}

.container{
    max-width:1200px;
    margin:auto;
    padding:20px;
}

.title{
    font-size:40px;
    font-weight:800;
    margin-bottom:20px;

    background:linear-gradient(
        90deg,
        #ffffff,
        #06b6d4,
        #8b5cf6
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    animation:glow 3s infinite;
}

.rating{
    display:inline-block;
    padding:12px 20px;
    background:#111827;
    border-radius:15px;
    margin-bottom:30px;
}

.product-card{
    background:rgba(15,23,42,.95);
    border:1px solid rgba(6,182,212,.3);
    border-radius:25px;
    padding:25px;
    margin-bottom:25px;

    position:relative;
    overflow:hidden;
    z-index:1;

    box-shadow:
        0 0 15px rgba(6,182,212,.15),
        0 0 35px rgba(139,92,246,.1);

    transition:.4s;
}

.product-card:hover{
    transform:translateY(-10px);

    border-color:#06b6d4;

    box-shadow:
        0 0 25px rgba(6,182,212,.5),
        0 0 60px rgba(139,92,246,.3);
}

.product-card::before{
    content:'';
    position:absolute;
    top:0;
    left:-150%;
    width:80%;
    height:100%;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.12),
        transparent
    );

    transform:skewX(-25deg);
    animation:shine 4s linear infinite;

    pointer-events:none;
}

.badge{
    display:inline-block;
    background:#06b6d4;
    color:white;
    padding:5px 10px;
    border-radius:8px;
    font-size:12px;
    margin-bottom:15px;
}

.product-name{
    font-size:30px;
    font-weight:700;
}

.price{
    font-size:50px;
    font-weight:bold;
    background:linear-gradient(
        90deg,
        #8b5cf6,
        #06b6d4
    );
    -webkit-background-clip:text;
    color:transparent;
}

.features{
    margin:20px 0;
}

.features li{
    margin-bottom:10px;
}

.btn{
    display:block;
    text-align:center;
    text-decoration:none;
    color:white;
    padding:15px;
    border-radius:15px;
    font-weight:bold;
    background:linear-gradient(
        90deg,
        #8b5cf6,
        #06b6d4
    );
}

.logo{
    display:none !important;
}

*{
    box-sizing:border-box;
}

.btn{
    transition:.3s;
}

.btn:hover{
    opacity:.9;
    transform:translateY(-2px);
}

footer{
    text-align:center;
    padding:30px;
    color:#9ca3af;
    border-top:1px solid rgba(255,255,255,.1);
    margin-top:50px;
    font-size:14px;
}

footer a{
    color:#06b6d4;
    text-decoration:none;
}
@keyframes glow{
    0%{
        text-shadow:
        0 0 5px rgba(6,182,212,.5);
    }

    50%{
        text-shadow:
        0 0 20px rgba(139,92,246,.8),
        0 0 40px rgba(139,92,246,.5);
    }

    100%{
        text-shadow:
        0 0 5px rgba(6,182,212,.5);
    }
}

@keyframes shine{
    0%{
        left:-150%;
    }

    100%{
        left:200%;
    }
}
.social-section{
    text-align:center;
    margin:50px 0;
}

.social-section h3{
    margin-bottom:20px;
    font-size:24px;
    font-weight:700;
    color:#fff;
}

.social-links{
    display:flex;
    justify-content:center;
}

.social-btn{
    width:80px;
    height:80px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:20px;
    background:#0f172a;
    border:1px solid rgba(255,255,255,.1);
    transition:.3s;
}

.social-btn img{
    width:42px;
    height:42px;
}

.discord{
    box-shadow:
    0 0 20px rgba(88,101,242,.4);
}

.social-btn:hover{
    transform:translateY(-8px);
    box-shadow:
    0 0 30px rgba(88,101,242,.8);
}

.rating-section{
    max-width:900px;
    margin:50px auto;
    padding:20px;
}

.rating-box{
    background:#0f172a;
    padding:25px;
    border-radius:20px;
    border:1px solid rgba(255,255,255,.1);
}

.stars{
    font-size:35px;
    cursor:pointer;
    margin-bottom:15px;
}

.stars span{
    opacity:.4;
    transition:.3s;
}

.stars span.active{
    opacity:1;
}

#comment{
    width:100%;
    min-height:100px;
    background:#111827;
    color:white;
    border:none;
    border-radius:12px;
    padding:15px;
    margin-bottom:15px;
}

.rating-box button{
    width:100%;
    padding:15px;
    border:none;
    border-radius:12px;
    color:white;
    font-weight:bold;
    cursor:pointer;
    background:linear-gradient(
        90deg,
        #8b5cf6,
        #06b6d4
    );
}

.review-item{
    background:#0f172a;
    margin-top:15px;
    padding:15px;
    border-radius:15px;
}

.review-item h3{
    margin:0 0 10px;
    color:#facc15;
}

.review-item p{
    margin:0;
    color:#e5e7eb;
    line-height:1.6;
}

.rating-summary{
    display:flex;
    justify-content:center;
    margin-bottom:20px;
}

.rating-score{
    text-align:center;
    background:#111827;
    padding:20px 30px;
    border-radius:20px;
}

.rating-score span{
    display:block;
    font-size:50px;
    font-weight:800;
    color:#facc15;
}

.rating-score small{
    color:#9ca3af;
}

.review-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:10px;
}

.review-name{
    color:#06b6d4;
    font-weight:700;
}

.review-date{
    color:#9ca3af;
    font-size:12px;
}

.sidebar-rating{
    margin-top:auto;
    margin-left:20px;
    margin-right:20px;
    margin-bottom:20px;

    padding:15px;
    background:#111827;
    border:1px solid rgba(255,255,255,.1);
    border-radius:15px;
    text-align:center;
}

.sidebar-rating h3{
    margin:0 0 10px;
    color:#facc15;
}

.sidebar-rating p{
    margin:0;
    font-size:24px;
    font-weight:700;
    color:#fff;
}

.sidebar-rating small{
    color:#9ca3af;
}

.delete-review-btn{
    margin-top:10px;
    padding:8px 14px;
    background:#dc2626;
    color:white;
    border:none;
    border-radius:10px;
    cursor:pointer;
    font-weight:600;
}

.sidebar-header{
    text-align:center;
    padding:20px;
    font-size:24px;
    font-weight:800;
    color:#fff;
    border-bottom:1px solid rgba(255,255,255,.1);

    background:linear-gradient(
        90deg,
        #8b5cf6,
        #06b6d4
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.discord-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    width:50px;
    height:50px;

    border-radius:4px;

    background:#0f172a;

    border:2px solid rgba(88,101,242,.4);

    box-shadow:
        0 0 20px rgba(88,101,242,.4);

    transition:.3s;
}

.discord-btn:hover{
    transform:translateY(-8px);

    box-shadow:
        0 0 35px rgba(88,101,242,.8);
}

.discord-logo{
    width:45px;
    height:45px;
    object-fit:contain;
  }

#typing-text{
    color:#06b6d4;
    font-weight:700;
    transition:.5s;
    }
    
