:root {
  --primary: #FF6600; /* Vibrant Orange */
  --primary-hover: #E65C00;
  --secondary: #1a1a1a;
  --text: #333;
  --bg: #ffffff;
  --muted: #888;
  --border: #f0f0f0;
  --container-width: 1100px;
}

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

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.7;
  color: var(--text);
  background-color: #fcfcfc;
}

h1, h2, h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: -0.5px;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.main-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--primary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: -1px;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: var(--secondary);
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s;
}

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

/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 60px 0;
  align-items: center;
}

.hero-content h1 {
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-content h1 a {
  text-decoration: none;
  color: inherit;
}

.hero-content .category {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  display: block;
  margin-bottom: 10px;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* News Grid */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  padding: 40px 0;
}

.news-card {
  background: var(--bg);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.news-card:hover {
  transform: translateY(-5px);
}

.card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
}

.card-content h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.card-content h2 a {
  text-decoration: none;
  color: inherit;
}

.card-content .date {
  font-size: 12px;
  color: var(--muted);
}

/* Article Page */
.article-page {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  max-width: var(--container-width);
  margin: 40px auto;
  padding: 0 20px;
}

.article-container {
  background: var(--bg);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.article-header {
  margin-bottom: 30px;
}

.article-category {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
}

.article-headline {
  font-size: 42px;
  line-height: 1.1;
  margin: 10px 0 20px;
}

.article-meta {
  font-size: 14px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  display: flex;
  gap: 20px;
}

.article-cover img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 30px;
}

.article-intro {
  font-size: 20px;
  font-weight: 500;
  color: var(--secondary);
  margin-bottom: 30px;
  border-left: 4px solid var(--primary);
  padding-left: 20px;
}

.article-body p {
  margin-bottom: 20px;
  font-size: 18px;
  color: #444;
}

/* Ads */
.ad-slot {
  margin: 30px 0;
  background: #f0f0f0;
  text-align: center;
  padding: 20px;
  border: 1px dashed #ccc;
}

.ad-placeholder {
  color: #aaa;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Sidebar */
.sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

/* Related Articles */
.related-articles {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #eee;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.related-card {
  text-decoration: none;
}

.related-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
}

.related-card h4 {
  font-size: 14px;
  margin-top: 10px;
  color: var(--secondary);
}

/* Sidebar Affiliate */
.affiliate-section {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  margin-top: 30px;
}

.affiliate-list {
  list-style: none;
  margin-top: 15px;
}

.affiliate-list li {
  margin-bottom: 12px;
  border-bottom: 1px solid #f5f5f5;
  padding-bottom: 8px;
}

.affiliate-list a {
  color: var(--secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

/* Footer Grid */
.main-footer {
  background: #ffffff;
  color: var(--text);
  padding: 60px 0 30px;
  margin-top: 80px;
  border-top: 1px solid var(--border);
}

.footer-brand p {
  color: var(--muted);
  max-width: 350px;
  font-size: 14px;
}

.footer-affiliates h4 {
  color: var(--secondary);
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-affiliates a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links a {
  color: var(--muted);
  margin-left: 20px;
  text-decoration: none;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .article-page {
    grid-template-columns: 1fr;
  }
  .sidebar {
    display: none;
  }
}

/* Sleek Dropdown Navigation System */
.nav-dropdown {
  position: relative;
  display: inline-block;
  margin-left: 20px;
}

.nav-dropdown-btn {
  background: none;
  border: none;
  color: var(--secondary);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all 0.3s;
}

.nav-dropdown-btn:hover {
  color: var(--primary);
}

.nav-dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: white;
  min-width: 280px;
  max-height: 400px;
  overflow-y: auto;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 15px;
  z-index: 200;
}

.nav-dropdown-content::-webkit-scrollbar {
  width: 6px;
}

.nav-dropdown-content::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.1);
  border-radius: 10px;
}

.nav-dropdown:hover .nav-dropdown-content,
.nav-dropdown.active .nav-dropdown-content {
  display: block;
}


.dropdown-column-title {
  font-size: 11px;
  font-weight: 800;
  color: var(--primary);
  margin: 12px 0 6px 0;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #f5f5f5;
  padding-bottom: 3px;
  text-align: left;
}

.dropdown-column-title:first-child {
  margin-top: 0;
}

.nav-dropdown-content a {
  display: block;
  padding: 8px 10px;
  margin: 0 !important;
  font-size: 13px !important;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.2s;
  color: #333 !important;
  text-align: left;
  border: none !important;
  background: none !important;
}

.nav-dropdown-content a:hover {
  background: rgba(255, 102, 0, 0.05) !important;
  color: var(--primary) !important;
  padding-left: 14px;
}

/* Mobile responsive navigation scroll & pills layout */
@media (max-width: 768px) {
  .main-header {
    padding: 10px 0 !important;
  }
  .main-header .container {
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 0 10px !important;
  }
  .logo {
    font-size: 20px !important;
  }
  nav {
    display: flex !important;
    width: 100% !important;
    align-items: center !important;
    gap: 8px !important;
    overflow: visible !important;
  }
  .nav-scroll-links {
    display: flex !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    width: 100% !important;
    gap: 6px !important;
    padding: 2px 2px 6px 2px !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .nav-scroll-links::-webkit-scrollbar {
    display: none !important;
  }
  nav a, .nav-dropdown {
    margin-left: 0 !important;
    flex-shrink: 0;
  }
  .nav-scroll-links a, .nav-dropdown-btn {
    background: #f4f4f5 !important;
    padding: 6px 12px !important;
    border-radius: 20px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    border: 1px solid rgba(0,0,0,0.03) !important;
    color: #444 !important;
    display: flex !important;
    align-items: center !important;
  }
  .nav-scroll-links a:hover, .nav-dropdown-btn:hover {
    background: var(--primary) !important;
    color: white !important;
    border-color: var(--primary) !important;
  }
  .nav-dropdown-content {
    left: 0;
    transform: translateY(8px) translateX(0);
    min-width: 260px;
    max-height: 280px;
  }
}


