html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  background: #111;
  color: #eee;
}

body {
  display: flex;
  flex-direction: column;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Navigation bar */
nav {
  background: #222;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Logo + text block */
.nav-brand {
  display: flex;
  align-items: center;
}

.brand-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 12px;
}

.brand-link img {
  height: 50px;              /* Bigger icon */
  display: block;
}

.brand-text {
  font-size: 20px;
  font-weight: bold;
  color: white;
  letter-spacing: 1px;
  white-space: nowrap;
}

/* Right-side navigation links */
.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* Search form */
form.search-form {
  text-align: center;
  margin: 20px 0;
}

form.search-form input[type="text"] {
  padding: 12px 16px;
  width: 100%;
  max-width: 500px;
  font-size: 16px;
  border-radius: 24px;
  border: none;
  background: #333;
  color: white;
  outline: none;
}

/* Main content */
.content {
  flex: 1;
  display: block;
  padding-bottom: 20px;
}

/* Video grid layout */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}

/* Video card */
.video-card {
  background: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease;
}

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

.video-card h3 {
  font-size: 16px;
  margin: 10px;
  color: #fff;
}

/* Thumbnails and hover previews */
.video-thumb {
  position: relative;
  width: 100%;
}

.video-thumb img {
  display: block;
  width: 100%;
  height: auto;
}

.video-thumb .preview {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.video-card:hover .preview {
  opacity: 1;
}

/* Footer */
footer {
  background: #1a1a1a;
  padding: 20px;
  text-align: center;
  color: #888;
  font-size: 14px;
}

footer a {
  color: #ccc;
  margin: 0 10px;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}



.cc-window.cc-banner.cc-bottom {
  position: fixed !important;
  bottom: env(safe-area-inset-bottom, 0px) !important;
  left: 0;
  right: 0;
  z-index: 99999;
  transform: translateY(0%) !important;
  max-height: 100vh;
  box-sizing: border-box;
  background-color: #111 !important;
  color: #eee !important;
}


