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

    :root {
      --background: 222 47% 11%;
      --foreground: 210 40% 98%;
      --card: 224 40% 16%;
      --card-foreground: 210 40% 98%;
      --primary: 199 89% 48%;
      --primary-foreground: 210 40% 98%;
      --secondary: 217 33% 17%;
      --secondary-foreground: 210 40% 98%;
      --muted: 217 33% 17%;
      --muted-foreground: 215 20% 65%;
      --accent: 142 76% 36%;
      --accent-foreground: 210 40% 98%;
      --destructive: 0 84% 60%;
      --border: 217 33% 25%;
      --radius: 0.75rem;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
      background-color: hsl(var(--background));
      color: hsl(var(--foreground));
      line-height: 1.6;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
    }

    /* Navbar */
   
    
    /* Mobile Menu Dropdown */
    .mobile-menu {
      display: none;
      position: absolute;
      top: 100%;
      right: 1rem;
      background: hsl(var(--card));
      border: 1px solid hsl(var(--border));
      border-radius: var(--radius);
      padding: 0.5rem;
      min-width: 200px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
      animation: fadeIn 0.2s ease-out;
    }

    .mobile-menu.active {
      display: block;
    }

    .mobile-menu-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .mobile-menu-link {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.75rem 1rem;
      color: hsl(var(--foreground));
      text-decoration: none;
      border-radius: calc(var(--radius) - 0.25rem);
      transition: background-color 0.2s;
    }

    .mobile-menu-link:hover {
      background: hsl(var(--muted));
    }

    .mobile-menu-link svg {
      width: 18px;
      height: 18px;
      color: hsl(var(--muted-foreground));
    }

    .mobile-menu-divider {
      height: 1px;
      background: hsl(var(--border));
      margin: 0.5rem 0;
    }

    .mobile-menu-footer {
      padding: 0.5rem;
    }

    .mobile-menu-cta {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      width: 100%;
      padding: 0.75rem 1rem;
      background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
      color: hsl(var(--primary-foreground));
      text-decoration: none;
      border-radius: calc(var(--radius) - 0.25rem);
      font-weight: 600;
      font-size: 0.875rem;
      transition: opacity 0.2s;
    }

    .mobile-menu-cta:hover {
      opacity: 0.9;
    }

    .mobile-menu-cta svg {
      width: 16px;
      height: 16px;
    }

    /* Main Content */
    .main-content {
      padding-top: 6rem;
      padding-bottom: 4rem;
      min-height: 100vh;
    }

    .page-header {
      text-align: center;
      margin-bottom: 3rem;
      animation: fadeIn 0.6s ease-out;
    }

    .header-icon-wrapper {
      display: flex;
      justify-content: center;
      margin-bottom: 1rem;
    }

    .header-icon {
      padding: 0.75rem;
      background: linear-gradient(135deg, hsl(var(--primary) / 0.2), hsl(var(--primary) / 0.1));
      border-radius: 0.75rem;
      color: hsl(var(--primary));
    }

    .page-title {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .page-description {
      font-size: 1.125rem;
      color: hsl(var(--muted-foreground));
      max-width: 42rem;
      margin: 0 auto;
    }

    /* Stats Grid */
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      margin-bottom: 3rem;
      animation: fadeIn 0.6s ease-out 0.2s backwards;
    }

    .stat-card {
      background: linear-gradient(135deg, hsl(var(--card)), hsl(224 40% 14%));
      border: 1px solid hsl(var(--border));
      border-radius: var(--radius);
      padding: 1.5rem;
    }

    .stat-card.primary {
      background: linear-gradient(135deg, hsl(var(--primary) / 0.1), hsl(var(--primary) / 0.05));
      border-color: hsl(var(--primary) / 0.2);
    }

    .stat-card.accent {
      background: linear-gradient(135deg, hsl(var(--accent) / 0.1), hsl(var(--accent) / 0.05));
      border-color: hsl(var(--accent) / 0.2);
    }

    .stat-card.secondary {
      background: linear-gradient(135deg, hsl(var(--secondary) / 0.1), hsl(var(--secondary) / 0.05));
      border-color: hsl(var(--secondary) / 0.2);
    }

    .stat-icon-wrapper {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 0.75rem;
    }

    .stat-icon {
      padding: 0.5rem;
      border-radius: 0.5rem;
    }

    .stat-icon.primary {
      background: hsl(var(--primary) / 0.2);
      color: hsl(var(--primary));
    }

    .stat-icon.accent {
      background: hsl(var(--accent) / 0.2);
      color: hsl(var(--accent));
    }

    .stat-icon.secondary {
      background: hsl(var(--secondary) / 0.2);
      color: hsl(var(--secondary-foreground));
    }

    .stat-label {
      font-size: 0.875rem;
      font-weight: 500;
      color: hsl(var(--muted-foreground));
    }

    .stat-value {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 0.25rem;
    }

    .stat-subtext {
      font-size: 0.75rem;
      color: hsl(var(--muted-foreground));
    }

    /* Filters */
    .filters {
      display: flex;
      gap: 1rem;
      margin-bottom: 2rem;
      align-items: center;
      animation: fadeIn 0.6s ease-out 0.3s backwards;
    }

    .select-input {
      padding: 0.75rem 1rem;
      background: hsl(var(--card));
      border: 1px solid hsl(var(--border));
      border-radius: var(--radius);
      color: hsl(var(--foreground));
      font-size: 1rem;
      cursor: pointer;
      outline: none;
      transition: border-color 0.2s;
      min-width: 160px;
    }

    .select-input:focus {
      border-color: hsl(var(--primary));
    }

    .badge {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 1rem;
      background: transparent;
      border: 1px solid hsl(var(--border));
      border-radius: var(--radius);
      font-size: 0.875rem;
      color: hsl(var(--foreground));
      margin-left: auto;
    }

    .badge svg {
      width: 16px;
      height: 16px;
    }

    /* Markets Grid */
    .markets-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 1.5rem;
      margin-bottom: 2rem;
      animation: fadeIn 0.6s ease-out 0.4s backwards;
    }

    .market-card-wrapper {
      position: relative;
    }

    .rank-badge {
      position: absolute;
      top: -0.75rem;
      left: -0.75rem;
      z-index: 10;
      padding: 0.25rem 0.75rem;
      background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
      color: hsl(var(--primary-foreground));
      border-radius: var(--radius);
      font-size: 0.875rem;
      font-weight: 600;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

    .market-card {
      display: block;
      background: hsl(var(--card));
      border: 1px solid hsl(var(--border));
      border-radius: var(--radius);
      padding: 1.5rem;
      transition: transform 0.2s, border-color 0.2s;
      cursor: pointer;
      text-decoration: none;
      color: inherit;
      height: 100%;
    }

    .market-card:hover {
      transform: translateY(-2px);
      border-color: hsl(var(--primary) / 0.5);
    }

    .market-header {
      display: flex;
      justify-content: space-between;
      align-items: start;
      margin-bottom: 1rem;
    }

    .market-category {
      padding: 0.25rem 0.75rem;
      background: hsl(var(--secondary));
      color: hsl(var(--secondary-foreground));
      border-radius: 9999px;
      font-size: 0.75rem;
    }

    .market-trend {
      display: flex;
      align-items: center;
      gap: 0.25rem;
      font-size: 0.875rem;
      font-weight: 600;
    }

    .market-trend.up {
      color: hsl(var(--accent));
    }

    .market-trend.down {
      color: hsl(var(--destructive));
    }

    .market-trend svg {
      width: 16px;
      height: 16px;
    }

    .market-title {
      font-size: 1.125rem;
      font-weight: 600;
      margin-bottom: 1rem;
      line-height: 1.4;
    }

    .market-prices {
      display: flex;
      gap: 1rem;
      margin-bottom: 1rem;
    }

    .price-box {
      flex: 1;
      padding: 0.75rem;
      border-radius: calc(var(--radius) - 0.25rem);
      text-align: center;
    }

    .price-box.yes {
      background: hsl(var(--accent) / 0.1);
      border: 1px solid hsl(var(--accent) / 0.2);
    }

    .price-box.no {
      background: hsl(var(--destructive) / 0.1);
      border: 1px solid hsl(var(--destructive) / 0.2);
    }

    .price-label {
      font-size: 0.75rem;
      color: hsl(var(--muted-foreground));
      margin-bottom: 0.25rem;
    }

    .price-value {
      font-size: 1.25rem;
      font-weight: 700;
    }

    .price-value.yes {
      color: hsl(var(--accent));
    }

    .price-value.no {
      color: hsl(var(--destructive));
    }

    .market-stats {
      display: flex;
      justify-content: space-between;
      padding-top: 1rem;
      border-top: 1px solid hsl(var(--border));
      font-size: 0.875rem;
    }

    .market-stat-label {
      color: hsl(var(--muted-foreground));
      margin-bottom: 0.25rem;
    }

    .market-stat-value {
      font-weight: 600;
    }

    /* Hot Score */
    .hot-score {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 1rem;
    }

    .hot-score-label {
      font-size: 0.75rem;
      color: hsl(var(--muted-foreground));
    }

    .hot-score-bar {
      flex: 1;
      height: 6px;
      background: hsl(var(--muted));
      border-radius: 3px;
      overflow: hidden;
    }

    .hot-score-fill {
      height: 100%;
      background: linear-gradient(90deg, hsl(var(--primary)), hsl(var(--accent)));
      border-radius: 3px;
    }

    .hot-score-value {
      font-size: 0.875rem;
      font-weight: 600;
      color: hsl(var(--primary));
    }

    /* Pagination */
    .pagination-wrapper {
      display: flex;
      justify-content: center;
      margin-top: 2rem;
    }

    .pagination {
      display: flex;
      gap: 0.5rem;
      align-items: center;
    }

    .pagination-button {
      padding: 0.5rem 1rem;
      background: hsl(var(--card));
      border: 1px solid hsl(var(--border));
      border-radius: var(--radius);
      color: hsl(var(--foreground));
      cursor: pointer;
      transition: background-color 0.2s, border-color 0.2s;
    }

    .pagination-button:hover:not(:disabled) {
      background: hsl(var(--muted));
      border-color: hsl(var(--primary));
    }

    .pagination-button.active {
      background: hsl(var(--primary));
      border-color: hsl(var(--primary));
      color: hsl(var(--primary-foreground));
    }

    .pagination-button:disabled {
      opacity: 0.5;
      cursor: not-allowed;
    }

    .results-info {
      text-align: center;
      margin-top: 2rem;
      color: hsl(var(--muted-foreground));
      font-size: 0.875rem;
    }

    /* Footer */
    .footer {
      border-top: 1px solid hsl(var(--border));
      padding: 3rem 0;
      margin-top: 5rem;
      text-align: center;
      color: hsl(var(--muted-foreground));
    }

    /* Animations */
    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Responsive */
    @media (max-width: 768px) {
      .page-title {
        font-size: 2rem;
      }

      .navbar-links {
        display: none;
      }

      .mobile-menu-btn {
        display: flex;
      }

      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .filters {
        flex-direction: column;
        align-items: stretch;
      }

      .badge {
        margin-left: 0;
        justify-content: center;
      }

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

    @media (max-width: 480px) {
      .stats-grid {
        grid-template-columns: 1fr;
      }
    }

    .hidden {
      display: none;
    }