/* Base styles and animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Styling dasar untuk body */
body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #0a0a0a, #0d1117, #161b22);
    color: #e6e6e6;
    line-height: 1.6;
}

/* Main content */
/* Styling untuk container utama */
.container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1.5rem;
    animation: fadeIn 0.8s ease-out;
}

/* Card styles */
/* Styling untuk grid produk */
.produk-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 1rem;
}

/* Styling untuk item produk individual */
.produk-item {
    background: rgba(22, 27, 34, 0.8);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 191, 255, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.produk-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 15px rgba(0, 191, 255, 0.1);
}

.produk-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.produk-item h2 {
    color: #00bfff;
    margin: 0.8rem 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.produk-item p {
    color: #a8b2c1;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

/* Button styles */
/* Styling untuk tombol */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #00bfff, #0091c2);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #0091c2, #00bfff);
    box-shadow: 0 4px 12px rgba(0, 191, 255, 0.2);
}

/* Responsive adjustments */
/* Media queries untuk responsivitas */
@media (max-width: 768px) {
    .produk-container {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1rem;
    }

    .produk-item {
        padding: 1rem;
    }

    .navbar {
        padding: 0.8rem 1rem;
    }
}

/* Ensure smooth animations */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
/* Styling untuk hero section */
.hero {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(to bottom, #000, #1a1a2e);
}

.produk-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    padding: 15px;
}

.produk-item {
    background-color: #16213e;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.produk-item img {
    width: 85%;
    height: 150px;
    object-fit: contain;
    border-radius: 8px;
    margin: 8px auto 12px;
    background-color: #16213e;
    padding: 10px;
    border: 2px solid #00aaff;
    transition: border-color 0.3s ease;
    display: block;
}

.produk-item h2 {
    color: #00aaff;
    margin: 12px 0;
    font-size: 1.3rem;
}

/* For mobile devices */
@media (max-width: 480px) {
    .produk-container {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 10px;
        padding: 10px;
    }
    
    .produk-container {
        .floating-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background-color: #00aaff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            z-index: 1000;
        }
    
        .floating-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
            background-color: #0095e0;
        }
    
        .floating-btn i {
            font-size: 24px;
        }
    
        /* Responsif untuk perangkat mobile */
        @media (max-width: 768px) {
            .floating-btn {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
            }
            
            .floating-btn i {
                font-size: 20px;
            }
        }
    }
    .produk-item {
        padding: 10px;
    }
    
    .produk-item img {
        height: 120px;
    }
    
    .produk-item h2 {
        font-size: 1.1rem;
    }
    
    .produk-item p {
        font-size: 0.9rem;
    }
}
.produk-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.produk-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 2px solid #00aaff;
    transition: all 0.3s ease;
}

.produk-item h2 {
    color: #00aaff;
    margin: 15px 0;
    font-size: 1.5rem;
}

.produk-item p {
    color: #fff;
    line-height: 1.6;
    margin-bottom: 15px;
}

.produk-item img {
    width: 90%;
    max-width: 160px;
    height: auto;
    margin: 0 auto 10px auto;
    display: block;
    border-radius: 8px;
}

/* Make product images smaller on mobile */
@media (max-width: 480px) {
    .produk-item img {
        max-width: 100px;
        height: auto;
        margin-bottom: 8px;
    }
}
.produk-item:hover {
    transform: translateY(-5px);
}

/* Styling untuk footer */
footer {
    text-align: center;
    padding: 10px;
    background-color: #1a1a2e;
}


.navbar {
    display: flex;
    align-items: center;
    gap: 15px;
}

.navbar .logo {
    height: 40px;
    width: auto;
    border-radius: 5px;
    object-fit: contain;
}

/* FAQ Styles */
/* Styling untuk FAQ section */
.faq-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
}

.faq {
    background-color: #16213e;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.faq h2 {
    color: #00aaff;
    text-align: center;
    margin-bottom: 30px;
}

.faq-item {
    background-color: #1a1a2e;
    padding: 15px;
    margin: 15px 0;
    border-radius: 8px;
    border: 1px solid #00aaff;
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
}

.faq-item h3 {
    margin: 0 0 10px 0;
    color: #00aaff;
}

.faq-item p {
    margin: 0;
    line-height: 1.5;
}

footer {
    text-align: center;
    padding: 15px;
    background-color: #1a1a2e;
    margin-top: 20px;
}

