.rc-clock-advanced {
  padding: 8px 14px;
  background: rgba(0,0,0,0.35);
  border-radius: 10px;
  text-align: center;
  width: 100%;
}

.clock-main {
  font-size: 16px;
  font-weight: bold;
  color: #00eaff;
  letter-spacing: 1px;
  animation: neonGlow 1.5s infinite alternate;
}

.clock-date {
  font-size: 11px;
  color: #aaa;
  margin-top: 2px;
}

.clock-controls {
  margin-top: 4px;
}

.clock-controls button {
  background: #111;
  border: 1px solid #00eaff;
  color: #00eaff;
  font-size: 10px;
  padding: 2px 6px;
  margin: 1px;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.2s;
}

.clock-controls button:hover {
  background: #00eaff;
  color: #000;
}

@keyframes neonGlow {
  from {
    text-shadow: 0 0 5px #00eaff;
  }
  to {
    text-shadow: 0 0 15px #00eaff;
  }
}



.rc-topbar-roller {
  background: linear-gradient(180deg,#0b0f1a,#05070d);
  border-bottom: 2px solid #00e5ff;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,255,255,0.15);
}

/* SOL TARAF */

.topbar-left {
  display: flex;
  align-items: center;
  gap: 30px;
}

.logo-text {
  font-weight: bold;
  font-size: 18px;
}

.topbar-menu {
  display: flex;
  gap: 20px;
}

.menu-item {
  opacity: 0.7;
  cursor: pointer;
  transition: 0.2s;
}

.menu-item:hover,
.menu-item.active {
  opacity: 1;
  color: #00e5ff;
}

/* SAĞ TARAF */

.topbar-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.power-chip {
  background: #08121f;
  border: 1px solid #00e5ff;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(0,229,255,0.4);
}

.user-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #0f1725;
  padding: 6px 12px;
  border-radius: 20px;
}

.user-avatar {
  width: 28px;
  height: 28px;
  background: #00e5ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 14px;
}



.adblock-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.adblock-box {
  background: #111;
  border: 2px solid #ff3b3b;
  border-radius: 12px;
  padding: 30px;
  max-width: 400px;
  text-align: center;
  color: #fff;
  animation: fadeIn 0.4s ease;
}

.adblock-box h2 {
  color: #ff3b3b;
  margin-bottom: 10px;
}

.adblock-box button {
  margin-top: 15px;
  padding: 8px 16px;
  background: #ff3b3b;
  border: none;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
