/* Base Reset */
a{outline:0;color:#00f3ff}
a:focus,a:hover{color:#00e1ff;text-decoration:none;text-shadow:0 0 10px rgba(0, 243, 255, 0.5)}

/* Futuristic Variables */
:root {
  --neon-blue: #00f3ff;
  --neon-blue-dark: #00b8ff;
  --neon-purple: #8a2be2;
  --futuristic-bg: #0a0a1a;
  --futuristic-card: #12122a;
  --futuristic-accent: #0066ff;
  --futuristic-glow: 0 0 20px rgba(0, 243, 255, 0.5);
}

/* Global Background */
body {
  background: radial-gradient(ellipse at center, #0a0a1a 0%, #000010 100%) !important;
  font-family: 'Segoe UI', 'Roboto', sans-serif !important;
}

/* Container Styling */
.container, .modal-content, .standard-form-container {
  background: linear-gradient(145deg, rgba(18, 18, 42, 0.9), rgba(10, 10, 26, 0.95)) !important;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 243, 255, 0.3) !important;
  border-radius: 12px;
  box-shadow: var(--futuristic-glow), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

/* Buttons - Futuristic Blue */
.btn-primary, .standard-button-group .btn-primary, .login-button, .play-now, .activation-button {
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-blue-dark)) !important;
  color: #000 !important;
  border: 1px solid var(--neon-blue) !important;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 15px rgba(0, 243, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

.btn-primary:hover, .standard-button-group .btn-primary:hover, .play-now:hover {
  background: linear-gradient(135deg, var(--neon-blue-dark), var(--neon-blue)) !important;
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(0, 243, 255, 0.6), 0 5px 15px rgba(0, 0, 0, 0.3) !important;
  color: #000 !important;
}

/* Secondary Buttons (Red -> Blue) */
.btn-secondary, .daftar-btn, .bonus-slider-modal .activation-button {
  background: linear-gradient(135deg, #0066ff, #0033cc) !important;
  color: white !important;
  border: 1px solid #0066ff !important;
  box-shadow: 0 0 15px rgba(0, 102, 255, 0.4) !important;
}

.btn-secondary:hover, .daftar-btn:hover {
  background: linear-gradient(135deg, #0033cc, #0066ff) !important;
  box-shadow: 0 0 25px rgba(0, 102, 255, 0.6) !important;
}

/* Headers & Titles */
h1, h2, h3, h4, .title, .modal-title, .section-title {
  color: var(--neon-blue) !important;
  text-shadow: 0 0 10px rgba(0, 243, 255, 0.5), 0 0 20px rgba(0, 243, 255, 0.2) !important;
  background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.1), transparent) !important;
  padding: 10px 20px !important;
  border-radius: 8px;
}

/* Form Elements */
input[type="text"], input[type="password"], .form-control {
  background: rgba(10, 10, 26, 0.8) !important;
  border: 1px solid var(--neon-blue) !important;
  color: #fff !important;
  border-radius: 6px;
  transition: all 0.3s ease;
}

input[type="text"]:focus, input[type="password"]:focus {
  box-shadow: 0 0 15px rgba(0, 243, 255, 0.4) !important;
  border-color: var(--neon-blue-dark) !important;
}

/* Tables */
.table-bordered, .standard-content-info table {
  background: rgba(18, 18, 42, 0.8) !important;
  border: 1px solid var(--neon-blue) !important;
  border-radius: 8px;
  overflow: hidden;
}

.table-bordered tr th {
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.8), rgba(0, 51, 153, 0.8)) !important;
  color: white !important;
  border-bottom: 2px solid var(--neon-blue) !important;
}

.table-bordered tr td {
  border-color: rgba(0, 243, 255, 0.2) !important;
  color: #e0e0e0 !important;
}

/* Navigation & Menus */
.top-menu, .site-header, .standard-side-menu {
  background: linear-gradient(90deg, rgba(0, 10, 20, 0.9), rgba(0, 30, 60, 0.9)) !important;
  border: 1px solid rgba(0, 243, 255, 0.3) !important;
}

.top-menu>li:hover, .top-menu>li[data-active="true"] {
  background: linear-gradient(90deg, rgba(0, 243, 255, 0.2), rgba(0, 179, 255, 0.2)) !important;
  color: var(--neon-blue) !important;
}

/* Cards & Game Items */
.game-item, .promotion-item, .card {
  background: linear-gradient(145deg, rgba(18, 18, 42, 0.9), rgba(10, 10, 26, 0.9)) !important;
  border: 1px solid rgba(0, 243, 255, 0.2) !important;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.game-item:hover, .promotion-item:hover {
  transform: translateY(-5px);
  border-color: var(--neon-blue) !important;
  box-shadow: var(--futuristic-glow) !important;
}

/* Progress Bars */
.progressbar, .bonus-range {
  background: rgba(10, 10, 26, 0.8) !important;
  border: 1px solid var(--neon-blue) !important;
}

.proggress, .bonus-range .bubble {
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-blue-dark)) !important;
  box-shadow: 0 0 10px rgba(0, 243, 255, 0.5) !important;
}