/*TOP UP HTML TODDDD*/
.topup-page{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #121212;
    color: #fff;
}

.header {
    background: linear-gradient(135deg, #003bb9, #0053b9);
    color: white;
    padding: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin: 20px;
}

.header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255,255,255,0.1);
    transform: rotate(-45deg);
    animation: headerWave 2s linear infinite;
}

@keyframes headerWave {
    0% { transform: rotate(-45deg) translateX(-100%); }
    100% { transform: rotate(-45deg) translateX(100%); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.product-card {
    background-color: #1e1e1e;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.product-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid #0038b0;
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, #2563eb, #0951aa);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.4);
}

.intro {
    text-align: center;
    margin: 30px 0;
    padding: 0 20px;
}

.intro h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #60a5fa;
}

.intro p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #a3a3a3;
    max-width: 800px;
    margin: 0 auto;
}

.footer {
    background-color: #1e1e1e;
    text-align: center;
    padding: 30px 20px;
    margin-top: 50px;
}

.footer p {
    color: #a3a3a3;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #60a5fa;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .products {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}
/* Styling untuk deskripsi footer */
footer p:first-of-type {
    color: #a8b2c1;
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 1000px;
    margin: 20px auto;
    padding: 0 20px;
    text-align: justify;
    animation: fadeInUp 5s ease-out;
    border-left: 3px solid #00aaff;
    padding-left: 15px;
    background: linear-gradient(to right, rgba(0, 170, 255, 0.1), transparent);
}

footer p:not(:first-of-type) {
    color: #666;
    font-size: 0.85rem;
    margin: 8px 0;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

footer p:not(:first-of-type):hover {
    opacity: 1;
    color: #00aaff;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slider styles - perbaikan untuk versi desktop */
.slider {
    position: relative;
    width: 100%;
    padding-top: 40%; /* Increased from 35% */
    overflow: hidden;
    margin-top: 20px;
    max-height: 320px; /* Increased from 280px */
}

@media (min-width: 992px) {
    .slider {
        padding-top: 30%; /* Increased from 25% */
        max-height: 260px; /* Increased from 220px */
    }
}

.slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 500%;
    height: 100%;
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    width: 20%;
    height: 100%;
    flex-shrink: 0;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 1rem;
    cursor: pointer;
    border-radius: 50%;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.8);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}


.welcome-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.welcome-popup.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background-color: #16213e;
    border-radius: 15px;
    padding: 20px;
    max-width: 300px; /* Lebih kecil dari 500px */
    width: 85%; /* Lebih kecil dari 90% */
    text-align: center;
    position: relative;
    border: 2px solid #00aaff;
    box-shadow: 0 0 30px rgba(0, 170, 255, 0.3);
}

.popup-image {
    width: 120px; /* Lebih kecil dari 200px */
    height: auto;
    border-radius: 10px;
    object-fit: contain;
    margin: 0 auto 15px; /* Margin bawah lebih kecil */
    border: 2px solid #00aaff; /* Border lebih tipis */
}

.popup-title {
    color: #00aaff;
    font-size: 18px; /* Lebih kecil dari 24px */
    margin-bottom: 10px; /* Margin lebih kecil */
}

.popup-message {
    color: white;
    margin-bottom: 15px;
    line-height: 1.4;
    font-size: 14px; /* Tambahan untuk text yang lebih kecil */
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    color: #00aaff;
    cursor: pointer;
    background: none;
    border: none;
    transition: color 0.3s ease;
}

.popup-close:hover {
    color: white;
}

.popup-image {
    width: 200px;
    height: auto;
    border-radius: 10px; /* Mengubah dari 50% (lingkaran) menjadi 10px (sudut membulat) */
    object-fit: contain; /* Mengubah dari cover menjadi contain agar gambar tidak terpotong */
    margin: 0 auto 20px;
    border: 3px solid #00aaff;
}

.popup-title {
    color: #00aaff;
    font-size: 24px;
    margin-bottom: 15px;
}

.popup-message {
    color: white;
    margin-bottom: 20px;
    line-height: 1.6;
}

.produk-item a {
    text-decoration: none;
    color: inherit;
}
/* Styling untuk marquee/teks berjalan */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background: #222a35;
    padding: 9px 0;
}
.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 17s linear infinite;
    color: #ffcc00;      /* Ganti dengan warna teks yang kamu suka */
    font-weight: bold;   /* Opsional, biar lebih tebal */
}
  @keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
  }
