body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-image: url('img/bg.jpg');
  color: #f5f5f5;
}

.live-wrapper {
  max-width: 480px;
  margin: 0 auto;
  background: #1a1a1a;
  box-shadow: 0 0 20px rgba(255, 0, 128, 0.15); 
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #000000;
  color: #000;
  padding: 10px 15px;
  font-size: 14px;
}

.logo {
  height: 30px;
}

.live-badge {
  font-weight: bold;
  color: #ffffff;
}

.viewers {
  font-size: 12px;
  opacity: 0.85;
  color: #ffffff;
}

.video-section {
  position: relative;
}

.video-placeholder video {
  width: 100%;
  display: block;
  border-bottom: 2px solid #ff3399;
  background-color: #000;
}

.tip-menu {
  background: #141414;
  padding: 10px;
  font-size: 13px;
  border-top: 1px solid #ff3399;
  color: #e0e0e0;
}

.tip-menu ul {
  padding-left: 15px;
}

.comment-section {
  background: #121212;
  height: 180px;
  overflow-y: auto;
  padding: 10px;
  font-size: 13px;
  border-top: 1px solid #cc0000;
  border-bottom: 1px solid #cc0000;
  color: #cc0000;
}

.comment {
  margin-bottom: 5px;
}

.cta-wrapper {
  text-align: center;
  padding: 20px;
}


.comment-note {
  background-color: #1a1a1a;
  color: #ccc;
  padding: 10px 15px;
  font-size: 13px;
  border-bottom: 1px solid #333;
  text-align: left;
}


.cta-button {
  background: #cc0000;
  color: white;
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  animation: pulse 2s infinite;
  border: none;
}

.cta-description {
  font-size: 14px;
  margin-bottom: 12px;
  color: #bbb;
  padding: 0 10px;
}

.tip-announcement {
  background-color: #1a0e17;
  border: 1px solid #cc0000;
  padding: 15px;
  margin: 20px auto;
  max-width: 500px;
  border-radius: 8px;
  font-size: 14px;
  color: #f0f0f0;
  box-shadow: 0 2px 8px rgba(255, 0, 128, 0.2);
}

.tip-announcement h3 {
  margin-top: 0;
  color: #ffcc00;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(230, 0, 115, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(230, 0, 115, 0); }
  100% { box-shadow: 0 0 0 0 rgba(230, 0, 115, 0); }
}

@media screen and (max-width: 500px) {
  .live-wrapper {
    border-radius: 0;
  }
}

