/**
 * DSC Header Styles
 * 
 * Custom header with mega menus, mobile nav, and threat ticker
 * 
 * @package DSC_Theme
 * @version 1.0.0
 */

/* ============================================
   HIDE DEFAULT THEME HEADER
   ============================================ */
[data-elementor-type="header"],
.elementor-location-header,
header.elementor-location-header,
.site-header,
#masthead {
  display: none !important;
}

/* ============================================
   HEADER BASE
   ============================================ */
.dsc-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999999;
  background: var(--dsc-bg-header);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--dsc-border);
  transition: all 0.3s ease;
  height: 64px;
}

.dsc-header.scrolled {
  background: rgba(10, 10, 15, 0.99);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  height: 56px;
}

.dsc-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 100%;
}

/* ============================================
   LOGO
   ============================================ */
.dsc-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.dsc-logo img {
  height: 34px;
  width: auto;
  max-width: 200px;
  transition: height 0.3s ease, opacity 0.2s ease;
}

.dsc-logo:hover img {
  opacity: 0.9;
}

.dsc-header.scrolled .dsc-logo img {
  height: 28px;
}

/* ============================================
   MAIN NAVIGATION
   ============================================ */
.dsc-nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
  height: 100%;
}

.dsc-nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.dsc-nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 14px;
  height: 100%;
  color: var(--dsc-text-muted);
  font-family: var(--dsc-font);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease;
  position: relative;
  background: transparent;
  border: none;
}

.dsc-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--dsc-cyan);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.dsc-nav-link:hover,
.dsc-nav-item:hover > .dsc-nav-link {
  color: var(--dsc-text);
}

a.dsc-nav-link:hover::after,
.dsc-nav-item:hover > a.dsc-nav-link::after {
  transform: scaleX(1);
}

.dsc-nav-link svg {
  width: 10px;
  height: 10px;
  opacity: 0.5;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.dsc-nav-item:hover > .dsc-nav-link svg {
  transform: rotate(180deg);
  opacity: 1;
}

/* ============================================
   MEGA MENU
   ============================================ */
.dsc-mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--dsc-surface);
  border: 1px solid var(--dsc-border);
  border-radius: 12px;
  padding: 20px;
  min-width: 600px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  box-shadow: var(--dsc-shadow-lg);
  z-index: 100;
  pointer-events: none;
}

.dsc-nav-item:hover > .dsc-mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.dsc-mega-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid var(--dsc-border);
}

.dsc-mega-menu::after {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid var(--dsc-surface);
}

.dsc-mega-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.dsc-mega-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.dsc-mega-item:hover {
  background: rgba(34, 211, 238, 0.08);
}

.dsc-mega-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dsc-cyan-dim);
  border-radius: 8px;
}

.dsc-mega-icon svg {
  width: 16px;
  height: 16px;
  color: var(--dsc-cyan);
}

.dsc-mega-icon.violet { background: var(--dsc-violet-dim); }
.dsc-mega-icon.violet svg { color: var(--dsc-violet); }
.dsc-mega-icon.red { background: var(--dsc-red-dim); }
.dsc-mega-icon.red svg { color: var(--dsc-red); }
.dsc-mega-icon.green { background: var(--dsc-green-dim); }
.dsc-mega-icon.green svg { color: var(--dsc-green); }

.dsc-mega-content {
  flex: 1;
  min-width: 0;
}

.dsc-mega-title {
  font-family: var(--dsc-font);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dsc-text);
  margin: 0 0 2px;
  transition: color 0.2s ease;
  line-height: 1.3;
}

.dsc-mega-item:hover .dsc-mega-title {
  color: var(--dsc-cyan);
}

.dsc-mega-desc {
  font-family: var(--dsc-font);
  font-size: 0.65rem;
  color: var(--dsc-text-muted);
  line-height: 1.3;
  margin: 0;
}

/* Mega Menu Featured CTA */
.dsc-mega-featured {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.1) 0%, rgba(167, 139, 250, 0.05) 100%);
  border: 1px solid var(--dsc-cyan-dim);
  border-radius: 8px;
  margin-top: 10px;
}

.dsc-mega-featured-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dsc-cyan);
  border-radius: 8px;
}

