/* ===== GLOBAL RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none !important;
}

body {
  background: #0a0a0a;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  padding-top: 56px;
}

/* ===== TEXT SELECTION ===== */
::selection {
  background: rgba(255,255,255,0.2);
}

/* ===== GRID SYSTEM ===== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  padding: 10px;
}

/* ===== VIDEO CARD ===== */
.video-card {
  background: #111;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.2s;
}

.video-card:hover {
  transform: scale(1.03);
}

/* ===== THUMBNAIL ===== */
.video-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* ===== TITLE ===== */
.video-card p {
  font-size: 12px;
  color: #ddd;
  padding: 5px;
  line-height: 1.3;
}

/* ===== SECTION TITLE ===== */
.section-title {
  font-size: 14px;
  font-weight: bold;
  margin: 10px;
}

/* ===== FEATURED VIDEO ===== */
.featured-video {
  height: 250px;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  margin: 10px;
}

/* ===== BUTTONS ===== */
.btn-main {
  background: #ff3d00;
  color: #fff;
  border: none;
  padding: 8px 15px;
  border-radius: 6px;
}

.btn-main:hover {
  background: #ff5722;
}

/* ===== VIDEO PLAYER ===== */
.video-player video {
  width: 100%;
  border-radius: 10px;
}

/* ===== SHORTS ===== */
.shorts-container {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  padding: 10px;
}

.shorts-container .video-card {
  min-width: 120px;
}

/* ===== MOBILE OPTIMIZATION 🔥 ===== */
@media (max-width: 768px) {

  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .video-card p {
    font-size: 11px;
  }

  .featured-video {
    height: 200px;
  }

  .section-title {
    font-size: 13px;
  }
}

/* ===== REMOVE CLUTTER ===== */
.sidebar,
.extra-categories {
  display: none;
}

/* ===== SMOOTH SCROLL ===== */
html {
  scroll-behavior: smooth;
}