* { 
    box-sizing: border-box; 
    font-family: 'Inter', sans-serif; 
}

body { 
    background: #370000de; 
}

.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 20px; 
}

.header { 
    background: linear-gradient(135deg, #210101 10%, #5b0000 50%, #210101 100%);
    color: white; 
    padding: 40px 30px; 
    border-radius: 20px; 
    margin-bottom: 15px; 
    text-align: center;
    box-shadow: 0 1px 5px rgb(237 10 10 / 30%);
}

.header h1 { 
    font-size: 42px; 
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.header h1 i { 
    margin-right: 15px; 
}

.header p { 
    text-transform: uppercase;
    font-size: 18px; 
    opacity: 0.9;
}


.logo-link {
  display: inline-block;
  margin-bottom: 10px;
}

.logo-image {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Opsional: Jika ingin menyesuaikan ukuran di perangkat mobile */
@media (max-width: 768px) {
  .logo-image {
    width: 150px;
  }
}


.auth-section {
    margin: -15px 0 25px 0;
    position: relative;
    z-index: 10;
    margin-top: 5px;
}

.auth-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(245, 23, 23, 0.15);
    border: 1px solid rgba(245, 23, 23, 0.1);
    backdrop-filter: blur(10px);
}

.auth-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
    padding: 5px 15px;
    background: linear-gradient(135deg, #f51717 0%, #2b040a 100%);
    color: white;
    border-radius: 50px;
    width: fit-content;
    margin: 0 auto 20px auto;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(245, 23, 23, 0.3);
}

.auth-badge i {
    font-size: 16px;
    animation: pulse 2s ease infinite;
}

.auth-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.btn-auth {
    position: relative;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    border-radius: 16px;
    padding: 12px 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    overflow: hidden;
    min-width: 200px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-auth::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-auth:hover::before {
    left: 100%;
}

.btn-auth:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.btn-auth:active {
    transform: translateY(-2px);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.btn-content i {
    font-size: 24px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.btn-label {
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 1px;
}

.btn-subtitle {
    font-size: 12px;
    opacity: 0.9;
}

.btn-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #FFD700;
    color: #2b040a;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 3;
    animation: bounce 2s ease infinite;
}

/* Register Button */
.btn-register {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 80%, #FF8C00 100%);
    color: #2b040a;
    border: 2px solid #FFD700;
}

.btn-register .btn-content i {
    color: #2b040a;
}

/* Login Button */
.btn-login {
    background: linear-gradient(135deg, #00C851 0%, #007E33 80%, #006400 100%);
    color: white;
    border: 2px solid #00C851;
}

.btn-login .btn-content i {
    color: white;
}

/* Auth Info */
.auth-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding-top: 15px;
    border-top: 2px dashed rgba(245, 23, 23, 0.2);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4a5568;
    font-size: 14px;
    font-weight: 500;
}

.info-item i {
    color: #f51717;
    font-size: 16px;
}

.info-item i.fa-check-circle {
    color: #00C851;
}

.info-item i.fa-bolt {
    color: #FFD700;
}

.info-item i.fa-headset {
    color: #f51717;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

.btn-auth[title] {
    position: relative;
}

.btn-auth[title]:hover::after {
    content: attr(title);
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border-radius: 25px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 1000;
    pointer-events: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.btn-auth[title]:hover::before {
    content: '';
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.8) transparent transparent transparent;
    z-index: 1000;
    pointer-events: none;
}

.btn-rtp {
    background: linear-gradient(135deg, #a30103 0%, #5b1c04 80%, #100101 100%);
    color: white;
    border: 2px solid #ff4e50;
    position: relative;
    overflow: visible;
    animation: rtp-glow 2s ease-in-out infinite;
}

.btn-rtp .btn-icon {
    background: rgba(255, 255, 255, 0.25);
}

.btn-rtp .btn-icon i {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Badge untuk RTP */
.btn-rtp .btn-badge.rtp-badge {
    background: linear-gradient(135deg, #ff0000, #ff6b6b);
    color: white;
    border-color: #ffffff;
    animation: pulse-rtp 1s ease infinite;
}

/* Indicator RTP */
.btn-rtp-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: 20px;
    margin-left: 10px;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
}

.rtp-percent {
    color: #FFD700;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.btn-rtp-indicator i {
    color: #4CAF50;
    font-size: 12px;
    animation: arrow-up 1s ease infinite;
}

/* Info Item RTP */
.rtp-info-item {
    background: linear-gradient(135deg, rgba(255, 78, 80, 0.1), rgba(249, 212, 35, 0.1));
    padding: 5px 15px;
    border-radius: 25px;
    border: 1px solid rgba(255, 78, 80, 0.3);
}

.rtp-info-item i {
    color: #ff4e50 !important;
    animation: fire 1s ease infinite;
}

/* Animations */
@keyframes rtp-glow {
    0%, 100% {
        box-shadow: 0 8px 20px rgba(255, 78, 80, 0.3);
    }
    50% {
        box-shadow: 0 12px 30px rgba(249, 212, 35, 0.6);
    }
}

@keyframes pulse-rtp {
    0%, 100% {
        transform: scale(1);
        background: linear-gradient(135deg, #ff0000, #ff6b6b);
    }
    50% {
        transform: scale(1.1);
        background: linear-gradient(135deg, #ff4444, #ff8888);
    }
}

@keyframes arrow-up {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

@keyframes fire {
    0%, 100% {
        transform: scale(1);
        color: #ff4e50;
    }
    50% {
        transform: scale(1.2);
        color: #f9d423;
    }
}

/* Hover effect khusus untuk tombol RTP */
.btn-rtp:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.btn-rtp:hover .btn-rtp-indicator {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.btn-rtp:hover .rtp-percent {
    color: #fff;
    text-shadow: 0 0 10px #FFD700;
}

/* Responsive adjustments */
@media screen and (max-width: 992px) {
    .auth-buttons {
        gap: 15px;
    }
    
    .btn-rtp {
        min-width: 190px;
    }
    
    .btn-rtp-indicator {
        padding: 3px 8px;
        font-size: 12px;
        margin-left: 6px;
    }
}

@media screen and (max-width: 768px) {
    .auth-buttons {
        flex-wrap: wrap;
    }
    
    .btn-rtp {
        order: 3; /* Muncul di baris baru pada mobile */
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .btn-rtp-indicator {
        padding: 4px 10px;
        font-size: 13px;
    }
    
    .rtp-info-item {
        font-size: 11px;
        padding: 4px 10px;
    }
}

@media screen and (max-width: 480px) {
    .btn-rtp {
        max-width: 280px;
    }
    
    .btn-rtp-indicator {
        padding: 3px 8px;
        font-size: 11px;
    }
    
    .rtp-info-item {
        text-align: center;
    }
}

/* Efek loading untuk tombol RTP */
.btn-rtp.loading .btn-icon i {
    animation: spin 1s linear infinite;
}

.btn-rtp.loading .rtp-percent {
    opacity: 0.5;
}

/* Tooltip khusus untuk RTP */
.btn-rtp[title]:hover::after {
    background: linear-gradient(135deg, #ff4e50, #f9d423);
    color: white;
    font-weight: 600;
}

/* Sparkle effect untuk RTP */
.btn-rtp::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff4e50, #f9d423, #ff4e50);
    border-radius: 18px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-rtp:hover::before {
    opacity: 0.5;
    animation: border-rotate 2s linear infinite;
}

@keyframes border-rotate {
    0% {
        filter: hue-rotate(0deg);
    }
    100% {
        filter: hue-rotate(360deg);
    }
}

/* Badge khusus untuk masing-masing tombol */
.btn-register .hot-badge {
    background: linear-gradient(135deg, #FF6B6B, #FF442B);
    color: white;
    border-color: #ffffff;
    animation: pulse-badge 1.5s ease infinite;
}

.btn-login .member-badge {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    border-color: #ffffff;
}

.btn-rtp .rtp-badge {
    background: linear-gradient(135deg, #ff0000, #ff6b6b);
    color: white;
    border-color: #ffffff;
    animation: pulse-rtp 1s ease infinite;
}

/* Update animasi pulse-badge yang sudah ada */
@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 8px rgba(255, 68, 43, 0.4);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 6px 12px rgba(255, 68, 43, 0.6);
    }
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .auth-section {
        margin: -10px 0 20px 0;
    }

    .auth-container {
        padding: 15px;
    }

    .auth-badge {
        font-size: 12px;
        padding: 4px 12px;
        margin-bottom: 15px;
    }

    .auth-buttons {
        gap: 15px;
    }

    .btn-auth {
        min-width: 160px;
        padding: 10px 20px;
    }

    .btn-content i {
        font-size: 20px;
    }

    .btn-label {
        font-size: 16px;
    }

    .btn-subtitle {
        font-size: 10px;
    }

    .auth-info {
        gap: 20px;
    }

    .info-item {
        font-size: 12px;
    }

    .info-item i {
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .auth-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-auth {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .auth-info {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .btn-badge {
        top: 5px;
        right: 5px;
        font-size: 9px;
        padding: 3px 6px;
    }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    .auth-container {
        background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
        border-color: rgba(245, 23, 23, 0.3);
        margin-top: 8px;
    }

    .info-item {
        color: #e2e8f0;
    }

    .auth-badge {
        background: linear-gradient(135deg, #f51717 0%, #742a2a 100%);
    }
}

/* Loading effect for buttons */
.btn-auth.loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn-auth.loading .btn-content i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Pulse animation for register button */
.btn-register {
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
    }
    50% {
        box-shadow: 0 12px 30px rgba(255, 165, 0, 0.5);
    }
}

.market-menu-container {
    background: #454444;
    border-radius: 5px;
    margin-bottom: 25px;
    padding: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.market-menu-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #edf2f7;
}

.market-menu-title i {
    font-size: 24px;
    color: #f51717;
}

.market-menu-title h2 {
    font-size: 20px;
    color: white;
    font-weight: 600;
}

.market-menu-title span {
    background: #f51717;
    color: white;
    padding: 3px 10px;
    border-radius: 2px;
    font-size: 14px;
    margin-left: auto;
}

.market-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.market-menu-item {
    flex: 0 0 auto;
    background: linear-gradient(135deg, #a70303 0%, #4b000b 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 23, 23, 0.3);
    border: 2px solid transparent;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.market-menu-item i {
    font-size: 16px;
}

.market-menu-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 23, 23, 0.4);
}

.market-menu-item.active {
    background: white;
    color: #f51717;
    border-color: #f51717;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.market-menu-item.active i {
    color: #f51717;
}

.market-menu-item.inactive-market {
    opacity: 0.6;
    background: #cbd5e0;
    box-shadow: none;
    cursor: not-allowed;
}

.market-menu-item.inactive-market:hover {
    transform: none;
}

.markets-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); 
    gap: 25px; 
    transition: all 0.3s ease;
}

.market-card { 
    background: white; 
    border-radius: 1px;
    overflow: hidden; 
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: block;
}

.market-card.hidden {
    display: none;
}

.market-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.market-header { 
    background: linear-gradient(135deg, #a70303 0%, #4b000b 100%); 
    color: white; 
    padding: 20px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.market-header h3 { 
    text-transform: uppercase;
    font-size: 20px; 
    font-weight: 700;
    margin: 0;
}

.market-header h3 i {
    margin-right: 8px;
    opacity: 0.9;
}

.market-date { 
    background: rgba(255,255,255,0.2); 
    padding: 6px 15px; 
    border-radius: 25px; 
    font-size: 14px;
    font-weight: 500;
}

.market-date i {
    margin-right: 5px;
}

.market-body { 
    padding: 20px; 
    background: linear-gradient(135deg, #ff9393 0%, #b1727b 100%);
}

.game-row { 
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    padding: 12px; 
    border-bottom: 1px solid #3f1010;
}

.game-row:last-child { 
    border-bottom: none; 
}

.game-name { 
    font-weight: 600; 
    color: #0b0c0c;
    font-size: 14px;
}

.game-number { 
    text-transform: uppercase;
    font-size: 14px; 
    font-weight: 700; 
    color: #f74545;
    background: #2b0d0d;
    padding: 5px 15px;
    border-radius: 25px;
    letter-spacing: 1px;
    transition: transform 0.2s ease;
    display: inline-block;
}

.game-number:hover {
    transform: scale(1.05);
}

.no-data { 
    text-align: center; 
    padding: 80px 20px; 
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-top: 30px;
}

.no-data i { 
    font-size: 72px; 
    color: #cbd5e0;
    margin-bottom: 20px; 
}

.no-data h3 { 
    font-size: 24px; 
    color: #4a5568;
    margin-bottom: 10px;
}

.no-data p { 
    color: #718096;
    font-size: 16px;
}

footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    color: #ffffff;
    font-size: 14px;
    border-top: 1px solid #e2e8f0;
}

footer i {
    color: #f51717;
    margin: 0 5px;
}

#live-clock { 
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #a70303 0%, #4b000b 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
}

@media screen and (max-width: 768px) {
    .container {
        padding: 10px;
    }

    .header {
        padding: 25px 15px;
    }

    .header h1 {
        font-size: 32px;
    }

    .header h1 i {
        margin-right: 10px;
    }

    .header p {
        font-size: 14px;
    }

    .market-menu-container {
        padding: 12px;
    }

    .market-menu-title h2 {
        font-size: 16px;
    }

    .market-menu {
        gap: 8px;
    }

    .market-menu-item {
        padding: 10px 18px;
        font-size: 13px;
    }

    .market-menu-item i {
        font-size: 14px;
    }

    .markets-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .market-header {
        padding: 15px;
    }

    .market-header h3 {
        font-size: 18px;
    }

    .market-date {
        padding: 4px 10px;
        font-size: 12px;
    }

    .market-body {
        padding: 15px;
    }

    .game-row {
        padding: 10px;
    }

    .game-name {
        font-size: 14px;
    }

    .game-number {
        font-size: 14px;
        padding: 4px 12px;
    }

    #live-clock {
        bottom: 10px;
        right: 10px;
        padding: 8px 15px;
        font-size: 12px;
    }
}

@media screen and (max-width: 480px) {
    .market-menu-item {
        flex: 1 1 auto;
        text-align: center;
        justify-content: center;
    }

    .market-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .game-row {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media print {
    .market-menu-container,
    #live-clock,
    footer {
        display: none;
    }
    
    .market-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* Promo Banner Section */
.promo-banner-section {
    margin: 30px 0 25px 0;
    position: relative;
    z-index: 5;
    width: 100%;
}

.promo-banner-container {
    position: relative;
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(245, 23, 23, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.4);
    transition: all 0.4s ease;
}

.promo-banner-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(245, 23, 23, 0.5);
    border-color: rgba(255, 215, 0, 0.8);
}

.promo-banner-image {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.6s ease;
}

.promo-banner-container:hover .promo-banner-image {
    transform: scale(1.05);
}

.promo-banner-overlay {
    position: absolute;
    top: 3px;
    right: 3px;
    z-index: 2;
}

.promo-badge {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 80%, #FF8C00 100%);
    color: #2b040a;
    font-weight: 800;
    font-size: 10px;
    padding: 10px 10px;
    border-radius: 5px;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.5);
    display: inline-block;
    border: 2px solid white;
    animation: pulse-badge 1.8s ease infinite;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    backdrop-filter: blur(2px);
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 20px rgba(255, 215, 0, 0.5);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 12px 30px rgba(255, 215, 0, 0.8);
    }
}

/* Responsive styles */
@media screen and (max-width: 992px) {
    .promo-banner-section {
        margin: 25px 0 20px 0;
    }
    
    .promo-badge {
        font-size: 14px;
        padding: 8px 18px;
        top: 15px;
        right: 15px;
    }
}

@media screen and (max-width: 768px) {
    .promo-banner-section {
        margin: 20px 0 18px 0;
    }
    
    .promo-banner-container {
        border-radius: 20px;
        border-width: 2px;
    }
    
    .promo-badge {
        font-size: 13px;
        padding: 7px 15px;
        top: 12px;
        right: 12px;
        border-width: 2px;
    }
}

@media screen and (max-width: 480px) {
    .promo-banner-section {
        margin: 15px 0 12px 0;

    }
    
    .promo-banner-container {
        border-radius: 5px;
    }
    
    .promo-badge {
        font-size: 10px;
        padding: 5px 5px;
        top: 8px;
        right: 8px;
        letter-spacing: 1px;
    }
}

/* Marquee Text Styles*/
.marquee-container {
    width: 100%;
    background: linear-gradient(135deg, #210101 0%, #5b0000 50%, #210101 100%);
    border-radius: 5px;
    margin-top: 15px;
    padding: 12px 0;
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 5px 20px rgba(245, 23, 23, 0.3);
    overflow: hidden;
    position: relative;
}

.marquee-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 100%;
    background: linear-gradient(90deg, #210101, transparent);
    z-index: 2;
    pointer-events: none;
}

.marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
    background: linear-gradient(-90deg, #210101, transparent);
    z-index: 2;
    pointer-events: none;
}

.marquee-content {
    display: flex;
    animation: marquee 40s linear infinite;
    white-space: nowrap;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 25px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    padding: 0 10px;
}

.marquee-item i {
    color: #FFD700;
    font-size: 18px;
    margin: 0 5px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

/* Animasi marquee */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive styles untuk marquee */
@media screen and (max-width: 992px) {
    .marquee-container {
        margin-top: 12px;
        padding: 10px 0;
    }
    
    .marquee-item {
        font-size: 14px;
        gap: 20px;
    }
    
    .marquee-item i {
        font-size: 16px;
    }
}

@media screen and (max-width: 768px) {
    .marquee-container {
        margin-top: 10px;
        padding: 8px 0;
        border-radius: 40px;
    }
    
    .marquee-item {
        font-size: 13px;
        gap: 18px;
    }
    
    .marquee-item i {
        font-size: 14px;
    }
    
    .marquee-container::before,
    .marquee-container::after {
        width: 30px;
    }
}

@media screen and (max-width: 480px) {
    .marquee-container {
        margin-top: 8px;
        padding: 6px 0;
        border-radius: 5px;
    }
    
    .marquee-item {
        font-size: 11px;
        gap: 15px;
    }
    
    .marquee-item i {
        font-size: 12px;
    }
    
    .marquee-container::before,
    .marquee-container::after {
        width: 20px;
    }
}

/* Efek glow tambahan untuk marquee */
@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.7);
    }
}

.marquee-item {
    animation: marquee 40s linear infinite, textGlow 3s ease infinite;
}

.marquee-item i {
    animation: iconPulse 2s ease infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}