.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-dashboard {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.dashboard-hero {
  padding: 8rem 0 4rem;
  background: var(--bg-dark);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-content-dashboard {
  text-align: center;
  max-width: 1200px;
  padding: 0 2rem;
  animation: fadeInUp 1s ease-out;
  margin-bottom: 4rem;
}

.hero-car-showcase {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-car-image {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.hero-car-image img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-car-description {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.hero-car-description p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.car-badge {
  margin-bottom: 1rem;
}

.category-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--gradient-hy);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 20px;
}

.category-badge_LMP3 {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--gradient-lmp3);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 20px;
}

.category-badge_LMP2 {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--gradient-lmp2);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 20px;
}

.category-badge_GT3 {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--gradient-gt3);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 20px;
}

.category-badge_GTE {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--gradient-gte);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 20px;
}

.dashboard-title {
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: white;
}

.dashboard-subtitle {
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  font-weight: 300;
}
.scroll-indicator {
  cursor: pointer;
  transition: all 0.3s ease;
  animation: bounce 2s infinite;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 2rem;
}

.scroll-indicator:hover {
  transform: translateY(-3px);
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(45deg);
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Dashboard Preview */
.dashboard-preview {
  padding: 6rem 0;
  background: rgba(255, 255, 255, 0.02);
}

.preview-header {
  text-align: center;
  margin-bottom: 4rem;
}

.preview-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.preview-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Dashboard Carousel */
.dashboard-carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  justify-items: center;
}

.dashboard-carousel-arrow-container {
  display: flex;
  justify-content: space-between;
  max-width: 800px;
  margin: auto;
}

.dashboard-carousel {
  width: 75%;
  min-width: 600px;
  margin: auto;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  aspect-ratio: 16/9.5;
  background: #000;
}

.carousel-slide {
  display: none;
  align-items: center;
  justify-content: center;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.carousel-slide.active {
  display: flex;
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  margin: auto;
}

.carousel-nav {
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-prev,
.carousel-next {
  position: absolute;
  align-self: center;
}

.carousel-prev {
  left: 0;
  margin: 5rem;
}

.carousel-next {
  right: 0;
  margin: 5rem;
}

.carousel-nav:hover {
  background: var(--primary);
  transform: scale(1.1);
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

.dashboard-info-section {
  margin-top: 3rem;
  text-align: center;
}

.dashboard-info-section h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.dashboard-info-section p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
  font-size: 1.1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.dashboard-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.dashboard-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-feature-icon {
  font-size: 1.5rem;
  width: 40px;
  text-align: center;
}

.dashboard-feature span {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Main video section container */
.video-showcase-section {
  margin: 4rem 0;
  padding: 2rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.02) 0%,
    rgba(255, 29, 67, 0.03) 100%
  );
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Video section header */
.video-showcase-header {
  text-align: center;
  margin-bottom: 3rem;
}

.video-showcase-header h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.video-showcase-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Video container with modern styling */
.video-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Responsive video wrapper */
.video-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* YouTube iframe styling */
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 16px;
}

/* Video description text */
.video-description {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
}

/* Download Section */
.download-section {
  padding: 6rem 0;
  background: var(--bg-dark);
}

.download-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 29, 67, 0.05) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  max-width: 800px;
  margin: 0 auto;
}

.download-content {
  padding: 3rem;
  text-align: center;
}

.download-info h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.download-info p {
  color: var(--text-secondary);
  margin-bottom: 3rem;
  line-height: 1.6;
  font-size: 1.1rem;
}

.download-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.download-btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.2rem 2rem;
  background: var(--gradient);
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.download-btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.download-btn-primary:hover::before {
  left: 100%;
}

.download-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 29, 67, 0.3);
}

.download-btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: transparent;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
  text-align: center;
}

.download-btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(255, 29, 67, 0.1);
}

.file-size {
  font-size: 0.8rem;
  opacity: 0.8;
  margin-left: 0.5rem;
}

.download-stats {
  display: flex;
  justify-content: space-around;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
  text-align: center;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Installation Section */
.installation-section {
  padding: 6rem 0;
  background: rgba(255, 255, 255, 0.02);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--text-primary);
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.step-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: all 0.3s ease;
  position: relative;
}

.step-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--gradient);
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.step-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.step-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Main layouts section container */
.dashboard-layouts-section {
  margin-top: 3rem;
}

/* Grid layout for dashboard layout cards */
.layouts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.layouts-grid:has(.layout-card:only-child) {
  display: flex;
  justify-content: center;
}

.layouts-grid:has(.layout-card:only-child) .layout-card {
  max-width: 900px;
  width: 100%;
}

/* Individual layout card styling */
.layout-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 29, 67, 0.03) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Top border gradient effect for layout cards */
.layout-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Hover effects for layout cards */
.layout-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 29, 67, 0.3);
  box-shadow: 0 15px 35px rgba(255, 29, 67, 0.1);
}

.layout-card:hover::before {
  opacity: 1;
}

/* Layout card header with number and title */
.layout-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