/* Modals */
.modal-content {
  background: linear-gradient(145deg, rgba(18, 18, 42, 0.95), rgba(10, 10, 26, 0.98)) !important;
  border: 2px solid var(--neon-blue) !important;
  box-shadow: 0 0 30px rgba(0, 243, 255, 0.3), 0 0 60px rgba(0, 102, 255, 0.2) !important;
}

.modal-header {
  background: linear-gradient(90deg, rgba(0, 102, 255, 0.8), rgba(0, 51, 204, 0.8)) !important;
  border-bottom: 2px solid var(--neon-blue) !important;
}

/* Alerts & Notifications */
.alert-success, .claim-container, .bonus-slider-modal {
  background: linear-gradient(145deg, rgba(0, 100, 0, 0.9), rgba(0, 60, 0, 0.9)) !important;
  border: 1px solid #00ff00 !important;
  box-shadow: 0 0 20px rgba(0, 255, 0, 0.3) !important;
}

.alert-danger, .forgot-password-warning {
  background: linear-gradient(145deg, rgba(100, 0, 0, 0.9), rgba(60, 0, 0, 0.9)) !important;
  border: 1px solid #ff0000 !important;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.3) !important;
}

/* Footer */
.site-footer {
  background: linear-gradient(90deg, rgba(0, 10, 20, 0.9), rgba(0, 30, 60, 0.9)) !important;
  border-top: 2px solid var(--neon-blue) !important;
}

/* Glowing Effects */
.glow {
  position: relative;
}

.glow::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #00f3ff, #0066ff, #8a2be2, #00f3ff);
  background-size: 400%;
  border-radius: inherit;
  z-index: -1;
  filter: blur(10px);
  opacity: 0.3;
  animation: glowing 20s linear infinite;
}

@keyframes glowing {
  0% { background-position: 0 0; }
  50% { background-position: 400% 0; }
  100% { background-position: 0 0; }
}

/* Futuristic Grid Pattern */
.futuristic-grid {
  position: relative;
}

.futuristic-grid::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(0, 243, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 243, 255, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.3;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 10px;
  background: rgba(10, 10, 26, 0.8);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--neon-blue), var(--neon-blue-dark));
  border-radius: 5px;
  border: 2px solid rgba(10, 10, 26, 0.8);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(var(--neon-blue-dark), var(--neon-blue));
  box-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .container, .modal-content {
    margin: 10px;
    padding: 15px;
  }
  
  .btn-primary, .btn-secondary {
    padding: 12px 20px;
    font-size: 14px;
  }
}

/* Loading Animation */
@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.5; }
  100% { opacity: 1; }
}

.loading {
  animation: pulse 1.5s infinite;
}

/* Hover Effects */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 243, 255, 0.3);
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple), var(--neon-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: gradient 3s linear infinite;
}

@keyframes gradient {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}