:root {
  --primary-color: #000000;
  --secondary-color: #000000;
}

body {
  font-family: 'Arial', sans-serif;
}

/* Navbar Styles */
.navbar-brand {
  font-weight: bold;
}

.signup-btn {
  background-color: var(--primary-color);
  border: none;
  padding: 8px 24px;
  border-radius: 6px;
}

.signup-btn:hover {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
  padding: 80px 0;
  background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 32px;
}

.try-btn {
  background-color: var(--primary-color);
  border: none;
  padding: 12px 32px;
  font-size: 1.1rem;
  border-radius: 6px;
  margin-bottom: 12px;
}

.no-credit {
  color: #666;
  font-size: 0.9rem;
}

.video-container {
  background: white;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Unique Videos Section */
.unique-videos {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 60px 0;
}

.unique-videos h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 16px;
}

.unique-videos p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-title {
      font-size: 2.5rem;
  }
  
  .hero-section {
      text-align: center;
      padding: 40px 0;
  }
  
  .video-container {
      margin-top: 40px;
  }
}

.footer {
  /* background: linear-gradient(135deg, #123692, #2a2b5a); */
  background: linear-gradient(135deg, #000000, #000000);
  /* position: fixed; */
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  /* height: 25%; */
}