/* Layout number badge */
.layout-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--gradient);
  color: white;
  font-weight: 700;
  border-radius: 10px;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Layout title and subtitle container */
.layout-info {
  flex: 1;
}

.layout-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
}

.layout-subtitle {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 0.2rem;
}

/* Layout description text */
.layout-description {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Layout features list styling */
.layout-features {
  list-style: none;
  margin: 0;
  padding: 0;
}

.layout-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

#no-flex li {
  display: inline;
  margin-bottom: 0.8rem;
  gap: 0;
}

/* Custom bullet point for features */
.feature-bullet {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  margin-top: 0.5rem;
  flex-shrink: 0;
}

/* Highlight for widget names */
.widget-highlight {
  color: var(--primary);
  text-wrap: nowrap;
  width: 63px;
  font-weight: 500;
}

.global-features-section {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 29, 67, 0.05) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem;
  margin-top: 3rem;
}

/* Global features header */
.global-features-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.global-features-header h4 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.global-features-header p {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* Grid for feature categories */
.global-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

/* Individual feature category card */
.feature-category {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
}

/* Feature category title with icon */
.feature-category h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Category icon styling */
.category-icon {
  width: 20px;
  height: 20px;
  background: var(--gradient);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* Feature category lists */
.feature-category ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.feature-category li {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

/* Custom bullet for feature lists */
.feature-category li::before {
  content: "•";
  color: var(--primary);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.controls-note {
  background: rgba(255, 29, 67, 0.1);
  border: 1px solid rgba(255, 29, 67, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
}

.controls-note h5 {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.controls-note p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

/* High resolution displays */
@media (min-width: 1400px) {
  .video-container {
    max-width: 1000px;
  }

  .video-showcase-header h3 {
    font-size: 2.5rem;
  }

  .video-showcase-header p {
    font-size: 1.2rem;
    max-width: 700px;
  }
}

@media (max-width: 932px) {
  .carousel-prev {
    left: -70px;
  }

  .carousel-next {
    right: -70px;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-dashboard {
    padding: 0.5rem 1rem;
  }

  .nav-left {
    gap: 0.5rem;
  }

  .breadcrumb-car {
    font-size: 0.8rem;
  }

  .hero-car-showcase {
    padding: 0 1rem;
  }

  .dashboard-features-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-carousel {
    min-width: unset;
  }

  .download-content {
    padding: 2rem;
  }

  .download-buttons {
    flex-direction: column;
  }

  .carousel-nav {
    width: 40px;
    height: 40px;
  }

  .carousel-prev {
    left: -80px;
  }

  .carousel-next {
    right: -80px;
  }

  .container {
    padding: 0 1rem;
  }

  .preview-header h2 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .download-info h2 {
    font-size: 2rem;
  }

  .steps-container {
    grid-template-columns: 1fr;
  }

  .layouts-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .layout-card {
    padding: 1.5rem;
  }

  .layouts-header h3 {
    font-size: 2rem;
  }

  .global-features-section {
    padding: 2rem;
  }

  .global-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .dashboard-preview {
    padding: 2rem 0;
  }

  .download-section {
    padding: 2rem 0;
  }

  .installation-section {
    padding: 2rem 0;
  }

  .dashboard-hero {
    padding: 5rem 0 1.5rem;
    min-height: 90vh;
  }

  .hero-content-dashboard {
    margin-bottom: 3rem;
    padding: 0 1rem;
  }

  .video-showcase-section {
    margin: 3rem 0;
    padding: 2rem 1rem;
    border-radius: 20px;
  }

  .video-showcase-header h3 {
    font-size: 1.8rem;
  }

  .video-showcase-header p {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .video-container {
    max-width: 100%;
  }

  .video-wrapper {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  }

  .video-wrapper iframe {
    border-radius: 12px;
  }
}

@media (max-width: 589px) {
  .global-features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .dashboard-title {
    font-size: 2.5rem;
  }

  .dashboard-subtitle {
    font-size: 1.1rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .download-buttons {
    gap: 0.5rem;
  }

  .download-btn-primary,
  .download-btn-secondary {
    padding: 1rem;
    font-size: 0.9rem;
  }

  .carousel-nav {
    width: 35px;
    height: 35px;
  }

  .dashboard-info-section h3 {
    font-size: 1.5rem;
  }

  .dashboard-layouts-section {
    margin-top: 2rem;
  }

  .layouts-header h3 {
    font-size: 1.8rem;
  }

  .layout-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .layout-number {
    align-self: center;
  }

  .global-features-section {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .controls-note {
    padding: 1rem;
  }

  .video-showcase-section {
    margin: 2rem 0;
    padding: 1.5rem 1rem;
    border-radius: 16px;
  }

  .video-showcase-header {
    margin-bottom: 2rem;
  }

  .video-showcase-header h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
  }

  .video-showcase-header p {
    font-size: 0.95rem;
    padding: 0;
  }

  .video-description {
    font-size: 0.9rem;
    padding: 0;
  }
}

/* Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