.dsc-mega-featured-icon svg {
  width: 20px;
  height: 20px;
  color: #000;
}

.dsc-mega-featured-content {
  flex: 1;
}

.dsc-mega-featured-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dsc-text);
  margin: 0 0 2px;
}

.dsc-mega-featured-desc {
  font-size: 0.7rem;
  color: var(--dsc-text-muted);
  margin: 0;
}

.dsc-mega-featured-btn {
  padding: 8px 16px;
  background: var(--dsc-cyan);
  color: #000;
  font-family: var(--dsc-font);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.dsc-mega-featured-btn:hover {
  background: #06b6d4;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(34, 211, 238, 0.3);
  color: #000;
}

/* ============================================
   SIMPLE DROPDOWN
   ============================================ */
.dsc-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--dsc-surface);
  border: 1px solid var(--dsc-border);
  border-radius: 10px;
  padding: 8px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
  box-shadow: var(--dsc-shadow);
  pointer-events: none;
}

.dsc-nav-item:hover > .dsc-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dsc-dropdown-item {
  display: block;
  padding: 9px 12px;
  color: var(--dsc-text-muted);
  font-family: var(--dsc-font);
  font-size: 0.8rem;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.15s ease;
}

.dsc-dropdown-item:hover {
  background: rgba(34, 211, 238, 0.1);
  color: var(--dsc-cyan);
}

/* ============================================
   HEADER ACTIONS
   ============================================ */
.dsc-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Status Badge */
.dsc-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 20px;
  font-family: var(--dsc-mono);
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dsc-green);
  margin-right: 8px;
}

.dsc-status-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--dsc-green);
  border-radius: 50%;
  animation: status-pulse 2s ease-in-out infinite;
}

@keyframes status-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Search Button */
.dsc-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--dsc-text-muted);
}

.dsc-search-btn:hover {
  border-color: var(--dsc-cyan);
  color: var(--dsc-cyan);
  background: rgba(34, 211, 238, 0.05);
}

.dsc-search-btn svg {
  width: 16px;
  height: 16px;
}

/* Phone Button */
.dsc-header-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  color: var(--dsc-text-muted);
  font-family: var(--dsc-mono);
  font-size: 0.75rem;
  font-weight: 500;
  text-decoration: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  transition: all 0.2s ease;
}

.dsc-header-phone:hover {
  border-color: var(--dsc-cyan);
  color: var(--dsc-cyan);
  background: rgba(34, 211, 238, 0.05);
}

.dsc-header-phone svg {
  width: 13px;
  height: 13px;
  opacity: 0.7;
}

.dsc-header-phone:hover svg {
  opacity: 1;
}

/* CTA Button */
.dsc-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  background: var(--dsc-cyan);
  color: #000;
  font-family: var(--dsc-font);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.dsc-header-cta:hover {
  background: #06b6d4;
  color: #000;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(34, 211, 238, 0.35);
}

/* Mobile Toggle */
.dsc-mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.dsc-mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--dsc-text-muted);
  border-radius: 1px;
  transition: all 0.3s ease;
}

.dsc-mobile-toggle:hover {
  border-color: var(--dsc-cyan);
}

.dsc-mobile-toggle:hover span {
  background: var(--dsc-cyan);
}

.dsc-mobile-toggle.active span {
  background: var(--dsc-cyan);
}

.dsc-mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.dsc-mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.dsc-mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   SEARCH OVERLAY
   ============================================ */
.dsc-search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(10px);
  z-index: 9999999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.dsc-search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.dsc-search-container {
  width: 100%;
  max-width: 600px;
  padding: 0 24px;
}

.dsc-search-input-wrap {
  position: relative;
}

.dsc-search-input {
  width: 100%;
  padding: 16px 20px 16px 50px;
  background: var(--dsc-surface);
  border: 1px solid var(--dsc-border);
  border-radius: 12px;
  color: var(--dsc-text);
  font-family: var(--dsc-font);
  font-size: 1.1rem;
  outline: none;
  transition: all 0.2s ease;
}

.dsc-search-input:focus {
  border-color: var(--dsc-cyan);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.1);
}

.dsc-search-input::placeholder {
  color: var(--dsc-text-muted);
}

