:root {
    --primary-blue: #007AFF;
    --dark-blue: #004AAD;
    --tech-black: #1A1B1E;
    --tech-yellow: #FFD700;
    --neon-blue: #00F7FF;
}

/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background-image: url('https://res.cloudinary.com/dnrb6jkga/image/upload/v1735248217/blob_https___xheteqshra.llhqvqibef_kjzmpb.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
}

@media screen and (max-width: 768px) {
    body {
        background-image: url('https://res.cloudinary.com/dnrb6jkga/image/upload/v1735248217/blob_https___xheteqshra.llhqvqibef_xlvday.jpg');
        background-size: cover;
        background-position: top center;
    }
}

/* Overlay for better readability */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 4, 40, 0.9), rgba(0, 4, 40, 0.7));
    z-index: -1;
}
/* Header styles */
.header {
    background: rgba(0, 122, 255, 0.1);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--primary-blue);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

/* Navigation styles */
.nav-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav {
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

nav ul li a {
    text-decoration: none;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell;
    transition: color 0.3s;
    color: var(--neon-blue);
}

nav ul li a:hover {
    color: var(--tech-yellow);
}

/* Logo styles */
.logo {
    height: 44px;
    width: auto;
}

@media screen and (max-width: 768px) {
    .logo {
        height: 50px; /* Still keeping it substantial on mobile */
    }
    
    .logo-link {
        display: block;
        padding: 5px;
    }
}

.logo-link {
    display: flex;
    align-items: center;
    height: 44px;
}

/* Hero image styles */
.hero-image {
    width: 100%;
    max-width: 1200px;
    margin: 5px auto;
    padding: 0 20px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 247, 255, 0.2);
    margin-top: 70px;
}

/* Video container styles */
.video-container {
    background: rgba(255, 255, 255, 0);
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 5px;
    padding: 5px;
}

.video-item {
    background: rgba(0, 122, 255, 0.1);
    border: 1px solid var(--primary-blue);
    box-shadow: 0 0 15px rgba(0, 247, 255, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    padding: 15px;
    border-radius: 8px;
    margin: 0 auto;
    width: 90%;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 247, 255, 0.4);
}

.video-item iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 4px;
}

.auth-buttons {
    display: flex;
    gap: 8px;
}

.auth-btn {
    padding: 6px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    font-family: 'Share Tech Mono', monospace;
    letter-spacing: 1px;
    font-size: 12px;
}

.login {
    background-color: transparent;
    border: 1px solid #ffd700;
    color: #ffd700;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
    animation: lightningPulse 1.5s infinite;
}

.register {
    background: linear-gradient(45deg, #ffd700, #ff8c00);
    border: none;
    color: #000;
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.5);
    animation: lightningGlow 2s infinite;
}

.login:hover, .register:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.login::before, .register::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    animation: lightningMove 2s infinite;
}

@keyframes lightningPulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    }
}

@keyframes lightningGlow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 140, 0, 0.8);
    }
}

@keyframes lightningMove {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}
.video-item h3 {
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    letter-spacing: 1px;
    margin: 10px 0 8px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

  .video-description {
      font-family: 'Share Tech Mono', monospace;
      color: #00BFFF;
      font-size: 14px;
      line-height: 1.4;
      padding: 8px;
      border-top: 1px solid rgba(0, 191, 255, 0.2);
      background: rgba(0, 0, 0, 0.2);
      border-radius: 0 0 8px 8px;
      text-align: center;
      overflow: hidden;
      white-space: nowrap;
      animation: typing 3s steps(40, end);
  }

  @keyframes typing {
      from { width: 0 }
      to { width: 100% }
  }

.video-wrapper {
    position: relative;
}

.thumbnail-container {
    position: relative;
    width: 100%;
}

.video-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: rgba(0, 0, 0, 0.9);
}

.play-icon {
    color: white;
    font-size: 24px;
}

.video-controls {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 10;
}

.video-controls button {
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: white;
    padding: 5px 10px;
    margin-left: 5px;
    cursor: pointer;
    border-radius: 4px;
}
.replay-text {
    text-align: center;
    margin: 5px auto;
}

.replay-text h2 {
    margin-bottom: 5px;
}

