* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

body.omegle-bg {
  min-height: 100vh;
  background: linear-gradient(180deg, #9ec5ff, #cfe2ff);
  display: flex;
  align-items: center;
  justify-content: center;
}

.omegle-card {
  background: #fff;
  width: 95%;
  max-width: 900px;
  border-radius: 12px;
  padding: 40px 30px 25px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  text-align: center;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: #4da3ff;
  border-radius: 10px;
}

.logo-text {
  font-size: 38px;
  font-weight: bold;
  color: #ff8c00;
}

h1 {
  margin-top: 25px;
  font-size: 36px;
  color: #333;
}

.subtitle {
  margin-top: 10px;
  color: #666;
  font-size: 18px;
}

.chat-now {
  margin: 35px 0 20px;
  font-size: 26px;
  color: #555;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn.orange {
  background: linear-gradient(#ffa726, #fb8c00);
  color: #fff;
  padding: 18px 40px;
  font-size: 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.btn.orange:hover {
  background: linear-gradient(#ffb74d, #ff9800);
}

.info {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  gap: 25px;
  color: #666;
  font-size: 15px;
  flex-wrap: wrap;
}

.omegle-footer {
  margin-top: 35px;
  padding-top: 15px;
  border-top: 1px solid #eee;
  display: flex;
  gap: 15px;
  font-size: 13px;
  color: #777;
  flex-wrap: wrap;
}

.omegle-footer a {
  color: #4d90fe;
  text-decoration: none;
}

.omegle-footer .right {
  margin-left: auto;
}

@media (max-width: 600px) {
  h1 {
    font-size: 28px;
  }
  .btn.orange {
    width: 100%;
  }
}
.chat-box {
  height: 300px;
  border: 1px solid #ddd;
  padding: 10px;
  overflow-y: auto;
  margin-bottom: 10px;
  background: #fff;
}

.chat-input {
  display: flex;
  gap: 10px;
}

.chat-input input {
  flex: 1;
  padding: 10px;
}

.video-area {
  display: flex;
  gap: 10px;
}

video {
  width: 48%;
  background: black;
  border-radius: 10px;
}
