/* Reset and Basic */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Kaushan Script', cursive;
  background-color: #FF9900;
  color: #fff;
  line-height: 1.5;
  padding: 1rem;
}

h1, h2, h3, h4 {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #B8F2F3;
  text-decoration: underline;
}

/* Header */
header {
  text-align: center;
  margin-bottom: 1.5rem;
}

/* Navigation */
nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

nav a {
  background-color: #FF6600;
  padding: 0.75rem 1.25rem;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: bold;
  display: inline-block;
  min-width: 130px;
  text-align: center;
  color: #000;
  text-decoration: none;
}

nav a span.red {
  color: #FF0000;
  font-weight: bolder;
}

/* Main content */
main {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #FF6600;
  border-radius: 8px;
  padding: 1rem;
}

/* Gallery title */
.gallery-title {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  font-family: 'Kaushan Script', cursive;
  font-weight: bold;
}

/* Video grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

/* Video item */
.video-item {
  background-color: #FF9900;
  padding: 0.5rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.video-item img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.video-item a {
  color: #000;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  nav {
    flex-direction: column;
    align-items: center;
  }
  .video-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}
.mycolor {
 background-color: #FF6600; 
}