.produk-item {
    position: relative;
}

.badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    border-radius: 3px;
    color: white;
    font-size: 12px;
    font-weight: bold;
    z-index: 1;
    animation: badgePulse 2s infinite;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transform-origin: center;
}

.badge-terlaris {
    background: linear-gradient(45deg, #ff4e50, #f9d423);
}

.badge-termurah {
    background: linear-gradient(45deg, #00b09b, #96c93d);
}

@keyframes badgePulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    }
    100% {
        transform: scale(1);
    }
}

/* Efek hover pada badge */
.badge:hover {
    animation: badgeShake 0.5s ease-in-out;
}

@keyframes badgeShake {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-5deg);
    }
    75% {
        transform: rotate(5deg);
    }
}
/* Styling untuk marquee/teks berjalan */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background: #222a35;
    padding: 9px 0;
}
.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 17s linear infinite;
    color: #ffcc00;      /* Ganti dengan warna teks yang kamu suka */
    font-weight: bold;   /* Opsional, biar lebih tebal */
}
  @keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
  }
/* Styling untuk marquee/teks berjalan */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background: #222a35;
    padding: 9px 0;
}
.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 17s linear infinite;
    color: #ffcc00;      /* Ganti dengan warna teks yang kamu suka */
    font-weight: bold;   /* Opsional, biar lebih tebal */
}
  @keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
  }
/* Styling untuk marquee/teks berjalan */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background: #222a35;
    padding: 9px 0;
}
.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 17s linear infinite;
    color: #ffcc00;      /* Ganti dengan warna teks yang kamu suka */
    font-weight: bold;   /* Opsional, biar lebih tebal */
}
  @keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
  }
/* Styling untuk marquee/teks berjalan */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background: #222a35;
    padding: 9px 0;
}
.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 17s linear infinite;
    color: #ffcc00;      /* Ganti dengan warna teks yang kamu suka */
    font-weight: bold;   /* Opsional, biar lebih tebal */
}
  @keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
  }
/* Styling untuk marquee/teks berjalan */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background: #222a35;
    padding: 9px 0;
}
.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 17s linear infinite;
    color: #ffcc00;      /* Ganti dengan warna teks yang kamu suka */
    font-weight: bold;   /* Opsional, biar lebih tebal */
}
  @keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
  }
/* Styling untuk marquee/teks berjalan */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background: #222a35;
    padding: 9px 0;
}
.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 17s linear infinite;
    color: #ffcc00;      /* Ganti dengan warna teks yang kamu suka */
    font-weight: bold;   /* Opsional, biar lebih tebal */
}
  @keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
  }
/* Styling untuk marquee/teks berjalan */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background: #222a35;
    padding: 9px 0;
}
.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 17s linear infinite;
    color: #ffcc00;      /* Ganti dengan warna teks yang kamu suka */
    font-weight: bold;   /* Opsional, biar lebih tebal */
}
  @keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
  }
/* Styling untuk marquee/teks berjalan */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background: #222a35;
    padding: 9px 0;
}
.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 17s linear infinite;
    color: #ffcc00;      /* Ganti dengan warna teks yang kamu suka */
    font-weight: bold;   /* Opsional, biar lebih tebal */
}
  @keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
  }
/* Styling untuk marquee/teks berjalan */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background: #222a35;
    padding: 9px 0;
}
.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 17s linear infinite;
    color: #ffcc00;      /* Ganti dengan warna teks yang kamu suka */
    font-weight: bold;   /* Opsional, biar lebih tebal */
}
  @keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
  }
/* Styling untuk marquee/teks berjalan */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background: #222a35;
    padding: 9px 0;
}
.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 17s linear infinite;
    color: #ffcc00;      /* Ganti dengan warna teks yang kamu suka */
    font-weight: bold;   /* Opsional, biar lebih tebal */
}
  @keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
  }
/* Styling untuk marquee/teks berjalan */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background: #222a35;
    padding: 9px 0;
}
.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 17s linear infinite;
    color: #ffcc00;      /* Ganti dengan warna teks yang kamu suka */
    font-weight: bold;   /* Opsional, biar lebih tebal */
}
  @keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
  }
