/* Overall Page */
.chat7x-ui {
  min-height:100vh;
  background: linear-gradient(135deg,#6a0dad,#9b30ff,#d58eff);
  display:flex;
  justify-content:center;
  align-items:flex-start;
  padding-top:50px;
  font-family: 'Arial', sans-serif;
  text-align:center;
}

/* Main Box */
.chat-avenue-style {
  width:450px;
  background: #1e1e2f; /* لون غامق متناسق */
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  padding: 30px;
  color:#fff;
}

/* Logo */
.chat7x-logo { max-width: 120px; margin-bottom: 15px; }

/* Titles */
h1 { font-size:26px; color:#ffd6ff; margin-bottom:10px; }
p { font-size:14px; color:#e0d4ff; margin-bottom:20px; }

/* Online Users */
.chat7x-users-count { font-size:14px; margin-bottom:20px; color:#fff; }
.chat7x-users-count i { margin-right:6px; color:#e0b0ff; }

/* Room List */
.room-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.room-link {
  display: block;
  padding: 12px 20px;
  background: linear-gradient(90deg,#9b30ff,#c77dff);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.room-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.4);
}

/* Buttons */
.login-buttons {
  margin-top: 15px;
}
.chat7x-btn {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
  margin: 8px 0;
  border: none;
  font-weight:bold;
}
.chat7x-btn.main { background:#9b30ff; color:#fff; box-shadow:0 4px 12px rgba(155,48,255,0.4);}
.chat7x-btn.main:hover { transform: translateY(-2px); box-shadow:0 8px 20px rgba(155,48,255,0.5);}
.chat7x-btn.ghost { background:transparent; border:2px solid #9b30ff; color:#fff; box-shadow:0 4px 12px rgba(155,48,255,0.2);}
.chat7x-btn.ghost:hover { transform: translateY(-2px); box-shadow:0 8px 20px rgba(155,48,255,0.3); }

/* Footer Links */
.footer-links { margin-top:20px; font-size:12px; color:#ccc; }
.footer-links a { color:#d6a0ff; text-decoration:none; margin:0 5px; }
.footer-links a:hover { text-decoration:underline; }

/* Responsive */
@media screen and (max-width:500px){
  .chat-avenue-style { width:90%; padding:20px; }
  h1 { font-size:22px; }
  .room-link { font-size:14px; padding:10px; }
}
