/* General Reset */
body, h1, h2, p, a, button {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  color: #fff;
}

body {
  background-color: #000;
  line-height: 1.6;
}

/* Navigation Bar */
nav {
  display: flex;
  justify-content: flex-end; /* Align navigation to the right */
  align-items: center;
  padding: 10px 20px;
  background-color: #000000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav h1 {
  color: red;
  font-size: 1.5rem;
  margin-right: auto; /* Pushes the nav to the right */
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  margin-left: 15px;
  font-size: 1rem;
  position: relative;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ff8800;
}

.nav-links a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #ff8800;
  transition: width 0.3s;
  margin: 0 auto;
}

.nav-links a:hover::after {
  width: 100%;
}

.subscribe-btn {
  background-color: red;
  color: #fff;
  padding: 10px 20px;
  margin-left: 15px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  transition: transform 0.3s ease;
}

.subscribe-btn:hover {
  background-color: #ff8800;
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(255, 136, 0, 0.7);
}

/* Header Section */
header {
  text-align: center;
  padding: 60px 20px;
  background-color: #000;
}

header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

header p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

header button {
  padding: 10px 20px;
  font-size: 1rem;
  color: #fff;
  background-color: red;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s;
}

header button:hover {
  background-color: #00ffea;
}

/* Top Videos Section */
#top-videos {
  padding: 40px 20px;
  background-color: #060606;
  text-align: center;
}

#top-videos h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.video-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.video-card {
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  width: 300px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.video-card iframe {
  width: 100%;
  height: 170px;
  border: none;
}

.video-card p {
  margin: 10px 0;
}

/* Footer */
footer {
  padding: 20px;
  background-color: #000;
  text-align: center;
  font-size: 0.9rem;
  border-top: 2px solid red;
}