.replay-text p {
    color: #fff;
    text-shadow: 0 0 10px #fff;
    font-weight: bold;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    padding: 5px 15px;
    animation: techGlow 2s infinite;
}

@keyframes techGlow {
    0%, 100% {
        text-shadow: 0 0 10px #00ff00;
        border-color: #00ff00;
    }
    50% {
        text-shadow: 0 0 20px #0ff, 0 0 30px #0ff;
        color: #0ff;
        border-color: #0ff;
    }
}
  .replay-text h2 {
      color: #ffffff;
      font-size: 2.5rem;
      text-transform: uppercase;
      letter-spacing: 4px;
      font-family: 'Orbitron', sans-serif;
      text-shadow: 
          0 0 5px #4df3ff,
          0 0 10px #4df3ff,
          0 0 20px #4df3ff;
      animation: glow 2s ease-in-out infinite alternate;
      margin-bottom: 5px;
      display: block;
    }

    .bukti-text {
        display: flex;
        justify-content: center;
        width: 100%;
        margin: 0px 0;
    }
    
    .side-button {
        padding: 8px 15px;
        width: 90px;
        height: 35px;
        font-size: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
    }
    
    /* tampilan mode hp */
    @media screen and (max-width: 768px) {
        .side-button {
            padding: 8px 15px;
            width: 90px;
            height: 50px;
            font-size: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            white-space: nowrap;
            margin: 10px;
        }
    
        .bukti-text {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            gap: 5px;
            margin: 10px 0;
        }
    }

    /* tampilan mode pc */
    @media screen and (min-width: 769px) {
        .bukti-text {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 1160px;
            gap: 30px;
            margin: 15px auto;
            padding: 20px;
            position: relative;
            z-index: 2;
            background: rgba(0, 247, 255, 0.05);
            backdrop-filter: blur(10px);
            border-top: 1px solid var(--neon-blue);
            border-bottom: 1px solid var(--neon-blue);
        }
    
        .replay-text {
            position: relative;
            z-index: 1;
            margin-top: 5px;
        }
    }

    @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700&family=Share+Tech+Mono&family=Chakra+Petch:wght@300;400;500;600&display=swap');
        .side-button {
          text-decoration: none;
          padding: 15px 80px;
          background: rgba(0, 247, 255, 0.05);
          border: 2px solid var(--neon-blue);
          color: var(--neon-blue);
          border-radius: 4px;
          cursor: pointer;
          font-family: 'Chakra Petch', 'Orbitron', sans-serif;
          text-transform: uppercase;
          font-size: 16px;
          font-weight: 600;
          letter-spacing: 3px;
          transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
          position: relative;
          overflow: hidden;
          text-shadow: 0 0 5px rgba(0, 247, 255, 0.5);
          box-shadow: 
              0 0 10px rgba(0, 247, 255, 0.2),
              inset 0 0 5px rgba(0, 247, 255, 0.1);
        }
    
        .side-button:hover {
          transform: scale(1.1);
          background: rgba(0, 247, 255, 0.15);
          color: #fff;
          border-color: #00f7ff;
          text-shadow: 
              0 0 5px #00f7ff,
              0 0 10px #00f7ff,
              0 0 20px #00f7ff;
          box-shadow: 
              0 0 20px rgba(0, 247, 255, 0.4),
              0 0 30px rgba(0, 247, 255, 0.2),
              0 0 40px rgba(0, 247, 255, 0.1),
              inset 0 0 15px rgba(0, 247, 255, 0.2);
          animation: neonPulse 1.5s infinite alternate;
        }
    
      @keyframes neonPulse {
          0% {
              box-shadow: 
                  0 0 20px rgba(0, 247, 255, 0.4),
                  0 0 30px rgba(0, 247, 255, 0.2),
                  0 0 40px rgba(0, 247, 255, 0.1),
                  inset 0 0 15px rgba(0, 247, 255, 0.2);
          }
          100% {
              box-shadow: 
                  0 0 25px rgba(0, 247, 255, 0.6),
                  0 0 40px rgba(0, 247, 255, 0.4),
                  0 0 50px rgba(0, 247, 255, 0.2),
                  inset 0 0 20px rgba(0, 247, 255, 0.3);
          }
      }
    
      .side-button::before {
          content: '';
          position: absolute;
          top: -50%;
          left: -50%;
          width: 200%;
          height: 200%;
          background: linear-gradient(
              45deg,
              transparent,
              rgba(0, 247, 255, 0.1),
              transparent
          );
          transform: rotate(45deg);
          animation: scanline 2s linear infinite;
      }
    
      @keyframes scanline {
          0% {
              transform: translateX(-100%) rotate(45deg);
          }
          100% {
              transform: translateX(100%) rotate(45deg);
          }
      }


  @keyframes flicker {
      0%, 18%, 22%, 25%, 53%, 57%, 100% {
          opacity: 0.9;
      }
      20%, 24%, 55% {
          opacity: 0.3;
      }
  }
  .grid-button {
    background: rgba(0, 247, 255, 0.05);
    border: none;
    color: #fff;
    padding: 15px;
    border-radius: 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.grid-button img {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    filter: drop-shadow(0 4px 8px rgba(0, 247, 255, 0.3));
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.grid-button span {
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    margin: 5px 0 8px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes textPulse {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.5);
    }
}


@keyframes textGlitch {
    0% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-2px);
    }
    50% {
        transform: translateX(2px);
    }
    100% {
        transform: translateX(0);
    }
}

