body {
  font-family: Arial, sans-serif;
  text-align: center;
  background-image: url('bk.png'); /* Replace with actual image filename */
  background-repeat: repeat;
  margin: 0;
}

header {
  background: #ff5733;
  color: white;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

header img {
  height: 60px;
  vertical-align: middle;
}

h1 {
  display: inline-block;
  margin-left: 10px;
  font-size: 2.2em;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

#videoSection {
  margin-top: 20px;
  display: none;
}

#player {
  pointer-events: none; /* Disable mouse hover and clicks */
}

.share-buttons {
  margin-top: 20px;
}

.share-buttons a {
  margin: 10px;
  text-decoration: none;
  color: white;
  background: #333;
  padding: 10px 15px;
  border-radius: 5px;
}

.share-buttons a:hover {
  background: #555;
}

.power-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: red;
  color: white;
  font-size: 24px;
  margin: 10px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.power-btn:hover {
  background-color: darkred;
}

.button-container {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  background: linear-gradient(to right, #f9f9f9, #ffe5d9);
}
.video-container {
  position: relative;
  width: 100%;        /* full width */
  padding-bottom: 56.25%; /* 16:9 aspect ratio (360/640 = 0.5625) */
  height: 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;   /* responsive width */
  height: 40%;  /* responsive height */
}
.schedule-container {
  margin: 30px auto;
  max-width: 800px;
  padding: 20px;
  background: #fff3e6;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.schedule-container h2 {
  margin-bottom: 15px;
  color: #ff5733;
  font-size: 1.8em;
}

#scheduleTable {
  width: 100%;
  border-collapse: collapse;
  font-size: 1em;
}

#scheduleTable th, #scheduleTable td {
  padding: 12px 15px;
  border: 1px solid #ddd;
  text-align: center;
}

#scheduleTable th {
  background-color: #ff5733;
  color: white;
}

#scheduleTable tr:nth-child(even) {
  background-color: #f9f9f9;
}

#scheduleTable tr:hover {
  background-color: #ffe5d9;
  transition: 0.3s;
}

/* Responsive */
@media (max-width: 600px) {
  #scheduleTable, #scheduleTable thead, #scheduleTable tbody, #scheduleTable th, #scheduleTable td, #scheduleTable tr {
    display: block;
  }
  #scheduleTable tr {
    margin-bottom: 15px;
  }
  #scheduleTable td {
    text-align: right;
    padding-left: 50%;
    position: relative;
  }
  #scheduleTable td::before {
    content: attr(data-label);
    position: absolute;
    left: 15px;
    text-align: left;
    font-weight: bold;
  }
}
.ad-btn {
  display: inline-block;
  background: #28a745;
  color: white;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}
.ad-btn:hover {
  background: #218838;
}
footer {
  background: #222;
  color: #fff;
  padding: 20px 10px;
  margin-top: 30px;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.ad-box {
  background: #333;
  border-radius: 8px;
  padding: 15px;
  margin: 10px;
  width: 300px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.5);
  transition: transform 0.3s;
}

.ad-box:hover {
  transform: scale(1.05);
}

.ad-img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 10px 0;
}


.footer-note {
  text-align: center;
  margin-top: 15px;
  font-size: 13px;
  color: #aaa;
}