/* Styling untuk marquee/teks berjalan */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background: #222a35;
    padding: 9px 0;
}
.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 17s linear infinite;
    color: #ffcc00;      /* Ganti dengan warna teks yang kamu suka */
    font-weight: bold;   /* Opsional, biar lebih tebal */
}
  @keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
  }
/* Styling untuk marquee/teks berjalan */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background: #222a35;
    padding: 9px 0;
}
.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 17s linear infinite;
    color: #ffcc00;      /* Ganti dengan warna teks yang kamu suka */
    font-weight: bold;   /* Opsional, biar lebih tebal */
}
  @keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
  }
/* Styling untuk marquee/teks berjalan */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background: #222a35;
    padding: 9px 0;
}
.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 17s linear infinite;
    color: #ffcc00;      /* Ganti dengan warna teks yang kamu suka */
    font-weight: bold;   /* Opsional, biar lebih tebal */
}
  @keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
  }
/* Styling untuk marquee/teks berjalan */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background: #222a35;
    padding: 9px 0;
}
.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 17s linear infinite;
    color: #ffcc00;      /* Ganti dengan warna teks yang kamu suka */
    font-weight: bold;   /* Opsional, biar lebih tebal */
}
  @keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
  }
/* Styling untuk marquee/teks berjalan */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background: #222a35;
    padding: 9px 0;
}
.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 17s linear infinite;
    color: #ffcc00;      /* Ganti dengan warna teks yang kamu suka */
    font-weight: bold;   /* Opsional, biar lebih tebal */
}
  @keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
  }
/* Styling untuk marquee/teks berjalan */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background: #222a35;
    padding: 9px 0;
}
.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 17s linear infinite;
    color: #ffcc00;      /* Ganti dengan warna teks yang kamu suka */
    font-weight: bold;   /* Opsional, biar lebih tebal */
}
  @keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
  }
/* Styling untuk marquee/teks berjalan */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background: #222a35;
    padding: 9px 0;
}
.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 17s linear infinite;
    color: #ffcc00;      /* Ganti dengan warna teks yang kamu suka */
    font-weight: bold;   /* Opsional, biar lebih tebal */
}
  @keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
  }
/* Styling untuk marquee/teks berjalan */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background: #222a35;
    padding: 9px 0;
}
.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 17s linear infinite;
    color: #ffcc00;      /* Ganti dengan warna teks yang kamu suka */
    font-weight: bold;   /* Opsional, biar lebih tebal */
}
  @keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
  }
/* Styling untuk marquee/teks berjalan */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background: #222a35;
    padding: 9px 0;
}
.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 17s linear infinite;
    color: #ffcc00;      /* Ganti dengan warna teks yang kamu suka */
    font-weight: bold;   /* Opsional, biar lebih tebal */
}
  @keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
  }
/* Styling untuk marquee/teks berjalan */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background: #222a35;
    padding: 9px 0;
}
.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 17s linear infinite;
    color: #ffcc00;      /* Ganti dengan warna teks yang kamu suka */
    font-weight: bold;   /* Opsional, biar lebih tebal */
}
  @keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
  }
/* Styling untuk marquee/teks berjalan */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background: #222a35;
    padding: 9px 0;
}
.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 17s linear infinite;
    color: #ffcc00;      /* Ganti dengan warna teks yang kamu suka */
    font-weight: bold;   /* Opsional, biar lebih tebal */
}
  @keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
  }
/* Styling untuk marquee/teks berjalan */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background: #222a35;
    padding: 9px 0;
}
.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 17s linear infinite;
    color: #ffcc00;      /* Ganti dengan warna teks yang kamu suka */
    font-weight: bold;   /* Opsional, biar lebih tebal */
}
  @keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
  }
/* Styling untuk marquee/teks berjalan */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background: #222a35;
    padding: 9px 0;
}
.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 17s linear infinite;
    color: #ffcc00;      /* Ganti dengan warna teks yang kamu suka */
    font-weight: bold;   /* Opsional, biar lebih tebal */
}
  @keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
  }
/* Styling untuk marquee/teks berjalan */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background: #222a35;
    padding: 9px 0;
}
.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 17s linear infinite;
    color: #ffcc00;      /* Ganti dengan warna teks yang kamu suka */
    font-weight: bold;   /* Opsional, biar lebih tebal */
}
  @keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
  }
