﻿.hero {
  text-align: center;
  padding: 6rem 2rem 5rem;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(245, 196, 0, 0.07) 0%, transparent 70%);
}

.hero-spark {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.hero-spark img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

.hero-spark::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  background: conic-gradient(from 180deg, transparent 0%, transparent 50%, rgba(245, 196, 0, 0.04) 62%, rgba(245, 196, 0, 0.15) 72%, rgba(245, 196, 0, 0.4) 82%, rgba(245, 196, 0, 0.85) 92%, #fff8d0 97%, transparent 100%);
  mask: radial-gradient(circle, transparent 43px, black 44px, black 51px, transparent 52px);
  animation: orbit-beam 5s linear infinite;
  pointer-events: none;
  z-index: 2;
}

.hero-spark svg {
  width: 72px;
  height: 72px;
  filter: drop-shadow(0 0 18px rgba(245, 196, 0, 0.45));
  animation: pulse 3s ease-in-out infinite;
}

@keyframes orbit-beam {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes pulse {
  0%, 100% {
    filter: drop-shadow(0 0 18px rgba(245, 196, 0, 0.45));
  }
  50% {
    filter: drop-shadow(0 0 36px rgba(245, 196, 0, 0.8));
  }
}
.hero h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: 6px;
  color: #f5c400;
  line-height: 1;
  margin-bottom: 1rem;
}

.hero-slogan {
  font-size: 1.2rem;
  color: #888888;
  font-weight: 300;
  letter-spacing: 1.5px;
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-slogan em {
  color: #f5c400;
  font-style: normal;
}

.categories-section {
  padding: 4rem 2rem 5rem;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.section-head {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.2rem;
  letter-spacing: 3px;
  color: #f5c400;
  margin-bottom: 0.4rem;
}

.section-sub {
  color: #888888;
  font-size: 0.9rem;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.cat-card {
  background: #1e1e1e;
  border: 1px solid #2a2a2a;
  padding: 2rem 1.8rem;
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.cat-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #f5c400;
  transition: width 0.3s ease;
}

.cat-card:hover {
  border-color: #f5c400;
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(245, 196, 0, 0.1);
}

.cat-card:hover::after {
  width: 100%;
}

.cat-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
}

.cat-icon-img {
  width: 2.2rem;
  height: 2.2rem;
  object-fit: contain;
  margin-bottom: 1rem;
  display: block;
}
@media (max-width: 600px) {
  .cat-icon-img {
    width: 1.8rem;
    height: 1.8rem;
  }
}

.cat-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: #efefef;
  margin-bottom: 0.5rem;
}

.cat-desc {
  color: #888888;
  font-size: 0.88rem;
  line-height: 1.65;
}

.cat-arrow {
  position: absolute;
  top: 1.8rem;
  right: 1.8rem;
  color: #f5c400;
  font-size: 1.2rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.25s, transform 0.25s;
}

.cat-card:hover .cat-arrow {
  opacity: 1;
  transform: translateX(0);
}