* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

  font-family: "Segoe UI", sans-serif;
}

body {
  background: #0a0a0a;
  color: white;
}

/* NAVBAR */

.navbar {
  position: fixed;

  top: 0;
  left: 0;

  width: 100%;

  padding: 20px 8%;

  display: flex;

  justify-content: space-between;

  align-items: center;

  background: rgba(10, 10, 10, 0.85);

  backdrop-filter: blur(10px);

  z-index: 1000;
}

.logo {
  font-size: 32px;

  font-weight: 800;

  color: #ff4d00;
}

.navbar nav {
  display: flex;

  gap: 30px;
}

.navbar nav a {
  color: white;

  text-decoration: none;

  font-weight: 500;

  transition: 0.3s;
}

.navbar nav a:hover {
  color: #ff4d00;
}

.search-box {
  display: flex;

  align-items: center;

  background: #181818;

  border-radius: 50px;

  overflow: hidden;
}

.search-box input {
  border: none;

  outline: none;

  background: transparent;

  color: white;

  padding: 12px 18px;

  width: 220px;
}

.search-box button {
  border: none;

  background: #ff4d00;

  color: white;

  padding: 12px 18px;

  cursor: pointer;
}

/* HERO */

/* HERO */

.hero {
  min-height: 100vh;

  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.85)),
    url("bugatti-tourbillon.webp");

  background-size: cover;
  background-position: center;

  display: flex;
  align-items: center;

  padding: 140px 8% 80px;

  position: relative;
}

.hero-content {
  max-width: 850px;
}

.badge {
  display: inline-block;

  background: #ff5a00;

  color: white;

  padding: 14px 28px;

  border-radius: 50px;

  margin-bottom: 25px;

  font-size: 15px;

  font-weight: 700;
}

.hero-content h1 {
  font-size: 60px;
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 800;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.hero-btn {
  display: inline-block;

  text-decoration: none;

  border: none;

  background: #ff4d00;

  color: white;

  padding: 18px 38px;

  border-radius: 50px;

  font-size: 16px;

  font-weight: 700;

  transition: 0.3s;
}

.hero-btn:hover {
  transform: translateY(-5px);

  box-shadow: 0 10px 25px rgba(255, 77, 0, 0.4);
}

/* BREAKING */

.ticker {
  background: #111;

  display: flex;

  align-items: center;
}

.ticker-title {
  background: #ff4d00;

  padding: 18px 30px;

  font-weight: bold;
}

.ticker-content {
  overflow: hidden;

  width: 100%;
}

.ticker-track {
  white-space: nowrap;

  padding-left: 100%;

  animation: move 18s linear infinite;
}

@keyframes move {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

/* SECTION */

.section-header {
  padding: 80px 8% 30px;
}

.section-header h2 {
  font-size: 40px;
  color: white;
}

/* FEATURED */

.featured {
  background: #0d1117;
}

.featured-grid {
  padding: 0 8% 80px;

  display: grid;

  grid-template-columns: 2fr 1fr;

  gap: 30px;
}

/* MAIN */

.featured-main {
  position: relative;

  overflow: hidden;

  border-radius: 30px;

  display: block;

  text-decoration: none;

  color: white;

  transition: 0.5s ease;
}

.featured-main img {
  width: 100%;

  height: 500px;

  object-fit: cover;

  transition: 0.8s ease;
}

.featured-main:hover img {
  transform: scale(1.08);
}

.featured-main:hover {
  transform: translateY(-10px);

  box-shadow:
    0 0 30px rgba(255, 77, 0, 0.25),
    0 0 70px rgba(255, 77, 0, 0.15);
}

.featured-main:hover .featured-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.98), rgba(0, 0, 0, 0.45));
}

.featured-main:hover .featured-btn {
  opacity: 1;

  transform: translateY(0);
}

.featured-overlay h2 {
  transition: 0.4s;
}

.featured-main:hover h2 {
  color: #ff4d00;

  transform: translateY(-5px);
}

.featured-overlay {
  position: absolute;

  inset: 0;

  display: flex;

  flex-direction: column;

  justify-content: flex-end;

  padding: 50px;

  background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.25));

  transition: 0.5s;
}