.grid-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 247, 255, 0.3);
    background: rgba(0, 247, 255, 0.1);
}.button-grid {
    padding: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.button-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}
.ios-notification {
    position: fixed;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    background: rgba(28, 28, 30, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 14px;
    padding: 12px;
    color: white;
    z-index: 1000;
    transition: top 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.ios-notification.show {
    top: 10px;
}

.notification-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.app-icon {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    margin-right: 8px;
}

.app-name {
    font-weight: 600;
    font-size: 14px;
}

.notification-time {
    margin-left: auto;
    font-size: 12px;
    color: #8e8e93;
}

.notification-body {
    padding-left: 28px;
}

.notification-title {
    font-weight: 600;
    margin-bottom: 4px;
}

.notification-message {
    font-size: 14px;
    line-height: 1.4;
    color: #e4e4e4;
}

@media screen and (max-width: 768px) {
    .button-grid {
        padding: 20px;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
    }

    .button-row {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin-bottom: 20px;
    }

    .grid-button {
        background: rgba(0, 247, 255, 0.05);
        border: none;
        color: #fff;
        padding: 20px;
        border-radius: 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        backdrop-filter: blur(5px);
        position: relative;
        overflow: hidden;
    }

    .grid-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(0, 247, 255, 0.2), transparent);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .grid-button img {
        width: 60px;
        height: 60px;
        border-radius: 12px;
        filter: drop-shadow(0 4px 8px rgba(0, 247, 255, 0.3));
        transition: transform 0.3s ease;
    }

    .grid-button:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 247, 255, 0.2);
        background: rgba(0, 247, 255, 0.15);
    }

    .grid-button:hover::before {
        opacity: 1;
    }

    .grid-button:hover img {
        transform: scale(1.1);
    }

    .grid-button span {
        font-family: 'Share Tech Mono', monospace;
        font-size: 14px;
        letter-spacing: 1px;
        text-shadow: 0 0 10px rgba(0, 247, 255, 0.5);
    }

    @media screen and (max-width: 768px) {
        .button-row {
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
        
        .grid-button {
            padding: 15px;
        }
        
        .grid-button img {
            width: 50px;
            height: 50px;
        }
    }

    .hero-image img {
        width: 100%;
        height: auto;
    }

    .replay-text h2 {
        font-size: 24px;
    }

    .replay-text p {
        color: #fff;
        text-shadow: 0 0 10px #00ff00;
        font-weight: bold;
        letter-spacing: 1px;
        position: relative;
        padding: 5px 15px;
    }
    
    @keyframes techGlow {
        0%, 100% {
            text-shadow: 0 0 10px #fff;
            border-color: #fff;
        }
        50% {
            text-shadow: 0 0 20px #0ff, 0 0 30px #0ff;
            color: #0ff;
            border-color: #0ff;
        }
    }
    
    @keyframes techScan {
        0% { left: -100%; }
        100% { left: 100%; }
    }

    .marquee-content {
        font-size: 14px;
    }

    .video-container {
        padding: 0px;
    }

    .sidebar {
        width: 80%;
    }

    .sidebar-button {
        padding: 12px;
        font-size: 16px;
    }

    .header .nav-container {
        padding: 10px;
    }

    .logo {
        height: 30px;
    }
}

