/* ============================================================
   RTG ONLINE — ORANGE THEME
============================================================ */

.rtg-online-body {
  margin: 0;
  padding: 0;
  font-family: system-ui, sans-serif;
  background: #0a0a0a;
  color: #fff;
  overflow-x: hidden;
}

/* Background */
#rtgOnlineBackground {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, #ff7b00 0, #0a0a0a 60%, #000 100%);
  z-index: -1;
}

/* Top Bar */
.rtg-online-topbar {
  padding: 14px 20px;
  background: rgba(0,0,0,0.85);
  border-bottom: 2px solid #ff7b00;
  display: flex;
  align-items: center;
  gap: 16px;
}

.rtg-online-logo {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  object-fit: cover;
  animation: glowLogo 2s infinite alternate;
}

@keyframes glowLogo {
  from { box-shadow: 0 0 10px #ff7b00; }
  to   { box-shadow: 0 0 22px #ffa64d; }
}

/* Main */
.rtg-online-main {
  padding: 30px 20px;
}

/* Feature Drop Animation */
.rtg-feature-drop > * {
  opacity: 0;
  transform: translateY(40px);
  animation: featureDrop 0.6s forwards;
}

.rtg-feature-drop > *:nth-child(1) { animation-delay: 0.1s; }
.rtg-feature-drop > *:nth-child(2) { animation-delay: 0.2s; }
.rtg-feature-drop > *:nth-child(3) { animation-delay: 0.3s; }
.rtg-feature-drop > *:nth-child(4) { animation-delay: 0.4s; }
.rtg-feature-drop > *:nth-child(5) { animation-delay: 0.5s; }
.rtg-feature-drop > *:nth-child(6) { animation-delay: 0.6s; }

@keyframes featureDrop {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Buttons */
.rtg-online-btn {
  background: #ff7b00;
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  color: #fff;
  transition: 0.2s;
}

.rtg-online-btn:hover {
  background: #ffa64d;
  transform: scale(1.05);
}

/* Cards */
.rtg-online-card {
  background: rgba(0,0,0,0.75);
  border: 2px solid #ff7b00;
  border-radius: 12px;
  padding: 16px;
  margin-top: 12px;
}