.featured-btn {
  margin-top: 25px;

  width: fit-content;

  padding: 14px 26px;

  border-radius: 50px;

  background: #ff4d00;

  font-weight: 600;

  opacity: 0;

  transform: translateY(30px);

  transition: 0.4s;
}

.featured-overlay span {
  color: #ff4d00;

  font-weight: 700;
}

.featured-overlay h2 {
  font-size: 42px;

  margin: 15px 0;
}

.featured-overlay p {
  color: #cbd5e1;
}

/* SIDE */

.featured-side {
  display: flex;

  flex-direction: column;

  gap: 20px;
}

.side-card {
  background: #141b26;

  border-radius: 20px;

  overflow: hidden;

  display: flex;

  gap: 15px;

  cursor: pointer;

  text-decoration: none;

  color: white;

  transition: all 0.4s ease;
}

.side-card:hover {
  transform: translateX(12px);

  background: #1b2433;

  border-left: 4px solid #ff4d00;

  box-shadow:
    0 0 20px rgba(255, 77, 0, 0.3),
    0 0 40px rgba(255, 77, 0, 0.15);
}

.side-card img {
  width: 160px;

  height: 140px;

  object-fit: cover;

  transition: all 0.4s ease;
}

.side-card:hover img {
  transform: scale(1.08);
}

.side-card div {
  padding: 15px;
}

.side-card span {
  color: #ff4d00;

  font-size: 13px;

  font-weight: 700;
}

.side-card h3 {
  margin-top: 10px;

  font-size: 18px;

  line-height: 1.5;

  transition: 0.3s ease;
}

.side-card:hover {
  transform: translateX(15px) scale(1.02);
}

.side-card:hover h3 {
  color: #ff4d00;
}

@media (max-width: 1000px) {
  .featured-grid {
    grid-template-columns: 1fr;
  }

  .featured-main img {
    height: 400px;
  }
}

/* TRENDING */

.trending {
  background: #0a0a0a;

  padding-bottom: 80px;
}

.trending-list {
  padding: 0 8%;

  display: flex;

  flex-direction: column;

  gap: 20px;
}

.trend-item {
  display: flex;

  align-items: center;

  gap: 25px;

  padding: 25px;

  background: #141b26;

  border-radius: 20px;

  transition: 0.3s;

  cursor: pointer;
  text-decoration: none;
  color: white;
}

.trend-item:hover {
  transform: translateX(12px);

  border-left: 4px solid #ff4d00;

  background: #1b2433;

  box-shadow: 0 0 25px rgba(255, 77, 0, 0.25);
}

.trend-item span {
  font-size: 48px;

  font-weight: 800;

  color: #ff4d00;

  min-width: 80px;
}

.trend-item h3 {
  color: white;

  transition: all 0.3s ease;
}

.trend-item:hover h3 {
  color: #ff5a0a;

  transform: translateX(5px);
}

.trend-item p {
  color: #94a3b8;

  transition: all 0.3s ease;
}

.trend-item:hover p {
  color: #ffffff;

  transform: translateX(5px);
}

/* ARTICLES */

.latest {
  background: #0d1117;

  padding-bottom: 100px;
}

.articles-grid {
  padding: 0 8%;

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

  gap: 30px;
}

.article-card {
  background: #141b26;

  border-radius: 25px;

  overflow: hidden;

  transition: 0.4s;

  cursor: pointer;
  display: block;
  text-decoration: none;
  color: white;
}

.article-card:hover {
  transform: translateY(-12px);

  box-shadow: 0 0 40px rgba(255, 77, 0, 0.4);
}

.article-card img {
  width: 100%;

  height: 250px;

  object-fit: cover;
}

.article-content {
  padding: 25px;
}

.article-content span {
  color: #ff4d00;

  font-size: 13px;

  font-weight: 700;
}

.article-content h3 {
  transition: all 0.3s ease;

  position: relative;

  display: inline-block;
}

.article-card:hover h3 {
  color: #ff5a0a;

  transform: translateX(6px);
}

.article-content h3::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -5px;

  width: 0;

  height: 2px;

  background: #ff5a0a;

  transition: 0.3s ease;
}

.article-content p {
  color: #cbd5e1;
  transition: 0.3s ease;
}