@media screen and (min-width: 769px) {
    .button-row {
        grid-template-columns: repeat(4, 250px);
        gap: 25px;
        max-width: 1200px;
        margin: 0 auto;
        justify-content: center;
        padding: 0px;
    }

    .grid-button {
        padding: 15px;
        flex-direction: row;
        align-items: center;
        width: 250px;
        height: 60px;
        justify-content: center;
        gap: 15px;
        white-space: normal;
        overflow: visible;
        margin: 10px;
        text-align: center;
    }

    .grid-button img {
        width: 30px;
        height: 30px;
        flex-shrink: 0;
    }

    .grid-button span {
        font-size: 12px;
        text-overflow: initial;
        overflow: visible;
        word-wrap: break-word;
        line-height: 1.2;
    }
}

.floating-button {
    position: fixed;
    bottom: 50px;
    right: 20px;
    z-index: 1000;
}

.floating-button img {
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.floating-button img:hover {
    transform: scale(1.1);
}

.tech-text {
    font-family: 'Share Tech Mono', monospace;
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #00f7ff;
    text-shadow: 
        0 0 5px rgba(0, 247, 255, 0.5),
        0 0 10px rgba(0, 247, 255, 0.3);
    background: linear-gradient(90deg, #00f7ff, #0066ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textPulse 2s infinite;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 10px auto;
    width: 100%;
    position: relative;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.prev-btn,
.next-btn {
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
}

.video-container {
    position: relative;
    padding-bottom: 10px;
}

.pagination button {
    padding: 10px 10px;
    background: #4a90e2;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.pagination button:hover {
    background: #357abd;
}

.pagination span {
    font-family: 'Share Tech Mono', monospace;
    color: #fff;
}

.video-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    position: relative;
    width: 90%;
    height: 90%;
    max-width: 1200px;
}

.popup-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

.winners-table-container {
    max-width: 1200px;
    margin: 10px auto;
    padding: 20px;
    background: rgba(0, 247, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 247, 255, 0.2);
}

.tech-title {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-blue);
    text-align: center;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(0, 247, 255, 0.5);
}

.winners-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
    margin-top: 10px;
}

.winners-table thead tr {
    background: rgba(0, 247, 255, 0.1);
}

.winners-table th {
    padding: 15px;
    text-align: left;
    color: var(--tech-yellow);
    font-family: 'Share Tech Mono', monospace;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.winners-table tbody tr {
    background: rgba(0, 247, 255, 0.03);
    transition: all 0.3s ease;
}

.winners-table tbody tr:hover {
    transform: translateX(10px);
    background: rgba(0, 247, 255, 0.08);
    box-shadow: 
        -5px 0 15px rgba(0, 247, 255, 0.2),
        0 0 10px rgba(0, 247, 255, 0.1);
}

.winners-table td {
    padding: 15px;
    color: #fff;
    font-family: 'Share Tech Mono', monospace;
    border-top: 1px solid rgba(0, 247, 255, 0.1);
    border-bottom: 1px solid rgba(0, 247, 255, 0.1);
}

.winners-table td:first-child {
    border-left: 1px solid rgba(0, 247, 255, 0.1);
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.winners-table td:last-child {
    border-right: 1px solid rgba(0, 247, 255, 0.1);
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.status-active {
    color: #00ff00;
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
}

.circle-menu {
    position: fixed;
    bottom: 30px;
    left: 20px;
    z-index: 1000;
    display: block;
}

.circle-menu__toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #00ffff36;
    border: 2px solid #00ffff;
    cursor: pointer;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 15px #00ffff;
    animation: pulse 2s infinite;
    overflow: hidden;
}

.circle-menu__toggle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    top: 0;
    left: -100%;
    animation: shine 3s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 15px #00ffff;
    }
    50% {
        box-shadow: 0 0 25px #00ffff, 0 0 30px #0066ff;
    }
    100% {
        box-shadow: 0 0 15px #00ffff;
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }
    20% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.circle-menu__items {
    position: absolute;
    bottom: 0;
    right: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    transition: 0.3s;
}

.circle-menu__item {
    position: absolute;
    bottom: 0;
    right: 0;
    transition: 0.3s;
    opacity: 0;
}

.circle-menu__link {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #333;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.circle-menu.active .circle-menu__item {
    opacity: 1;
}

.circle-menu__image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
}

