/* Hero Featured Game - Mobile First */

.djc-hero-featured {
  position: relative;
  min-height: 85vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  overflow: hidden;
}

.djc-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.7) 50%,
    rgba(0, 0, 0, 0.92) 100%
  );
  z-index: 1;
}

.djc-hero-content {
  position: relative;
  z-index: 2;
  max-width: 100%;
  width: 100%;
}

.djc-hero-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 12px 0;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
}

.djc-hero-pitch {
  font-size: 16px;
  line-height: 1.4;
  margin: 0 0 16px 0;
  color: #ccc;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.9);
}

.djc-hero-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.djc-hero-meta span {
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  backdrop-filter: blur(8px);
}

.djc-hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.djc-cta-primary,
.djc-cta-secondary {
  padding: 16px 24px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  width: 100%;
  text-align: center;
}

.djc-cta-primary {
  background: linear-gradient(135deg, #2bd9a8, #1bbd8a);
  color: #05120d;
  box-shadow: 0 8px 24px rgba(43, 217, 168, 0.4);
}

.djc-cta-primary:active {
  transform: scale(0.98);
}

.djc-cta-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.djc-cta-secondary:active {
  transform: scale(0.98);
}

/* Desktop > 768px */
@media (min-width: 768px) {
  .djc-hero-featured {
    min-height: 75vh;
    padding: 60px 5%;
    align-items: center;
  }
  
  .djc-hero-overlay {
    background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.95) 0%,
      rgba(0, 0, 0, 0.7) 40%,
      rgba(0, 0, 0, 0.3) 70%,
      rgba(0, 0, 0, 0.6) 100%
    );
  }
  
  .djc-hero-content {
    max-width: 600px;
  }
  
  .djc-hero-title {
    font-size: 56px;
  }
  
  .djc-hero-pitch {
    font-size: 18px;
  }
  
  .djc-hero-meta span {
    font-size: 16px;
  }
  
  .djc-hero-actions {
    flex-direction: row;
  }
  
  .djc-cta-primary,
  .djc-cta-secondary {
    width: auto;
    min-width: 180px;
  }
  
  .djc-cta-primary:hover,
  .djc-cta-secondary:hover {
    transform: scale(1.05);
  }
}
