:root {
  --bg: #0a0a0f;
  --text: #e8e8e8;
  --accent: #ff6b35;
  --accent2: #ffd93d;
  --buzz: #00f2ff;
  --card: #16161e;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

header {
  padding: 1rem 5%;
  background: rgba(10, 10, 15, 0.95);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--accent);
  backdrop-filter: blur(10px);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--buzz);
}

.logo .buzz {
  color: var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--accent2);
}

.hero,
.hero-small {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 5% 60px;
  background: radial-gradient(ellipse at center, #1a0f20 0%, var(--bg) 60%);
}

.hero-small {
  min-height: 40vh;
}

.breaking-badge {
  background: var(--accent);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--buzz), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

.tagline {
  font-size: 1.4rem;
  opacity: 0.9;
}

.buzz-section {
  padding: 80px 8%;
}

.buzz-section.alt {
  background: #0f0f17;
}

.buzz-section h2 {
  font-size: 2.8rem;
  color: var(--buzz);
  margin-bottom: 2rem;
  font-weight: 800;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.news-card {
  background: var(--card);
  padding: 2rem;
  border-radius: 15px;
  border: 2px solid transparent;
  transition: all 0.3s;
  position: relative;
}

.news-card.featured {
  border-color: var(--accent);
}

.news-card:hover {
  transform: translateY(-5px);
  border-color: var(--buzz);
}

.news-card h3 {
  margin-bottom: 0.5rem;
}

.badge {
  position: absolute;
  top: -10px;
  right: 20px;
  padding: 0.3rem 1rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 800;
}

.badge.hot {
  background: var(--accent);
  color: white;
}

.badge.trending {
  background: var(--accent2);
  color: #111;
}

.badge.new {
  background: var(--buzz);
  color: var(--bg);
}

.date {
  color: var(--accent2);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.read-link {
  color: var(--buzz);
  text-decoration: none;
  font-weight: 600;
}

.read-link:hover {
  text-decoration: underline;
}

.buzz-reasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.reason {
  background: var(--card);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
}

.reason-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.reason h3 {
  margin-bottom: 1rem;
  color: var(--accent2);
}

.stats-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-top: 2rem;
}

.stat-big {
  text-align: center;
  background: var(--card);
  padding: 3rem 2rem;
  border-radius: 20px;
  border: 2px solid var(--accent);
}

.stat-number {
  font-size: 4rem;
  font-weight: 900;
  color: var(--accent);
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.8;
  margin-top: 0.5rem;
}

.companies-buzz {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.company-buzz {
  background: var(--card);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--buzz);
}

.company-buzz h3 {
  color: var(--accent2);
  margin-bottom: 0.5rem;
}

.cta {
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 53, 0.2),
    rgba(0, 242, 255, 0.2)
  );
  border: 2px solid var(--accent);
}

.cta-button {
  display: inline-block;
  margin-top: 2rem;
  padding: 1.2rem 3rem;
  background: var(--accent);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 800;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.cta-button:hover {
  background: var(--buzz);
  color: var(--bg);
}

.contact-simple {
  max-width: 800px;
  margin: 0 auto;
  background: var(--card);
  padding: 3rem;
  border-radius: 20px;
}

.contact-simple h2 {
  color: var(--buzz);
  margin-bottom: 1.5rem;
}

.contact-simple a {
  color: var(--accent);
  text-decoration: none;
}

.contact-simple a:hover {
  text-decoration: underline;
}

.contact-reasons {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid var(--accent);
}

.contact-reasons h3 {
  color: var(--accent2);
  margin-bottom: 1rem;
}

.contact-reasons ul {
  margin-left: 2rem;
  margin-top: 1rem;
}

.contact-reasons li {
  margin-bottom: 0.5rem;
}

footer {
  padding: 3rem 5%;
  border-top: 2px solid var(--accent);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--buzz);
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--accent2);
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  opacity: 0.6;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 107, 53, 0.3);
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  nav ul {
    display: none;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .stats-showcase {
    grid-template-columns: 1fr;
  }
}