/* Styling untuk marquee/teks berjalan */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background: #222a35;
    padding: 9px 0;
}
.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 17s linear infinite;
    color: #ffcc00;      /* Ganti dengan warna teks yang kamu suka */
    font-weight: bold;   /* Opsional, biar lebih tebal */
}
  @keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
  }
/* Styling untuk marquee/teks berjalan */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background: #222a35;
    padding: 9px 0;
}
.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 17s linear infinite;
    color: #ffcc00;      /* Ganti dengan warna teks yang kamu suka */
    font-weight: bold;   /* Opsional, biar lebih tebal */
}
  @keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
  }
/* Styling untuk marquee/teks berjalan */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background: #222a35;
    padding: 9px 0;
}
.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 17s linear infinite;
    color: #ffcc00;      /* Ganti dengan warna teks yang kamu suka */
    font-weight: bold;   /* Opsional, biar lebih tebal */
}
  @keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
  }
/* Styling untuk marquee/teks berjalan */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background: #222a35;
    padding: 9px 0;
}
.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 17s linear infinite;
    color: #ffcc00;      /* Ganti dengan warna teks yang kamu suka */
    font-weight: bold;   /* Opsional, biar lebih tebal */
}
  @keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
  }
/* Styling untuk marquee/teks berjalan */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background: #222a35;
    padding: 9px 0;
}
.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 17s linear infinite;
    color: #ffcc00;      /* Ganti dengan warna teks yang kamu suka */
    font-weight: bold;   /* Opsional, biar lebih tebal */
}
  @keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
  }
/* Styling untuk marquee/teks berjalan */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background: #222a35;
    padding: 9px 0;
}
.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 17s linear infinite;
    color: #ffcc00;      /* Ganti dengan warna teks yang kamu suka */
    font-weight: bold;   /* Opsional, biar lebih tebal */
}
  @keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
  }
/* Styling untuk marquee/teks berjalan */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background: #222a35;
    padding: 9px 0;
}
.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 17s linear infinite;
    color: #ffcc00;      /* Ganti dengan warna teks yang kamu suka */
    font-weight: bold;   /* Opsional, biar lebih tebal */
}
  @keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
  }
/* Styling untuk marquee/teks berjalan */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background: #222a35;
    padding: 9px 0;
}
.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 17s linear infinite;
    color: #ffcc00;      /* Ganti dengan warna teks yang kamu suka */
    font-weight: bold;   /* Opsional, biar lebih tebal */
}
  @keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
  }
/* Styling untuk marquee/teks berjalan */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background: #222a35;
    padding: 9px 0;
}
.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 17s linear infinite;
    color: #ffcc00;      /* Ganti dengan warna teks yang kamu suka */
    font-weight: bold;   /* Opsional, biar lebih tebal */
}
  @keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
  }
/* Styling untuk marquee/teks berjalan */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background: #222a35;
    padding: 9px 0;
}
.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 17s linear infinite;
    color: #ffcc00;      /* Ganti dengan warna teks yang kamu suka */
    font-weight: bold;   /* Opsional, biar lebih tebal */
}
  @keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
  }
/* Styling untuk marquee/teks berjalan */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background: #222a35;
    padding: 9px 0;
}
.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 17s linear infinite;
    color: #ffcc00;      /* Ganti dengan warna teks yang kamu suka */
    font-weight: bold;   /* Opsional, biar lebih tebal */
}
  @keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
  }
/* Styling untuk marquee/teks berjalan */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background: #222a35;
    padding: 9px 0;
}
.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 17s linear infinite;
    color: #ffcc00;      /* Ganti dengan warna teks yang kamu suka */
    font-weight: bold;   /* Opsional, biar lebih tebal */
}
  @keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
  }
/* Styling untuk marquee/teks berjalan */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background: #222a35;
    padding: 9px 0;
}
.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 17s linear infinite;
    color: #ffcc00;      /* Ganti dengan warna teks yang kamu suka */
    font-weight: bold;   /* Opsional, biar lebih tebal */
}
  @keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
  }
/* Styling untuk marquee/teks berjalan */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background: #222a35;
    padding: 9px 0;
}
.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 17s linear infinite;
    color: #ffcc00;      /* Ganti dengan warna teks yang kamu suka */
    font-weight: bold;   /* Opsional, biar lebih tebal */
}
  @keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
  }