.article-card:hover p {
  color: #ffffff;
}

/* ==========================
   CATEGORIES
========================== */

.categories {
  background: #0a0a0a;
  padding-bottom: 100px;
}

.category-grid {
  padding: 0 8%;

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

  gap: 25px;
}

.category-card {
  background: #141b26;

  padding: 40px;

  border-radius: 25px;

  text-align: center;

  font-size: 50px;

  cursor: pointer;

  border: 1px solid transparent;

  transition: all 0.4s ease;

  position: relative;

  overflow: hidden;
}

.category-card h3 {
  margin-top: 20px;

  font-size: 20px;

  color: #ffffff;

  transition: all 0.4s ease;
}

/* HOVER */

.category-card:hover {
  transform: translateY(-10px) scale(1.03);

  border-color: #ff5a0a;

  background: linear-gradient(
    135deg,
    rgba(255, 90, 10, 0.08),
    rgba(20, 27, 38, 1)
  );

  box-shadow:
    0 0 25px rgba(255, 90, 10, 0.35),
    0 0 50px rgba(255, 90, 10, 0.12);
}

/* ICON */

.category-card:hover {
  color: #ff5a0a;
}

/* TITLE */

.category-card:hover h3 {
  color: #ff5a0a;

  text-shadow: 0 0 10px rgba(255, 90, 10, 0.6);
}

/* REVIEWS */

.reviews {
  background: #0d1117;

  padding-bottom: 100px;
}

.review-grid {
  padding: 0 8%;

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

  gap: 30px;
}

.review-card {
  background: #141b26;

  border-radius: 25px;

  overflow: hidden;

  transition: 0.4s;
  display: block;
  text-decoration: none;
  color: white;
  transition: all 0.4s ease;
}

.review-card:hover {
  transform: translateY(-12px);

  box-shadow:
    0 0 25px rgba(255, 90, 10, 0.25),
    0 0 60px rgba(255, 90, 10, 0.12);
}

.review-card img {
  width: 100%;

  height: 250px;

  object-fit: cover;
  transition: transform 0.5s ease;
}

.review-card:hover img {
  transform: scale(1.08);
}

.review-content {
  display: flex;
  flex-direction: column;
  padding: 22px 28px 28px;
}

.review-content h3 {
  margin: 0 0 6px;
  transition: all 0.35s ease;
}

.review-card:hover h3 {
  color: #ff5a0a;

  transform: translateX(6px);
}

.review-content h3::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -5px;

  width: 0;

  height: 2px;

  background: #ff5a0a;

  transition: 0.35s ease;
}

.review-content p {
  transition: all 0.35s ease;
  margin-top: 0;
  color: #94a3b8;
  line-height: 1.5;
  min-height: 60px;
  margin-top: 15px;
}

.review-card:hover p {
  color: white;
}

.rating {
  color: #ffd700;

  font-size: 22px;

  margin: 0 0 10px;

  transition: all 0.35s ease;

  display: block;
}

.review-card:hover .rating {
  color: #ffd700;

  transform: translateX(15px) scale(1.05);

  text-shadow:
    0 0 10px rgba(255, 215, 0, 0.7),
    0 0 20px rgba(255, 215, 0, 0.5);
}

.review-content h3,
.review-content .rating {
  transition: all 0.35s ease;
}

.review-card:hover h3 {
  color: #ff5a0a;
  transform: translateX(10px);
}

.review-card:hover .rating {
  transform: translateX(10px) scale(1.05);
}

.review-card:hover .rating {
  text-shadow:
    0 0 10px rgba(255, 215, 0, 0.6),
    0 0 20px rgba(255, 215, 0, 0.4);
}

/* EV SPOTLIGHT */

.ev-spotlight {
  background: #0a0a0a;

  padding: 120px 8%;
}

.ev-content {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));

  gap: 50px;

  align-items: center;
}

.ev-text span {
  color: #ff4d00;

  font-weight: 700;

  letter-spacing: 2px;
}

.ev-text h2 {
  font-size: 55px;

  margin: 20px 0;

  line-height: 1.1;
}

.ev-text p {
  color: #cbd5e1;

  line-height: 1.8;

  margin-bottom: 30px;
}