.dsc-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--dsc-text-muted);
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.dsc-search-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dsc-surface);
  border: 1px solid var(--dsc-border);
  border-radius: 8px;
  color: var(--dsc-text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

.dsc-search-close:hover {
  border-color: var(--dsc-red);
  color: var(--dsc-red);
}

.dsc-search-close svg {
  width: 20px;
  height: 20px;
}

.dsc-search-hint {
  text-align: center;
  margin-top: 16px;
  color: var(--dsc-text-muted);
  font-size: 0.8rem;
}

.dsc-search-hint kbd {
  display: inline-block;
  padding: 2px 6px;
  background: var(--dsc-surface);
  border: 1px solid var(--dsc-border);
  border-radius: 4px;
  font-family: var(--dsc-mono);
  font-size: 0.7rem;
  margin: 0 2px;
}

.dsc-search-quick {
  margin-top: 30px;
}

.dsc-search-quick-title {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dsc-text-muted);
  margin-bottom: 12px;
}

.dsc-search-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dsc-search-quick-links a {
  padding: 8px 14px;
  background: var(--dsc-surface);
  border: 1px solid var(--dsc-border);
  border-radius: 6px;
  color: var(--dsc-text-muted);
  font-size: 0.8rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.dsc-search-quick-links a:hover {
  border-color: var(--dsc-cyan);
  color: var(--dsc-cyan);
}

/* ============================================
   MOBILE MENU
   ============================================ */
.dsc-mobile-menu {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dsc-bg);
  padding: 20px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  z-index: 999998;
  display: none;
}

.dsc-mobile-menu.active {
  transform: translateX(0);
}

.dsc-mobile-nav-item {
  border-bottom: 1px solid var(--dsc-border);
}

.dsc-mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  color: var(--dsc-text);
  font-family: var(--dsc-font);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 100%;
}

.dsc-mobile-nav-link svg {
  width: 16px;
  height: 16px;
  opacity: 0.5;
  transition: transform 0.2s ease;
}

.dsc-mobile-nav-item.open .dsc-mobile-nav-link svg {
  transform: rotate(180deg);
}

.dsc-mobile-submenu {
  display: none;
  padding: 0 0 10px 16px;
}

.dsc-mobile-nav-item.open .dsc-mobile-submenu {
  display: block;
}

.dsc-mobile-submenu a {
  display: block;
  padding: 10px 0;
  color: var(--dsc-text-muted);
  font-size: 0.9rem;
  text-decoration: none;
  border-bottom: 1px solid var(--dsc-border);
}

.dsc-mobile-submenu a:last-child {
  border-bottom: none;
}

.dsc-mobile-submenu a:hover {
  color: var(--dsc-cyan);
}

.dsc-mobile-cta {
  display: block;
  width: 100%;
  margin-top: 20px;
  padding: 14px;
  background: var(--dsc-cyan);
  color: #000;
  font-family: var(--dsc-font);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
}

/* ============================================
   THREAT TICKER
   ============================================ */
.dsc-threat-ticker {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 999997;
  background: linear-gradient(180deg, rgba(10, 10, 15, 0.98) 0%, rgba(10, 10, 15, 0.95) 100%);
  border-bottom: 1px solid rgba(244, 63, 94, 0.3);
  padding: 8px 0;
  transition: all 0.3s ease;
}

.dsc-header.scrolled ~ .dsc-threat-ticker {
  top: 56px;
}

.dsc-threat-ticker::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(244, 63, 94, 0.6) 20%, rgba(244, 63, 94, 0.8) 50%, rgba(244, 63, 94, 0.6) 80%, transparent 100%);
}

.dsc-threat-ticker.hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
}

.dsc-ticker-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.dsc-ticker-label {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.dsc-ticker-dot {
  width: 6px;
  height: 6px;
  background: var(--dsc-red);
  border-radius: 50%;
  animation: ticker-pulse 1.5s ease-in-out infinite;
}

@keyframes ticker-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(244, 63, 94, 0.4); }
  50% { opacity: 0.6; box-shadow: 0 0 0 4px rgba(244, 63, 94, 0); }
}

.dsc-ticker-label span:not(.dsc-ticker-dot) {
  font-family: var(--dsc-mono);
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dsc-text-muted);
}

