/* ============================================
   OSINT Tools Discovery — Premium Dark Theme
   with Collapsible Sidebar
   ============================================ */

:root {
  --bg-primary: #0a0e1a;
  --bg-secondary: #0f1425;
  --bg-card: rgba(15, 20, 40, 0.7);
  --bg-card-hover: rgba(25, 30, 55, 0.85);
  --bg-glass: rgba(255, 255, 255, 0.04);
  --bg-glass-hover: rgba(255, 255, 255, 0.07);
  --bg-sidebar: rgba(10, 14, 28, 0.97);

  --accent-primary: #6c5ce7;
  --accent-primary-glow: rgba(108, 92, 231, 0.3);
  --accent-secondary: #00cec9;
  --accent-gradient: linear-gradient(135deg, #6c5ce7 0%, #00cec9 100%);
  --accent-gradient-text: linear-gradient(135deg, #a29bfe 0%, #81ecec 100%);

  --text-primary: #e8e6f0;
  --text-secondary: #9b97b0;
  --text-muted: #6c6888;
  --text-link: #a29bfe;
  --text-link-hover: #dfe6e9;

  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-card: rgba(108, 92, 231, 0.15);
  --border-card-hover: rgba(108, 92, 231, 0.4);

  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-card-hover: 0 8px 40px rgba(108, 92, 231, 0.15);
  --shadow-search: 0 8px 32px rgba(0, 0, 0, 0.4);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 50px;

  --sidebar-width: 280px;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s ease;
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === Light Theme === */
[data-theme="light"] {
  --bg-primary: #f5f5fa;
  --bg-secondary: #eeeef5;
  --bg-card: rgba(255, 255, 255, 0.85);
  --bg-card-hover: rgba(255, 255, 255, 0.95);
  --bg-glass: rgba(0, 0, 0, 0.03);
  --bg-glass-hover: rgba(0, 0, 0, 0.06);
  --bg-sidebar: rgba(245, 245, 250, 0.97);

  --accent-primary: #5b4cdb;
  --accent-primary-glow: rgba(91, 76, 219, 0.2);
  --accent-secondary: #00a8a3;
  --accent-gradient: linear-gradient(135deg, #5b4cdb 0%, #00a8a3 100%);
  --accent-gradient-text: linear-gradient(135deg, #5b4cdb 0%, #00a8a3 100%);

  --text-primary: #1a1a2e;
  --text-secondary: #555568;
  --text-muted: #888899;
  --text-link: #5b4cdb;
  --text-link-hover: #1a1a2e;

  --border-subtle: rgba(0, 0, 0, 0.08);
  --border-card: rgba(91, 76, 219, 0.12);
  --border-card-hover: rgba(91, 76, 219, 0.3);

  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-card-hover: 0 6px 28px rgba(91, 76, 219, 0.1);
  --shadow-search: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* === Theme Toggle === */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  cursor: pointer;
  flex-shrink: 0;
  transition: all var(--transition-normal);
}

.theme-toggle:hover {
  background: var(--bg-glass-hover);
  color: var(--text-primary);
  border-color: var(--accent-primary);
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Dark mode (default): show moon, hide sun */
.theme-icon-sun {
  display: none;
}

.theme-icon-moon {
  display: block;
}

[data-theme="light"] .theme-icon-sun {
  display: block;
}

[data-theme="light"] .theme-icon-moon {
  display: none;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-primary);
  border-radius: 3px;
}

/* === Hero === */
.hero {
  position: relative;
  padding: 28px 20px 10px;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(108, 92, 231, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 0%, rgba(0, 206, 201, 0.12) 0%, transparent 50%);
  animation: heroShimmer 8s ease-in-out infinite alternate;
}

@keyframes heroShimmer {
  0% {
    opacity: 0.8;
  }

  100% {
    opacity: 1;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-icon {
  font-size: 2rem;
  margin-right: 8px;
  vertical-align: middle;
  animation: shieldPulse 3s ease-in-out infinite;
}

@keyframes shieldPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.hero-title {
  font-size: clamp(1.6rem, 5vw, 2.6rem);
  font-weight: 700;
  background: var(--accent-gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.hero-subtitle {
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  color: var(--text-secondary);
  font-weight: 300;
}

.stats-bar {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 8px 0 0;
}

.stats-count {
  color: var(--accent-secondary);
  font-weight: 600;
}

.stats-separator {
  margin: 0 6px;
  opacity: 0.5;
}

/* === Search Section === */
.search-section {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 12px 20px;
  background: linear-gradient(180deg, var(--bg-primary) 60%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.search-container {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  gap: 10px;
  align-items: center;
}

.search-bar {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  padding: 6px 20px;
  box-shadow: var(--shadow-search);
  transition: border-color var(--transition-normal);
  backdrop-filter: blur(12px);
}

.search-bar:focus-within {
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-search), 0 0 0 3px var(--accent-primary-glow);
}

.search-icon {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  flex-shrink: 0;
}

.search-bar input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 1rem;
  font-family: var(--font-family);
  color: var(--text-primary);
  padding: 12px 0;
  min-width: 0;
}

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

.search-clear {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1rem;
  cursor: pointer;
  padding: 6px;
  border-radius: 50%;
  display: none;
}

.search-clear.visible {
  display: flex;
}

.search-clear:hover {
  color: var(--text-primary);
}

/* Sidebar Toggle (mobile) */
.sidebar-toggle {
  display: none;
  align-items: center;
  gap: 6px;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-family: var(--font-family);
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  transition: all var(--transition-normal);
}

.sidebar-toggle svg {
  width: 16px;
  height: 16px;
}

.sidebar-toggle:hover {
  color: var(--text-primary);
  border-color: var(--accent-primary);
}

/* === Main Layout === */
.main-layout {
  display: grid;
  grid-template-columns: var(--sidebar-width) 1fr;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 20px;
  min-height: 60vh;
}

/* === Sidebar === */
.sidebar {
  position: sticky;
  top: 64px;
  height: calc(100vh - 64px);
  overflow-y: auto;
  padding: 16px 0;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-primary) transparent;
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px 12px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 8px;
}

.sidebar-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sidebar-close {
  display: none;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px;
}

.sidebar-close:hover {
  color: var(--text-primary);
}

/* Sidebar Items */
.sidebar-item {
  border-radius: var(--radius-sm);
  margin: 1px 4px;
}

.sidebar-group-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-secondary);
  font-family: var(--font-family);
  font-size: 0.82rem;
  font-weight: 500;
  text-align: left;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.sidebar-group-btn:hover {
  background: var(--bg-glass-hover);
  color: var(--text-primary);
}

.sidebar-group-btn.active {
  background: rgba(108, 92, 231, 0.12);
  color: var(--accent-primary);
}

.sidebar-chevron {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform var(--transition-normal);
  opacity: 0.5;
}

.sidebar-group-btn.expanded .sidebar-chevron {
  transform: rotate(90deg);
}

.sidebar-label {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sidebar-badge {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-glass);
  padding: 2px 7px;
  border-radius: var(--radius-pill);
  flex-shrink: 0;
}

.sidebar-group-btn.active .sidebar-badge {
  background: rgba(108, 92, 231, 0.2);
  color: var(--accent-primary);
}

/* Collapsible sub-items */
.sidebar-children {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 20px;
}

.sidebar-children.open {
  max-height: 2000px;
}

.sidebar-child-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  font-family: var(--font-family);
  font-size: 0.78rem;
  text-align: left;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.sidebar-child-btn:hover {
  background: var(--bg-glass-hover);
  color: var(--text-primary);
}

.sidebar-child-btn.active {
  color: var(--accent-secondary);
}

/* Sidebar Overlay (mobile) */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 199;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.sidebar-overlay.visible {
  display: block;
  opacity: 1;
}

/* === Results === */
.results-section {
  padding: 8px 0 40px;
  min-width: 0;
}

.results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 4px 16px;
}

.results-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.results-count {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 14px;
}

/* === Tool Card === */
.tool-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 18px;
  transition: transform var(--transition-smooth), border-color var(--transition-normal), box-shadow var(--transition-normal), background var(--transition-normal);
  display: flex;
  flex-direction: column;
  gap: 8px;
  animation: cardFadeIn 0.3s ease both;
  position: relative;
  overflow: hidden;
}

.tool-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-gradient);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.tool-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-card-hover);
  box-shadow: var(--shadow-card-hover);
  background: var(--bg-card-hover);
}

.tool-card:hover::before {
  opacity: 1;
}

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tool-card-name {
  font-size: 0.95rem;
  font-weight: 600;
}

.tool-card-name a {
  color: var(--text-link);
  text-decoration: none;
  transition: color var(--transition-fast);
  border-bottom: 1px solid transparent;
}

.tool-card-name a:hover {
  color: var(--text-link-hover);
  border-bottom-color: var(--accent-primary);
}

.tool-card-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tool-card-category {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-secondary);
  background: rgba(0, 206, 201, 0.1);
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  align-self: flex-start;
}

/* === No Results === */
.no-results {
  text-align: center;
  padding: 80px 20px;
}

.no-results-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  opacity: 0.6;
}

