:root {
  --purple-deep: #2a0050;
  --purple-mid: #5c0096;
  --purple-bright: #8b00c8;
  --pink: #e0008c;
  --pink-hot: #ff0099;
  --pink-light: #ff66cc;
  --cream: #fdf3e0;
  --cream-dark: #f0e0c0;
  --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--purple-deep);
  font-family: 'Rajdhani', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(139,0,200,0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(224,0,140,0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(42,0,80,1) 0%, transparent 100%);
  z-index: 0;
  animation: bgPulse 6s ease-in-out infinite alternate;
}

@keyframes bgPulse {
  0% { opacity: 0.8; }
  100% { opacity: 1; }
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(139,0,200,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139,0,200,0.07) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

.header {
  text-align: center;
  margin-bottom: 50px;
  animation: fadeDown 0.8s ease both;
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

.logo-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(42,0,80,0.9), rgba(92,0,150,0.7));
  border: 2px solid var(--pink);
  border-radius: 60px;
  padding: 12px 28px 12px 16px;
  margin-bottom: 24px;
  box-shadow: 0 0 40px rgba(224,0,140,0.4), inset 0 0 20px rgba(139,0,200,0.2);
  backdrop-filter: blur(10px);
}

.keyhole-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.header-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.logo-text { text-align: left; line-height: 1; }

.logo-the {
  font-family: 'Exo 2', sans-serif;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #ff66cc, #ff0099);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-hotelier {
  font-family: 'Exo 2', sans-serif;
  font-weight: 900;
  font-size: 32px;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #ff0099, #8b00c8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.schedule-title {
  font-family: 'Exo 2', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 8vw, 72px);
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 0 30px rgba(224,0,140,0.6), 0 0 60px rgba(139,0,200,0.4);
}

.schedule-subtitle {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 8px;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--pink-light), var(--pink-hot));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.separator {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 30px 0;
}

.separator-bottom { margin-top: 40px; }

.separator-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
}

.separator-diamond {
  width: 10px;
  height: 10px;
  background: var(--pink-hot);
  transform: rotate(45deg);
  box-shadow: 0 0 10px var(--pink-hot);
}

.days-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.day-card {
  position: relative;
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: stretch;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(42,0,80,0.95), rgba(60,0,100,0.85));
  border: 1px solid rgba(139,0,200,0.4);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  animation: fadeIn 0.6s ease both;
  cursor: default;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

.day-card:hover {
  transform: translateX(6px) scale(1.01);
  box-shadow: 0 8px 50px rgba(224,0,140,0.4), 0 0 20px rgba(139,0,200,0.3);
  border-color: var(--pink);
}

.day-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--pink-hot), var(--purple-bright));
}

.day-label {
  padding: 20px 6px 20px 24px;
  background: linear-gradient(135deg, rgba(92,0,150,0.5), rgba(42,0,80,0.3));
  border-right: 1px solid rgba(139,0,200,0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.day-name {
  font-family: 'Exo 2', sans-serif;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--cream), var(--cream-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.day-en {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,102,204,0.7);
}

.day-content {
  padding: 14px 18px 14px 24px;
  display: flex;
  align-items: center;
}

.day-main-row {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 18px;
  align-items: stretch;
}

.stream-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  min-width: 0;
}

.stream-time {
  display: flex;
  align-items: center;
  gap: 8px;
}

.time-icon {
  width: 18px;
  height: 18px;
  opacity: 0.7;
  flex-shrink: 0;
}

.time-text {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #ff99dd, #ff0099);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stream-category {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--cream);
  letter-spacing: 1px;
  opacity: 0.95;
  word-break: break-word;
}

.stream-side {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.stream-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  background: linear-gradient(135deg, rgba(224,0,140,0.2), rgba(139,0,200,0.2));
  border: 1px solid rgba(224,0,140,0.5);
  border-radius: 20px;
  padding: 4px 14px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pink-light);
  white-space: nowrap;
  align-self: center;
  box-shadow: 0 0 10px rgba(224,0,140,0.2);
}

.stream-image-wrap {
  width: 120px;
  height: 68px;
  flex-shrink: 0;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 102, 204, 0.35);
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  box-shadow: inset 0 0 20px rgba(139,0,200,0.15);
}

.stream-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.stream-image-wrap.has-image .stream-image {
  display: block;
}

.stream-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 102, 204, 0.7);
}

.stream-image-wrap.has-image .stream-image-placeholder {
  display: none;
}

.footer {
  text-align: center;
  margin-top: 50px;
  animation: fadeIn 1s ease 0.8s both;
}

.twitch-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--pink-hot), var(--purple-bright));
  border-radius: 40px;
  padding: 14px 32px;
  text-decoration: none;
  font-family: 'Exo 2', sans-serif;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  box-shadow: 0 4px 30px rgba(224,0,140,0.5), 0 0 60px rgba(139,0,200,0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-bottom: 16px;
}

.twitch-link:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 50px rgba(224,0,140,0.7), 0 0 80px rgba(139,0,200,0.4);
}

.twitch-link svg {
  width: 22px;
  height: 22px;
  fill: white;
  flex-shrink: 0;
}

.footer-note {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,102,204,0.5);
}

.dot-row {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 16px 0;
}

.dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--pink-hot);
  box-shadow: 0 0 6px var(--pink-hot);
  animation: blink 2s ease-in-out infinite;
}

.dot:nth-child(2) { animation-delay: 0.3s; background: var(--purple-bright); box-shadow: 0 0 6px var(--purple-bright); }
.dot:nth-child(3) { animation-delay: 0.6s; }
.dot:nth-child(4) { animation-delay: 0.9s; background: var(--purple-bright); box-shadow: 0 0 6px var(--purple-bright); }
.dot:nth-child(5) { animation-delay: 1.2s; }

@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.6); }
}

@media (max-width: 760px) {
  .day-card { grid-template-columns: 120px 1fr; }
  .day-name { font-size: 17px; }
  .time-text { font-size: 17px; }
  .stream-category { font-size: 16px; }
  .day-main-row { grid-template-columns: 1fr; }
  .stream-side { justify-content: space-between; }
}

@media (max-width: 600px) {
  .schedule-title { font-size: 42px; }
  .container { padding-inline: 12px; }
  .day-card { grid-template-columns: 1fr; }
  .day-label {
    border-right: none;
    border-bottom: 1px solid rgba(139,0,200,0.3);
    padding-right: 24px;
  }
  .day-content { padding: 16px; }
  .stream-side {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
