.royal-box {
  background: linear-gradient(135deg, #1e1e2f, #2c2c54);
  color: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  border-left: 5px solid #d4af37;
}

.royal-title {
  color: #d4af37;
  font-weight: 600;
  margin-bottom: 15px;
}

.royal-text {
  font-size: 15px;
  line-height: 1.6;
}

.meeting-box {
  background: rgba(255,255,255,0.08);
  padding: 12px;
  border-radius: 10px;
  margin-top: 15px;
}

.meeting-box a {
  color: #ffd700;
  text-decoration: none;
  font-weight: 500;
}
.flash-news {
  position: relative;
  background: linear-gradient(90deg, #0f172a, #1e3a8a);
  color: white;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.2);
}

.flash-label {
  background: #FFD700;
  color: #111;
  font-weight: bold;
  padding: 10px 20px;
  animation: blink 1s infinite;
}
.flash-text {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.flash-text span {
  display: inline-block;
  padding-left: 100%;
  white-space: nowrap;
  animation: scrollText 28s linear infinite;
  font-weight: 500;
}

.flash-text a {
  color: #4ADE80;
  font-weight: bold;
  text-decoration: none;
}

/* Scrolling animation */
@keyframes scrollText {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* Blinking animation */
@keyframes blink {
  50% { opacity: 0.3; }
}