.no-results h2 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.no-results p {
  color: var(--text-muted);
}

.load-more-sentinel {
  height: 1px;
}

/* === Back to Top === */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-primary);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px var(--accent-primary-glow);
  transition: opacity var(--transition-normal), transform var(--transition-normal);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  z-index: 50;
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-2px) scale(1.05);
}

/* === No Results Suggestions === */
.no-results-suggestions {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
  flex-wrap: wrap;
}

.no-results-suggestions span {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.suggestion-chip {
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  color: var(--text-link);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-family: var(--font-family);
  font-size: 0.78rem;
  font-weight: 500;
  transition: all var(--transition-normal);
}

.suggestion-chip:hover {
  background: rgba(108, 92, 231, 0.12);
  border-color: var(--accent-primary);
  color: var(--text-primary);
}

/* === Footer === */
.footer {
  text-align: center;
  padding: 48px 20px 32px;
  color: var(--text-muted);
  font-size: 0.82rem;
  border-top: 1px solid var(--border-subtle);
  background: linear-gradient(180deg, transparent 0%, rgba(108, 92, 231, 0.03) 100%);
}

.footer-inner {
  max-width: 500px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 6px;
}

.footer-logo {
  font-size: 1.3rem;
}

.footer-name {
  font-size: 1rem;
  font-weight: 600;
  background: var(--accent-gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-tagline {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.footer-shortcuts {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-shortcut {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-shortcut kbd {
  display: inline-block;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 1px 6px;
  font-family: var(--font-family);
  font-size: 0.68rem;
  color: var(--text-secondary);
  margin-right: 3px;
}

.footer-dot {
  color: var(--text-muted);
  opacity: 0.4;
}

.footer-copy {
  font-size: 0.72rem;
  color: var(--text-muted);
  opacity: 0.6;
}

/* === Focus visible (accessibility) === */
.sidebar-group-btn:focus-visible,
.sidebar-child-btn:focus-visible,
.suggestion-chip:focus-visible,
.search-bar:focus-within,
.tool-card-name a:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 2px;
}

/* === Responsive === */
@media (max-width: 1024px) {
  .sidebar-toggle {
    display: flex;
  }

  .main-layout {
    grid-template-columns: 1fr;
    padding: 0 12px;
  }

  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 300px;
    z-index: 200;
    background: var(--bg-sidebar);
    transform: translateX(-100%);
    transition: transform var(--transition-smooth);
    height: 100vh;
    padding: 16px 0;
    border-right: 1px solid var(--border-subtle);
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .sidebar-close {
    display: flex;
  }

  .sidebar-header {
    padding: 12px 16px 12px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 14px 10px 6px;
  }

  .hero-title {
    font-size: 1.3rem;
  }

  .hero-subtitle {
    font-size: 0.8rem;
  }

  .stats-bar {
    font-size: 0.72rem;
  }

  .search-section {
    padding: 8px 10px;
  }

  .search-container {
    gap: 6px;
  }

  .search-bar {
    padding: 2px 10px;
    gap: 8px;
  }

  .search-bar input {
    font-size: 0.82rem;
    padding: 8px 0;
  }

  .search-icon {
    width: 16px;
    height: 16px;
  }

  .search-kbd {
    width: 18px;
    height: 18px;
    font-size: 0.6rem;
  }

  .theme-toggle {
    width: 34px;
    height: 34px;
  }

  .theme-toggle svg {
    width: 15px;
    height: 15px;
  }

  .sidebar-toggle {
    padding: 8px 10px;
    font-size: 0.72rem;
  }

  .sidebar-toggle svg {
    width: 14px;
    height: 14px;
  }

  .sidebar-toggle span {
    display: none;
  }

  .results-header {
    padding: 4px 2px 10px;
  }

  .results-title {
    font-size: 0.95rem;
  }

  .results-count {
    font-size: 0.72rem;
  }

  .results-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .tool-card {
    padding: 14px;
    gap: 6px;
  }

  .tool-card-name {
    font-size: 0.88rem;
  }

  .tool-card-desc {
    font-size: 0.78rem;
  }

  .tool-card-category {
    font-size: 0.62rem;
  }

  .tool-card-favicon {
    width: 14px;
    height: 14px;
  }

  .back-to-top {
    bottom: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
  }

  .footer {
    padding: 32px 14px 20px;
  }

  .footer-name {
    font-size: 0.88rem;
  }

  .footer-tagline,
  .footer-shortcut {
    font-size: 0.68rem;
  }
}

/* Extra small screens (phones < 400px) */
@media (max-width: 400px) {
  .hero {
    padding: 10px 8px 4px;
  }

  .hero-title {
    font-size: 1.1rem;
  }

  .search-bar {
    padding: 2px 8px;
    gap: 6px;
  }

  .search-bar input {
    font-size: 0.78rem;
    padding: 7px 0;
  }

  .search-kbd {
    display: none;
  }

  .theme-toggle {
    width: 30px;
    height: 30px;
  }

  .tool-card {
    padding: 12px;
  }

  .results-grid {
    gap: 8px;
  }
}

/* === Skeleton Loading === */
.skeleton-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  position: relative;
}

.skeleton-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.04) 50%, transparent 100%);
  animation: skeletonShimmer 1.5s infinite;
}

@keyframes skeletonShimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.skeleton-line {
  height: 14px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
}

.skeleton-line.short {
  width: 60%;
}

.skeleton-line.medium {
  width: 85%;
}

.skeleton-line.tiny {
  width: 30%;
  height: 10px;
  margin-top: 4px;
}

/* === Favicon === */
.tool-card-favicon {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  vertical-align: -2px;
  margin-right: 6px;
  opacity: 0.85;
  transition: opacity var(--transition-fast);
}

.tool-card-name a:hover .tool-card-favicon {
  opacity: 1;
}

/* === Keyboard Hint === */
.search-kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  font-size: 0.7rem;
  font-family: var(--font-family);
  font-weight: 500;
  flex-shrink: 0;
  pointer-events: none;
}

.search-kbd.hidden {
  display: none;
}

[hidden] {
  display: none !important;
}