.section {
  width: min(1100px, 92vw);
  margin: 2rem auto;
}

.featured-video {
  background: rgba(17,17,17,.6);
  border: 1px solid rgba(0,255,229,.2);
  border-radius: 12px;
  padding: 1rem 1.25rem 1.5rem;
  box-shadow: 0 0 18px rgba(0,255,229,.12);
}

.featured-video h3 {
  margin: .2rem 0 1rem;
  font-family: 'Raleway', sans-serif;
  color: #00ffe5;
  text-shadow: 0 0 10px #00ffe5;
  font-size: 1.2rem;
}

.featured-video p {
  margin: .5rem 0 1rem;
  color: #cfd8dc;
}

.featured-video a {
  display: inline-block;
  margin-top: .5rem;
  text-decoration: none;
  background: #111;
  color: #00ffe5;
  padding: .55rem .9rem;
  border: 2px solid #00ffe5;
  border-radius: 8px;
  font-weight: 600;
  transition: transform .2s ease, background .2s ease;
}

.featured-video a:hover { background:#00ffe5; color:#111; transform: translateY(-2px); }

.video-el { width: 100%; height: auto; border-radius: 10px; }

body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  color: #f5f5f5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3em 1em;
  text-align: center;
}

h1 {
  font-family: 'Raleway', sans-serif;
  font-size: 2.4em;
  color: #00ffe5;
  margin-bottom: 0.2em;
  text-shadow: 0 0 12px #00ffe5;
}

h2 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.2em;
  color: #ff66cc;
  margin-top: 0;
  text-shadow: 0 0 8px #ff66cc;
}

p {
  max-width: 720px;
  margin-top: 2em;
  font-size: 1.1em;
  line-height: 1.6;
  color: #ddd;
}

nav {
  margin-top: 3em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
}

nav a {
  background: #111;
  color: #00ffe5;
  text-decoration: none;
  padding: 1em 1.5em;
  border: 2px solid #00ffe5;
  border-radius: 8px;
  font-weight: bold;
  box-shadow: 0 0 10px #00ffe5;
  transition: all 0.3s ease;
  font-family: 'Raleway', sans-serif;
}

nav a:hover {
  background-color: #00ffe5;
  color: #111;
  box-shadow: 0 0 20px #00ffe5;
  transform: scale(1.05);
}

footer {
  margin-top: 5em;
  font-size: 0.9em;
  color: #888;
}

@media (max-width: 600px) {
  nav a {
    padding: 0.8em;
    font-size: 0.95em;
  }
}

/* === Two-Video Showcase === */
.videos-grid {
  width: min(1100px, 94vw);
  margin: 2rem auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.video-card {
  background: rgba(17,17,17,.65);
  border: 1px solid rgba(0,255,229,.22);
  border-radius: 14px;
  padding: 1rem 1.1rem 1.25rem;
  box-shadow: 0 0 20px rgba(0,255,229,.12);
}

.video-title {
  margin: .25rem 0 .9rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  color: #00ffe5;
  text-shadow: 0 0 10px #00ffe5;
  font-size: 1.05rem;
}

.video-el {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

/* Small screen: stack */
@media (max-width: 850px) {
  .videos-grid { grid-template-columns: 1fr; }
}