.circle-menu.active .circle-menu__item:nth-child(1) { transform: translate(150px, 5px); }
.circle-menu.active .circle-menu__item:nth-child(2) { transform: translate(130px, -50px); }
.circle-menu.active .circle-menu__item:nth-child(3) { transform: translate(100px, -100px); }
.circle-menu.active .circle-menu__item:nth-child(4) { transform: translate(50px, -130px); }
.circle-menu.active .circle-menu__item:nth-child(5) { transform: translate(-5px, -150px); }

.burger-icon {
    width: 25px;
    height: 20px;
    position: relative;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.burger-icon span {
    display: block;
    width: 100%;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.3s;
}

/* Animation when menu is active */
.circle-menu.active .burger-icon span:first-child {
    transform: rotate(45deg) translate(6px, 6px);
}

.circle-menu.active .burger-icon span:nth-child(2) {
    opacity: 0;
}

.circle-menu.active .burger-icon span:last-child {
    transform: rotate(-45deg) translate(6px, -6px);
}

.video-info p {
    background: linear-gradient(to right, #ff0000, #00ff00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: colorFlow 2s linear infinite;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(255,255,255,0.3);
}

@keyframes colorFlow {
    0% {
        filter: hue-rotate(0deg);
    }
    100% {
        filter: hue-rotate(360deg);
    }
}

.wabutton {
    position: relative;
    top: 40px;
    margin-bottom: fixed;
}

@media screen and (min-width: 769px) {
    .bukti-text {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 1160px;
        gap: 30px;
        margin: 15px auto;
        padding: 20px;
        position: relative;
        z-index: 2;
    }

    .home-trans-innerwrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: rgba(0, 247, 255, 0.05);
        backdrop-filter: blur(10px);
        padding: 10px;
        border-radius: 8px;
        width: 300px;
        border: 1px solid var(--neon-blue);
    }

    .col-xs-8 {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .user_image img {
        width: 40px;
        height: 40px;
        border-radius: 50%;
    }

    .user_detail .name {
        color: #FFD700;
        font-size: 14px;
        margin: 0;
    }

    .user_detail .details {
        color: #fff;
        font-size: 12px;
        margin: 5px 0 0;
    }

    .amount {
        color: #00f7ff;
        font-size: 14px;
        margin: 0;
    }
}

@media screen and (min-width: 769px) {
    .jackpot {
        position: relative;
        width: 300px;
    }

    .img-fluid {
        width: 100%;
        height: auto;
    }

    .txt-overlay {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        width: 100%;
    }

    .text-content {
        color: #FFD700;
        font-size: 18px;
        font-weight: bold;
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    }

    #jackpot_amount {
        font-family: 'Share Tech Mono', monospace;
    }
}

@media screen and (min-width: 769px) {
    .user-list-container {
        width: 300px;
        height: 60px;
        overflow: hidden;
        background: rgba(0, 247, 255, 0.05);
        backdrop-filter: blur(10px);
        border-radius: 8px;
        border: 1px solid var(--neon-blue);
    }

    .user-list {
        animation: slideUp 5s steps(1) infinite;
    }

    .user-item {
        display: flex;
        align-items: center;
        padding: 10px;
        height: 60px;
    }

    @keyframes slideUp {
        0% { transform: translateY(0); }
        20% { transform: translateY(-60px); }
        40% { transform: translateY(-120px); }
        60% { transform: translateY(-180px); }
        80% { transform: translateY(-240px); }
        100% { transform: translateY(0); }
    }
}

@media screen and (min-width: 769px) {
    .user-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px;
        height: 60px;
        width: 100%;
    }

    .col-xs-4 {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        padding-right: 15px;
    }

    .amount {
        color: #00f7ff;
        font-size: 14px;
        margin: 0;
        text-align: right;
    }
}

@media screen and (max-width: 768px) {
    .user-list,
    .col-xs-6 {
      display: none;
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.801);
}

.modal-content {
    position: fixed;
    margin: auto;
    padding: 0;
    width: 90%;
    height: 30%;
    max-width: 800px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1001;
}

.close-btn {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.295);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

#videoFrame {
    background: #000;
}