body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
}

/* Navbar */
nav {
  background-color: #fff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

nav .logo {
  font-weight: bold;
  width: 60px;
  height: auto;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}

nav ul li {
  cursor: pointer;
  font-weight: 600;
  color: #333;
}

nav ul li a {
  text-decoration: none;
  color: inherit;
}

nav ul li a:hover {
  text-decoration: underline;
  color: #334;
}

/* Hero section */
.hero {
  background-color: #ccc;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-direction: column;
}

/* Hero section */
.hero {
  position: relative;
  height: 600px; /* Or 100vh for fullscreen */
  width: 100%;
  overflow: hidden;
}

.hero-gif {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* This makes it fill the card */
  z-index: 0;
}

.hero-button {
  position: absolute;
  bottom: 40px;         /* Adjust distance from bottom */
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  padding: 12px 24px;
  background-color: steelblue; /* semi-transparent white */
  border: none;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 6px;
  font-weight: bold;
}

.hero a {
  text-decoration: none;
  color: whitesmoke;
}

.hero button:hover {
  background-color: rgb(34, 83, 124);
}

/* Sponsors */
.branding {
  background-color: #333;
  color: white;
  padding: 1rem;
  text-align: center;
  font-family: monospace;
  position: relative;
  height: 50px;
}

.rogue-image {
  height: 60px;
  width: auto;
  position: absolute; /* or relative/fixed/sticky */
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* Product section */
.videos {
  padding: 2rem;
}

.videos h2 {
  margin-bottom: 1rem;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.videos-card {
  background-color: #ddd;
  height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 10px;
}

.videos-card button {
  position: absolute;
  bottom: 10px;
  padding: 0.3rem 0.6rem;
  background-color: steelblue;
  border: none;
  color: white;
  cursor: pointer;
  font-weight: bold;
  border-radius: 10px;
}

.videos-card a {
  text-decoration: none;
  color: whitesmoke;
}

.videos-card button:hover {
  background-color:rgb(34, 83, 124)
}

/* Carousel arrows */
.carousel-controls {
  text-align: right;
  margin-top: 0.5rem;
}

.carousel-controls button {
  background-color: transparent;
  border-radius: 10px;
}

.carousel-controls button:hover {
  background-color: rgb(34, 83, 124)
}