
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');

body {
  margin: 0;
  padding: 0;
  background: #0e0e0e;
  color: #f0f0f0;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
}

header {
  text-align: center;
  padding: 40px 20px 20px;
  background: #111;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.logo {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
}

h1 {
  font-size: 2.5em;
  color: #ffb347;
  margin: 0;
}

.status {
  margin-top: 10px;
  font-size: 1.2em;
  color: #00ffc8;
}

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

section {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px 30px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
}

section h2 {
  font-size: 1.5em;
  color: #00ffc8;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 5px;
}

a {
  color: #00bcd4;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #ffb347;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.video-item {
  background: rgba(255, 255, 255, 0.03);
  padding: 12px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 3px 6px rgba(0,0,0,0.3);
  transition: transform 0.2s ease;
}

.video-item:hover {
  transform: translateY(-4px);
}

.video-item img {
  width: 100%;
  border-radius: 10px;
}

.video-item p {
  font-size: 0.95em;
  color: #ccc;
  margin-top: 8px;
}

@media screen and (max-width: 600px) {
  h1 {
    font-size: 1.8em;
  }

  section {
    padding: 15px 20px;
  }
}

.entry-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.entry-actions form {
  display: inline;
}