.dsc-ticker-ip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 4px;
  flex-shrink: 0;
}

.dsc-ticker-ip-label {
  font-family: var(--dsc-font);
  font-size: 0.55rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dsc-text-muted);
}

.dsc-ticker-ip-value {
  font-family: var(--dsc-mono);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--dsc-cyan);
}

.dsc-ticker-scroll {
  flex: 1;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, black 3%, black 97%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 3%, black 97%, transparent);
}

.dsc-ticker-content {
  display: flex;
  gap: 20px;
  white-space: nowrap;
  animation: ticker-scroll 25s linear infinite;
  will-change: transform;
}

.dsc-ticker-content.paused {
  animation-play-state: paused;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.dsc-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--dsc-mono);
  font-size: 0.7rem;
  color: var(--dsc-text-secondary);
  padding: 0 8px;
}

.dsc-ticker-item::after {
  content: '•';
  color: rgba(244, 63, 94, 0.4);
  margin-left: 8px;
}

.dsc-ticker-item .source {
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dsc-cyan);
}

.dsc-ticker-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: linear-gradient(135deg, rgba(244, 63, 94, 0.15) 0%, rgba(244, 63, 94, 0.05) 100%);
  border: 1px solid rgba(244, 63, 94, 0.4);
  border-radius: 4px;
  color: var(--dsc-red);
  font-family: var(--dsc-mono);
  font-size: 0.6rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.dsc-ticker-link:hover {
  background: rgba(244, 63, 94, 0.2);
  border-color: var(--dsc-red);
  box-shadow: 0 0 15px rgba(244, 63, 94, 0.3);
  color: var(--dsc-red);
}

.dsc-ticker-link svg {
  width: 12px;
  height: 12px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .dsc-nav-link {
    padding: 0 10px;
    font-size: 0.8rem;
  }
  
  .dsc-header-phone {
    display: none;
  }
  
  .dsc-status-badge {
    display: none;
  }
}

@media (max-width: 1024px) {
  .dsc-nav {
    display: none;
  }
  
  .dsc-mobile-toggle {
    display: flex;
  }
  
  .dsc-mobile-menu {
    display: block;
  }
  
  .dsc-header {
    height: 56px;
  }
  
  .dsc-header.scrolled {
    height: 52px;
  }
  
  .dsc-logo img {
    height: 30px;
  }
  
  .dsc-header.scrolled .dsc-logo img {
    height: 26px;
  }
  
  .dsc-threat-ticker {
    top: 56px;
  }
  
  .dsc-header.scrolled ~ .dsc-threat-ticker {
    top: 52px;
  }
  
  .dsc-mobile-menu {
    top: 56px;
  }
  
  .dsc-ticker-ip {
    display: none;
  }
  
  .dsc-ticker-label span:not(.dsc-ticker-dot) {
    display: none;
  }
  
  .dsc-ticker-link span {
    display: none;
  }
  
  .dsc-search-btn {
    display: none;
  }
}

@media (max-width: 768px) {
  .dsc-header-inner {
    padding: 0 16px;
  }
  
  .dsc-header {
    height: 52px;
  }
  
  .dsc-header.scrolled {
    height: 48px;
  }
  
  .dsc-logo img {
    height: 26px;
  }
  
  .dsc-header.scrolled .dsc-logo img {
    height: 24px;
  }
  
  .dsc-header-cta {
    padding: 6px 12px;
    font-size: 0.75rem;
  }
  
  .dsc-mobile-toggle {
    width: 34px;
    height: 34px;
  }
  
  .dsc-mobile-toggle span {
    width: 16px;
  }
  
  .dsc-threat-ticker {
    top: 52px;
    padding: 6px 0;
  }
  
  .dsc-header.scrolled ~ .dsc-threat-ticker {
    top: 48px;
  }
  
  .dsc-mobile-menu {
    top: 52px;
    padding: 16px;
  }
  
  .dsc-ticker-inner {
    padding: 0 12px;
    gap: 10px;
  }
  
  .dsc-ticker-item {
    font-size: 0.65rem;
  }
  
  .dsc-ticker-content {
    animation-duration: 35s;
  }
}
