/*
Theme Name:   Bloghash Child
Description:  Child theme for Bloghash
Author:       Your Name
Template:     bloghash
Version:      1.0.0
*/

#timer-container {
  padding: 20px;
  border-radius: 16px;
  background: #FE4A2F;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  color: #fff;
  text-align: center;
}

.stream-box {
  display: none;
  padding: 20px;
  border-radius: 16px;
  background: #302D55;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  color: #fff;
  text-align: center;
}

.stream-box h2 {
  margin-bottom: 20px;
  font-size: 2rem;
  color: #fff;
}

.stream-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stream-link {
  display: block;
  padding: 14px;
  border-radius: 12px;
  text-decoration: none !important;
  font-size: 2.0rem;
  font-weight: 600;
  color: #fff !important;
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  transition: all 0.3s ease;
}

.stream-link:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(255,75,43,0.5);
}

@media (max-width: 600px) {
  .stream-link {
    padding: 12px;
    text-align: left;
  }
}