.ev-text a {
  color: #ff4d00;

  text-decoration: none;

  font-weight: 700;
}

.ev-image img {
  width: 100%;

  border-radius: 30px;

  object-fit: cover;

  box-shadow: 0 0 40px rgba(255, 77, 0, 0.15);
}

/* NEWSLETTER */

.newsletter {
  background: #0d1117;

  padding: 100px 8%;
}

.newsletter-box {
  background: #141b26;

  padding: 70px;

  border-radius: 30px;

  text-align: center;
}

.newsletter-box h2 {
  font-size: 45px;

  margin-bottom: 15px;
}

.newsletter-box p {
  color: #94a3b8;

  margin-bottom: 35px;
}

.newsletter-form {
  display: flex;

  justify-content: center;

  gap: 15px;

  flex-wrap: wrap;
}

.newsletter-form input {
  width: 450px;

  max-width: 100%;

  padding: 18px;

  border-radius: 15px;

  border: none;

  outline: none;

  font-size: 15px;
}

.newsletter-form button {
  padding: 18px 35px;

  border: none;

  border-radius: 15px;

  background: #ff4d00;

  color: white;

  font-weight: 700;

  cursor: pointer;

  transition: 0.3s;
}

.newsletter-form button:hover {
  transform: translateY(-4px);
}

/* FOOTER */

footer {
  background: #070707;

  padding: 80px 8% 30px;
}

.footer-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

  gap: 40px;
}

.footer-grid h3,
.footer-grid h4 {
  margin-bottom: 20px;
}

.footer-grid p,
.footer-grid li {
  color: #94a3b8;

  line-height: 2;

  list-style: none;
}

.footer-bottom {
  margin-top: 60px;

  border-top: 1px solid rgba(255, 255, 255, 0.1);

  padding-top: 25px;

  text-align: center;

  color: #64748b;
}

.category-card {
  background: #141b26;

  border-radius: 25px;

  padding: 40px 20px;

  text-align: center;

  text-decoration: none;

  color: white;

  transition: 0.3s ease;

  cursor: pointer;
}

.category-card span {
  font-size: 50px;

  display: block;

  margin-bottom: 15px;
}

.category-card h3 {
  font-size: 22px;

  font-weight: 600;
}

.category-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 0 25px rgba(255, 77, 0, 0.3);

  border: 1px solid #ff4d00;
}

.featured-main,
.side-card,
.article-card,
.review-card,
.trend-item,
.category-card {
  transition: all 0.4s ease;
}

.trend-link {
  display: block;

  text-decoration: none;

  color: inherit;
}

.trend-link:hover .trend-item {
  transform: translateX(12px);

  box-shadow:
    0 0 20px rgba(255, 77, 0, 0.3),
    0 0 40px rgba(255, 77, 0, 0.15);
}

.article-link {
  text-decoration: none;

  color: inherit;

  display: block;
}

.article-link:hover .article-card {
  transform: translateY(-10px);

  box-shadow:
    0 0 25px rgba(255, 77, 0, 0.3),
    0 0 50px rgba(255, 77, 0, 0.15);
}

.review-link {
  display: block;

  text-decoration: none;

  color: inherit;
}

.review-link:hover .review-card {
  transform: translateY(-10px);

  box-shadow:
    0 0 25px rgba(255, 77, 0, 0.3),
    0 0 50px rgba(255, 77, 0, 0.15);
}

.ev-btn {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  margin-top: 30px;

  padding: 18px 38px;

  background: transparent;

  border: 1px solid rgba(255, 255, 255, 0.2);

  border-radius: 50px;

  color: white;

  text-decoration: none;

  font-weight: 600;

  transition: all 0.4s ease;
}

.ev-btn:hover {
  border-color: #ff5a0a;

  color: #ff5a0a;

  transform: translateY(-4px);

  box-shadow: 0 0 30px rgba(255, 90, 10, 0.2);
}

/* =========================
   HYPERDRIVE SCROLLBAR
========================= */

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #0b1220;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ff5a0a, #ff7a3d);

  border-radius: 20px;

  border: 2px solid #0b1220;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ff7a3d, #ff9b66);
}