/* Styling untuk marquee/teks berjalan */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background: #222a35;
    padding: 9px 0;
}
.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 17s linear infinite;
    color: #ffcc00;      /* Ganti dengan warna teks yang kamu suka */
    font-weight: bold;   /* Opsional, biar lebih tebal */
}
  @keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
  }
/* Styling untuk marquee/teks berjalan */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background: #222a35;
    padding: 9px 0;
}
.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 17s linear infinite;
    color: #ffcc00;      /* Ganti dengan warna teks yang kamu suka */
    font-weight: bold;   /* Opsional, biar lebih tebal */
}
  @keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
  }
/* Styling untuk marquee/teks berjalan */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background: #222a35;
    padding: 9px 0;
}
.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 17s linear infinite;
    color: #ffcc00;      /* Ganti dengan warna teks yang kamu suka */
    font-weight: bold;   /* Opsional, biar lebih tebal */
}
  @keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
  }
/* Styling untuk marquee/teks berjalan */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background: #222a35;
    padding: 9px 0;
}
.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 17s linear infinite;
    color: #ffcc00;      /* Ganti dengan warna teks yang kamu suka */
    font-weight: bold;   /* Opsional, biar lebih tebal */
}
  @keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
  }
/* Styling untuk marquee/teks berjalan */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background: #222a35;
    padding: 9px 0;
}
.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 17s linear infinite;
    color: #ffcc00;      /* Ganti dengan warna teks yang kamu suka */
    font-weight: bold;   /* Opsional, biar lebih tebal */
}
  @keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
  }
/* Styling untuk marquee/teks berjalan */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background: #222a35;
    padding: 9px 0;
}
.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 17s linear infinite;
    color: #ffcc00;      /* Ganti dengan warna teks yang kamu suka */
    font-weight: bold;   /* Opsional, biar lebih tebal */
}
  @keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
  }
/* Styling untuk marquee/teks berjalan */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background: #222a35;
    padding: 9px 0;
}
.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 17s linear infinite;
    color: #ffcc00;      /* Ganti dengan warna teks yang kamu suka */
    font-weight: bold;   /* Opsional, biar lebih tebal */
}
  @keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
  }
/* Styling untuk marquee/teks berjalan */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background: #222a35;
    padding: 9px 0;
}
.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 17s linear infinite;
    color: #ffcc00;      /* Ganti dengan warna teks yang kamu suka */
    font-weight: bold;   /* Opsional, biar lebih tebal */
}
  @keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
  }
/* Styling untuk marquee/teks berjalan */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background: #222a35;
    padding: 9px 0;
}
.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 17s linear infinite;
    color: #ffcc00;      /* Ganti dengan warna teks yang kamu suka */
    font-weight: bold;   /* Opsional, biar lebih tebal */
}
  @keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
  }
/* Styling untuk marquee/teks berjalan */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background: #222a35;
    padding: 9px 0;
}
.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 17s linear infinite;
    color: #ffcc00;      /* Ganti dengan warna teks yang kamu suka */
    font-weight: bold;   /* Opsional, biar lebih tebal */
}
  @keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
  }
/* Styling untuk marquee/teks berjalan */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background: #222a35;
    padding: 9px 0;
}
.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 17s linear infinite;
    color: #ffcc00;      /* Ganti dengan warna teks yang kamu suka */
    font-weight: bold;   /* Opsional, biar lebih tebal */
}
  @keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
  }
/* Styling untuk marquee/teks berjalan */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background: #222a35;
    padding: 9px 0;
}
.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 17s linear infinite;
    color: #ffcc00;      /* Ganti dengan warna teks yang kamu suka */
    font-weight: bold;   /* Opsional, biar lebih tebal */
}
  @keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
  }
/* Styling untuk marquee/teks berjalan */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background: #222a35;
    padding: 9px 0;
}
.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 17s linear infinite;
    color: #ffcc00;      /* Ganti dengan warna teks yang kamu suka */
    font-weight: bold;   /* Opsional, biar lebih tebal */
}
  @keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
  }
/* Styling untuk marquee/teks berjalan */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background: #222a35;
    padding: 9px 0;
}
.marquee span {
    display: inline-block;
    padding-left: 100