      :root {
          --primary: #0f172a;
          --primary-light: #1e293b;
          --accent: #3b82f6;
          --accent-hover: #2563eb;
          --success: #10b981;
          --success-light: #d1fae5;
          --warning: #f59e0b;
          --warning-light: #fef3c7;
          --danger: #f43f5e;
          --danger-light: #ffe4e6;
          --text-main: #1e293b;
          --text-muted: #64748b;
          --text-light: #94a3b8;
          --bg-main: #f8fafc;
          --bg-surface: #ffffff;
          --border: #e2e8f0;
          --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
          --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
          --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
          --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
          --radius-sm: 0.375rem;
          --radius: 0.5rem;
          --radius-md: 0.75rem;
          --radius-lg: 1rem;
          --gold: #fbbf24;
      }

      body {
          background-color: var(--bg-main);
          color: var(--text-main);
          font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
          min-height: 100vh;
          padding-top: 80px;
          line-height: 1.5;
      }



      .stock-title {
          font-weight: 700;
          letter-spacing: -0.5px;
          margin-bottom: 0.25rem;
      }

      .stock-price {
          font-size: 2.8rem;
          font-weight: 800;
          line-height: 1;
          color: white;
          text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
      }

      .price-change {
          display: inline-flex;
          align-items: center;
          padding: 0.25rem 0.75rem;
          border-radius: 20px;
          font-weight: 600;
          background-color: rgba(255, 255, 255, 0.2);
      }

      .positive {
          color: #10b981;
      }

      .negative {
          color: #ef4444;
      }

      .card {
          background-color: var(--bg-surface);
          border: 1px solid var(--border);
          border-radius: var(--radius-lg);
          box-shadow: var(--shadow);
          transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
          overflow: hidden;
          margin-bottom: 1.5rem;
      }

      .card:hover {
          transform: translateY(-4px);
          box-shadow: var(--shadow-md);
      }

      .card-header {
          background: var(--bg-surface);
          color: var(--text-main);
          font-weight: 700;
          padding: 1.25rem 1.5rem;
          border-bottom: 1px solid var(--border);
          display: flex;
          align-items: center;
          gap: 0.75rem;
      }

      .card-header i {
          color: var(--gold);
          margin-right: 10px;
      }

      .card-body {
          padding: 1.5rem;
      }

      .indicator-card {
          text-align: center;
          padding: 1.25rem;
          height: 100%;
      }

      .indicator-value {
          font-size: 1.8rem;
          font-weight: 700;
          margin: 0.5rem 0;
          color: var(--text-dark);
      }

      .indicator-label {
          font-size: 0.9rem;
          color: var(--text-light);
          margin-bottom: 0.25rem;
      }

      .signal-badge {
          padding: 0.375rem 0.75rem;
          border-radius: 2rem;
          font-weight: 600;
          font-size: 0.75rem;
          text-transform: uppercase;
          letter-spacing: 0.025em;
          display: inline-flex;
          align-items: center;
      }

      .signal-buy {
          background-color: var(--success-light);
          color: var(--success);
      }

      .signal-neutral {
          background-color: var(--warning-light);
          color: var(--warning);
      }

      .signal-sell {
          background-color: var(--danger-light);
          color: var(--danger);
      }

      .chart-container {
          position: relative;
          height: 280px;
          margin-top: 1rem;
      }

      .volume-indicator {
          display: inline-block;
          width: 12px;
          height: 12px;
          border-radius: 50%;
          margin-right: 5px;
      }

      .volume-normal {
          background-color: var(--primary);
      }

      .volume-spike {
          background-color: var(--success);
      }

      .volume-decreasing {
          background-color: var(--danger);
      }

      .volume-increasing {
          background-color: var(--warning);
      }

      .progress {
          height: 8px;
          border-radius: 4px;
          background-color: #e2e8f0;
      }

      .progress-bar {
          border-radius: 4px;
      }

      .skeleton {
          background: linear-gradient(90deg, #f1f5f9, #e2e8f0, #f1f5f9);
          background-size: 200% 100%;
          border-radius: 8px;
          animation: skeleton-loading 1.5s infinite;
      }

      @keyframes skeleton-loading {
          0% {
              background-position: 200% 0;
          }

          100% {
              background-position: -200% 0;
          }
      }

      .recommendation-card {
          background-color: var(--primary-extra-light);
          border: 1px solid var(--border);
          border-radius: 12px;
          padding: 1.5rem;
          position: relative;
          overflow: hidden;
      }

      .strategy-card {
          height: 100%;
          border-radius: 12px;
          padding: 1.5rem;
          display: flex;
          flex-direction: column;
          background-color: white;
          border: 1px solid var(--border);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
      }

      .strategy-entry {
          border-left: 4px solid var(--primary);
      }

      .strategy-target {
          border-left: 4px solid var(--success);
      }

      .strategy-stop {
          border-left: 4px solid var(--danger);
      }

      .loading-overlay {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: rgba(255, 255, 255, 0.8);
          display: flex;
          align-items: center;
          justify-content: center;
          z-index: 100;
          border-radius: 12px;
      }

      .spinner {
          width: 3rem;
          height: 3rem;
          border: 3px solid rgba(59, 130, 246, 0.2);
          border-radius: 50%;
          border-top-color: var(--primary);
          animation: spin 1s linear infinite;
      }

      @keyframes spin {
          to {
              transform: rotate(360deg);
          }
      }

      .tab-btn {
          background: none;
          border: 1px solid var(--border);
          color: var(--text-medium);
          padding: 0.4rem 0.8rem;
          font-weight: 500;
          border-radius: 8px;
          transition: all 0.3s ease;
      }

      .tab-btn.active {
          background-color: var(--primary);
          color: white;
          border-color: var(--primary);
      }

      .btn-accent {
          background-color: var(--accent);
          color: white;
          border: none;
          font-weight: 600;
          transition: all 0.2s ease;
      }

      .btn-accent:hover {
          background-color: var(--accent-hover);
          color: white;
      }

      .btn-outline-accent {
          background-color: transparent;
          color: var(--accent);
          border: 2px solid var(--accent);
          font-weight: 600;
          transition: all 0.2s ease;
      }

      .btn-outline-accent:hover {
          background-color: var(--accent);
          color: white;
      }

      .btn-primary {
          background-color: var(--accent);
          border-color: var(--accent);
          font-weight: 600;
      }

      .btn-primary:hover {
          background-color: var(--accent-hover);
          border-color: var(--accent-hover);
      }

      .icon-box {
          display: flex;
          align-items: center;
          justify-content: center;
          width: 2.5rem;
          height: 2.5rem;
          font-size: 1.125rem;
      }

      .text-accent {
          color: var(--accent) !important;
      }

      .bg-primary-light {
          background-color: var(--primary-light) !important;
      }

      .bg-success-light {
          background-color: var(--success-light) !important;
      }

      .bg-warning-light {
          background-color: var(--warning-light) !important;
      }

      .bg-danger-light {
          background-color: var(--danger-light) !important;
      }

      .hover-bg:hover {
          background-color: var(--bg-main);
      }

      .transition-all {
          transition: all 0.2s ease;
      }

      .last-updated {
          font-size: 0.85rem;
          color: var(--text-light);
          text-align: center;
          margin-top: 1rem;
      }

      .search-container {
          max-width: 600px;
          margin: 2rem auto;
      }

      .dashboard-container {
          max-width: 1600px;
          margin: 0 auto;
          padding: 0 20px;
      }

      .technical-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
          gap: 20px;
          margin-bottom: 20px;
      }

      .chart-grid {
          display: grid;
          grid-template-columns: 2fr 1fr;
          gap: 20px;
          margin-bottom: 20px;
      }

      .ema-grid {
          display: grid;
          grid-template-columns: repeat(3, 1fr);
          gap: 1rem;
      }

      .indicator-card-small {
          background-color: var(--bg-main);
          border-radius: var(--radius);
          padding: 1.25rem;
          text-align: center;
          border: 1px solid var(--border);
          transition: all 0.2s ease;
      }

      .indicator-card-small:hover {
          border-color: var(--accent);
          background-color: var(--bg-surface);
      }

      .indicator-value-small {
          font-family: 'Outfit', sans-serif;
          font-size: 1.25rem;
          font-weight: 700;
          color: var(--primary);
          margin: 0.25rem 0;
      }

      .market-levels {
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 1rem;
      }

      .level-card {
          background-color: var(--bg-main);
          border-radius: var(--radius);
          padding: 1.25rem;
          border: 1px solid var(--border);
      }

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

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

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

          .market-levels {
              grid-template-columns: 1fr;
          }

          .stock-price {
              font-size: 2.2rem;
          }
      }

      .dashboard-header {
          background: linear-gradient(135deg, var(--primary), var(--primary-light));
          color: white;
          padding: 3rem 0;
          margin-bottom: 2rem;
          position: relative;
          overflow: hidden;
      }

      .dashboard-header::before {
          content: '';
          position: absolute;
          top: 0;
          right: 0;
          width: 40%;
          height: 100%;
          background: radial-gradient(circle at center, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
          pointer-events: none;
      }

      .company-logo {
          width: 80px;
          height: 80px;
          background: rgba(255, 255, 255, 0.1);
          backdrop-filter: blur(10px);
          border: 1px solid rgba(255, 255, 255, 0.2);
          border-radius: var(--radius-lg);
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 2rem;
          color: white;
          margin-right: 1.5rem;
      }

      .company-title {
          font-family: 'Outfit', sans-serif;
          font-weight: 800;
          font-size: 2.25rem;
          letter-spacing: -0.02em;
          margin-bottom: 0.25rem;
      }

      .stock-price {
          font-family: 'Outfit', sans-serif;
          font-size: 3.5rem;
          font-weight: 800;
          line-height: 1;
          color: white;
          letter-spacing: -0.02em;
      }

      .price-change {
          display: inline-flex;
          align-items: center;
          padding: 0.375rem 0.875rem;
          border-radius: 2rem;
          font-weight: 700;
          font-size: 0.875rem;
          background-color: rgba(255, 255, 255, 0.1);
          backdrop-filter: blur(4px);
          border: 1px solid rgba(255, 255, 255, 0.1);
      }

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

      .info-item {
          display: flex;
          justify-content: space-between;
          align-items: center;
          padding: 0.75rem 0;
          border-bottom: 1px solid var(--border);
      }

      .info-item:last-child {
          border-bottom: none;
      }

      .info-label {
          font-weight: 600;
          color: var(--text-light);
          font-size: 0.875rem;
      }

      .info-value {
          font-weight: 700;
          color: var(--text-main);
          text-align: right;
      }

      .executive-card {
          padding: 1.25rem;
          border-radius: var(--radius);
          background-color: var(--bg-main);
          border: 1px solid var(--border);
          transition: all 0.2s ease;
          height: 100%;
      }

      .executive-card:hover {
          border-color: var(--accent);
          background-color: var(--bg-surface);
          transform: translateY(-2px);
      }

      .fundamental-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
          gap: 1.25rem;
      }

      .fundamental-card {
          background: var(--bg-surface);
          border-radius: var(--radius-lg);
          padding: 1.5rem;
          border: 1px solid var(--border);
          transition: all 0.3s ease;
      }

      .fundamental-card:hover {
          transform: translateY(-4px);
          box-shadow: var(--shadow-md);
          border-color: var(--accent);
      }

      .fundamental-value {
          font-family: 'Outfit', sans-serif;
          font-size: 1.5rem;
          font-weight: 700;
          color: var(--primary);
      }

      .fundamental-label {
          font-size: 0.8125rem;
          font-weight: 600;
          color: var(--text-light);
          text-transform: uppercase;
          letter-spacing: 0.025em;
          margin-bottom: 0.5rem;
      }

      .sector-badge {
          background-color: var(--success-light);
          color: var(--success);
          padding: 0.375rem 0.875rem;
          border-radius: 2rem;
          font-weight: 700;
          font-size: 0.75rem;
          display: inline-block;
      }

      .industry-badge {
          background-color: var(--primary-light);
          color: var(--primary);
          padding: 0.375rem 0.875rem;
          border-radius: 2rem;
          font-weight: 700;
          font-size: 0.75rem;
          display: inline-block;
      }

      .company-summary {
          background-color: var(--bg-main);
          border-radius: var(--radius);
          padding: 1.5rem;
          line-height: 1.8;
          color: var(--text-main);
          border: 1px solid var(--border);
      }

      .dashboard-container {
          max-width: 1400px;
          margin: 0 auto;
          padding: 0 20px;
      }

      @media (max-width: 768px) {
          .stock-price {
              font-size: 2.2rem;
          }

          .info-item {
              flex-direction: column;
          }

          .info-label {
              margin-bottom: 5px;
          }
      }

      /* Footer Styles */
      .footer {
          background: #0f172a;
          color: #94a3b8;
          padding: 6rem 0 0;
          margin-top: auto;
          border-top: 1px solid rgba(255, 255, 255, 0.05);
          font-family: 'Inter', sans-serif;
      }

      .footer-content {
          display: grid;
          grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
          gap: 4rem;
          padding-bottom: 5rem;
      }

      .footer-title {
          font-family: 'Outfit', sans-serif;
          font-size: 1.125rem;
          font-weight: 700;
          margin-bottom: 2rem;
          color: #ffffff;
          letter-spacing: -0.01em;
      }

      .footer-desc {
          line-height: 1.7;
          font-size: 0.95rem;
      }

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

      .footer-links li {
          margin-bottom: 1rem;
      }

      .footer-links a {
          color: #94a3b8;
          text-decoration: none;
          transition: all 0.3s ease;
          font-size: 0.95rem;
          display: inline-block;
      }

      .footer-links a:hover {
          color: #ffffff;
          transform: translateX(5px);
      }

      .social-links {
          display: flex;
          gap: 1rem;
      }

      .social-links a {
          display: flex;
          align-items: center;
          justify-content: center;
          width: 40px;
          height: 40px;
          border-radius: 0.75rem;
          background: rgba(255, 255, 255, 0.05);
          color: #ffffff;
          font-size: 1.1rem;
          transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
          border: 1px solid rgba(255, 255, 255, 0.05);
      }

      .social-links a:hover {
          background: var(--accent);
          border-color: var(--accent);
          transform: translateY(-4px);
          box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
      }

      .newsletter-form .input-group {
          background: rgba(255, 255, 255, 0.03);
          border: 1px solid rgba(255, 255, 255, 0.1);
          padding: 0.375rem;
          border-radius: 0.75rem;
          transition: all 0.3s ease;
      }

      .newsletter-form .input-group:focus-within {
          border-color: var(--accent);
          background: rgba(255, 255, 255, 0.05);
          box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
      }

      .newsletter-form .form-control {
          background: transparent;
          border: none;
          color: #ffffff;
          padding: 0.75rem 1rem;
          font-size: 0.9rem;
      }

      .newsletter-form .form-control:focus {
          box-shadow: none;
      }

      .newsletter-form .btn {
          padding: 0.75rem 1.5rem;
          border-radius: 0.5rem;
          font-weight: 700;
          font-size: 0.9rem;
      }

      .footer-bottom {
          padding: 2rem 0;
          border-top: 1px solid rgba(255, 255, 255, 0.05);
          font-size: 0.875rem;
          color: #64748b;
      }

      .footer-bottom-links {
          display: flex;
          gap: 2rem;
      }

      .footer-bottom-links a {
          color: #64748b;
          text-decoration: none;
          transition: color 0.2s ease;
      }

      .footer-bottom-links a:hover {
          color: #ffffff;
      }

      @media (max-width: 992px) {
          .footer-content {
              grid-template-columns: 1fr 1fr;
              gap: 3rem;
          }
      }

      @media (max-width: 576px) {
          .footer-content {
              grid-template-columns: 1fr;
              gap: 2.5rem;
          }
      }

      /* Light Navigation Bar */
      .navbar {
          background-color: rgba(255, 255, 255, 0.98);
          backdrop-filter: blur(20px);
          -webkit-backdrop-filter: blur(20px);
          padding: 0.5rem 0;
          box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
          z-index: 1030;
          border-bottom: 1px solid rgba(226, 232, 240, 0.6);
          transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
          min-height: 64px;
          display: flex;
          align-items: center;
          top: 40px;
          /* Adjusted for ticker bar */
      }

      .navbar-brand {
          font-weight: 700;
          color: var(--primary);
          display: flex;
          align-items: center;
          transition: opacity 0.2s ease;
      }

      .navbar-brand:hover {
          opacity: 0.85;
      }

      .navbar-brand img {
          height: 42px;
          margin-right: 0;
      }

      .nav-link {
          color: var(--text-main) !important;
          font-weight: 700;
          padding: 0 1.25rem !important;
          transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
          border-radius: 0.75rem;
          margin: 0 0.125rem;
          font-size: 0.95rem;
          display: flex;
          align-items: center;
          font-family: 'Outfit', sans-serif;
          height: 42px;
          position: relative;
          letter-spacing: -0.01em;
      }

      .nav-link::after {
          content: '';
          position: absolute;
          bottom: 6px;
          left: 50%;
          width: 0;
          height: 2px;
          background-color: var(--accent);
          transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
          transform: translateX(-50%);
          border-radius: 2px;
          opacity: 0;
      }

      .nav-link:hover {
          color: var(--accent) !important;
          background-color: rgba(59, 130, 246, 0.05);
      }

      .nav-link:hover::after,
      .nav-link.active::after {
          width: 16px;
          opacity: 1;
      }

      .nav-link.active {
          color: var(--accent) !important;
          background-color: rgba(59, 130, 246, 0.08);
      }

      .search-container {
          position: relative;
          margin: 0 2rem;
          width: 280px;
          transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      }

      .search-container:focus-within {
          width: 340px;
      }

      .search-container input {
          background-color: #f1f5f9;
          border: 1px solid transparent;
          color: var(--text-main);
          padding: 0 1.25rem 0 2.75rem;
          border-radius: 0.75rem;
          transition: all 0.3s ease;
          width: 100%;
          height: 42px;
          font-size: 0.9rem;
          font-family: 'Inter', sans-serif;
      }

      .search-container input:focus {
          background-color: #fff;
          border-color: var(--accent);
          box-shadow: 0 10px 25px rgba(59, 130, 246, 0.08);
          outline: none;
      }

      .search-icon {
          position: absolute;
          left: 1rem;
          top: 50%;
          transform: translateY(-50%);
          color: var(--text-muted);
          font-size: 0.9rem;
          pointer-events: none;
          opacity: 0.7;
      }

      .btn-login {
          background: var(--accent);
          color: white;
          border: none;
          padding: 0 1.5rem;
          font-weight: 700;
          border-radius: 0.75rem;
          transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
          font-size: 0.95rem;
          display: flex;
          align-items: center;
          gap: 0.625rem;
          font-family: 'Outfit', sans-serif;
          height: 42px;
          box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
      }

      .btn-login:hover {
          background: #2563eb;
          transform: translateY(-2px);
          box-shadow: 0 8px 25px rgba(37, 99, 235, 0.25);
          color: white;
      }

      .btn-login i {
          font-size: 1.1rem;
          opacity: 0.9;
      }

      .user-profile {
          display: flex;
          align-items: center;
          cursor: pointer;
      }

      .user-profile img {
          width: 38px;
          height: 38px;
          border-radius: 50%;
          object-fit: cover;
          margin-right: 10px;
          border: 2px solid var(--primary);
      }

      .user-info {
          display: flex;
          flex-direction: column;
      }

      .user-name {
          font-weight: 600;
          font-size: 0.9rem;
          color: var(--light-text);
          margin-bottom: 0;
      }

      .user-role {
          font-size: 0.75rem;
          color: var(--primary);
      }

      .dropdown-menu {
          background-color: #fff;
          border: 1px solid var(--light-border);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
          border-radius: 8px;
          overflow: hidden;
          min-width: 200px;
      }

      .dropdown-item {
          color: var(--light-text);
          padding: 0.65rem 1.25rem;
          transition: all 0.2s ease;
      }

      .dropdown-item:hover {
          background-color: rgba(26, 58, 108, 0.08);
          color: var(--primary);
      }

      .dropdown-divider {
          border-top: 1px solid var(--light-border);
          margin: 0.25rem 0;
      }

      .navbar-toggler {
          border: 1px solid var(--border);
          padding: 0.4rem 0.6rem;
          border-radius: 0.5rem;
          color: var(--primary);
          transition: all 0.2s ease;
          height: 42px;
          display: flex;
          align-items: center;
          justify-content: center;
      }

      .navbar-toggler:hover {
          background-color: #f8fafc;
      }

      .navbar-toggler:focus {
          box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.1);
          outline: none;
      }

      .navbar-toggler i {
          font-size: 1.25rem;
      }


      .filter-section {
          margin-bottom: 20px;
          padding: 15px;
          background-color: #f8f9fa;
          border-radius: 5px;
      }

      .stock-table {
          display: none;
      }

      .active-filter {
          background-color: #0d6efd !important;
          color: white !important;
      }

      .suggestion-box {
          border: 1px solid rgba(226, 232, 240, 0.8);
          display: none;
          max-height: 400px;
          overflow-y: auto;
          position: absolute;
          top: calc(100% + 12px);
          left: 0;
          width: 100%;
          z-index: 1050;
          background-color: rgba(255, 255, 255, 0.98);
          backdrop-filter: blur(20px);
          -webkit-backdrop-filter: blur(20px);
          border-radius: 1.25rem;
          box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
          padding: 0.75rem;
          animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      }

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

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

      .suggestion-item {
          display: flex;
          justify-content: space-between;
          align-items: center;
          padding: 0.875rem 1.25rem;
          cursor: pointer;
          color: var(--text-main);
          border-radius: 1rem;
          transition: all 0.2s ease;
          margin-bottom: 4px;
          border: 1px solid transparent;
      }

      .suggestion-item:hover {
          background-color: #f8fafc;
          border-color: rgba(59, 130, 246, 0.1);
          transform: translateX(4px);
      }

      .suggestion-info {
          display: flex;
          flex-direction: column;
          gap: 2px;
      }

      .suggestion-name {
          font-weight: 600;
          font-size: 0.95rem;
          color: var(--primary);
          font-family: 'Outfit', sans-serif;
      }

      .suggestion-symbol {
          font-size: 0.75rem;
          font-weight: 700;
          color: var(--text-muted);
          text-transform: uppercase;
          letter-spacing: 0.05em;
      }

      .suggestion-price-box {
          text-align: right;
          display: flex;
          flex-direction: column;
          gap: 2px;
      }

      .suggestion-box-ltp {
          font-size: 0.95rem;
          font-weight: 700;
          font-family: 'Inter', sans-serif;
          color: var(--primary);
      }

      .suggestion-box-ltp-percentage {
          font-size: 0.8rem;
          font-weight: 600;
          padding: 2px 8px;
          border-radius: 4px;
      }

      .suggestion-box-ltp-percentage.text-success {
          background-color: rgba(16, 185, 129, 0.1);
      }

      .suggestion-box-ltp-percentage.text-danger {
          background-color: rgba(244, 63, 94, 0.1);
      }

      /* Modal Enhancements */
      .modal-content {
          border-radius: 1.5rem;
          overflow: hidden;
          background-color: #ffffff;
      }

      .modal-header-custom {
          padding: 2.5rem 2rem 1.5rem;
          text-align: center;
          position: relative;
      }

      .modal-header-custom h4 {
          font-family: 'Outfit', sans-serif;
          font-weight: 800;
          font-size: 1.85rem;
          color: var(--primary);
          margin-bottom: 0.75rem;
          letter-spacing: -0.02em;
      }

      .modal-body-custom {
          padding: 0 2.5rem 2.5rem;
      }

      .form-label-custom {
          font-weight: 600;
          font-size: 0.875rem;
          color: var(--text-main);
          margin-bottom: 0.625rem;
          display: block;
      }

      .input-group-custom {
          position: relative;
          margin-bottom: 1.5rem;
      }

      .input-group-custom i {
          position: absolute;
          left: 1.35rem;
          top: 50%;
          transform: translateY(-50%);
          color: var(--text-muted);
          font-size: 1.1rem;
          z-index: 10;
          display: flex;
          align-items: center;
          justify-content: center;
      }

      .form-control-custom {
          background-color: #f8fafc;
          border: 1px solid #e2e8f0;
          padding: 0 1.25rem 0 3.25rem;
          border-radius: 1rem;
          font-size: 0.95rem;
          width: 100%;
          height: 52px;
          transition: all 0.3s ease;
          font-family: 'Inter', sans-serif;
      }

      .form-control-custom:focus {
          background-color: #fff;
          border-color: var(--accent);
          box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
          outline: none;
      }

      .btn-modal-primary {
          background: var(--accent);
          color: white;
          border: none;
          padding: 1rem;
          font-weight: 700;
          border-radius: 1rem;
          width: 100%;
          font-size: 1rem;
          font-family: 'Outfit', sans-serif;
          transition: all 0.3s ease;
          box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
          margin-bottom: 1.5rem;
      }

      .btn-modal-primary:hover {
          background: #2563eb;
          transform: translateY(-2px);
          box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
          color: white;
      }

      .modal-footer-custom {
          text-align: center;
          padding: 0.5rem 0 2.5rem;
      }

      .modal-link {
          color: var(--accent);
          text-decoration: none;
          font-weight: 600;
          transition: color 0.2s ease;
      }

      .modal-link:hover {
          color: #2563eb;
          text-decoration: underline;
      }

      /* Market Overview Section */
      .market-overview-section {
          position: absolute;
          top: 100%;
          left: 0;
          width: 100%;
          background-color: rgba(255, 255, 255, 0.98);
          backdrop-filter: blur(20px);
          -webkit-backdrop-filter: blur(20px);
          border-bottom: 1px solid rgba(226, 232, 240, 0.8);
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
          display: none;
          z-index: 1020;
          transform-origin: top;
          animation: slideDownFade 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      }

      @keyframes slideDownFade {
          from {
              opacity: 0;
              transform: scaleY(0.95);
          }

          to {
              opacity: 1;
              transform: scaleY(1);
          }
      }

      .market-overview-section.show {
          display: block;
      }

      .market-card {
          background: #ffffff;
          border-radius: 1.25rem;
          padding: 1.5rem;
          height: 100%;
          border: 1px solid rgba(226, 232, 240, 0.6);
          transition: all 0.3s ease;
      }

      .market-card:hover {
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
          border-color: var(--accent);
      }

      .market-list {
          display: flex;
          flex-direction: column;
          gap: 0.75rem;
          max-height: 320px;
          overflow-y: auto;
          padding-right: 0.5rem;
      }

      .market-list::-webkit-scrollbar {
          width: 4px;
      }

      .market-list::-webkit-scrollbar-thumb {
          background: #e2e8f0;
          border-radius: 10px;
      }

      .market-item {
          display: flex;
          justify-content: space-between;
          align-items: center;
          padding: 0.75rem 1rem;
          border-radius: 0.75rem;
          background-color: #f8fafc;
          transition: all 0.2s ease;
          text-decoration: none;
          color: inherit;
      }

      .market-item:hover {
          background-color: #f1f5f9;
          transform: translateX(4px);
      }

      .market-item-info {
          display: flex;
          flex-direction: column;
      }

      .market-item-symbol {
          font-weight: 700;
          font-size: 0.9rem;
          color: var(--primary);
          font-family: 'Outfit', sans-serif;
      }

      .market-item-name {
          font-size: 0.75rem;
          color: var(--text-muted);
          max-width: 150px;
          white-space: nowrap;
          overflow: hidden;
          text-overflow: ellipsis;
      }

      .market-item-data {
          text-align: right;
      }

      .market-item-price {
          font-weight: 700;
          font-size: 0.9rem;
          display: block;
          font-family: 'Inter', sans-serif;
      }

      .market-item-change {
          font-size: 0.8rem;
          font-weight: 600;
      }

      .signal-badge {
          padding: 0.35rem 0.75rem;
          border-radius: 2rem;
          font-size: 0.75rem;
          font-weight: 700;
          text-transform: uppercase;
          letter-spacing: 0.02em;
      }

      .signal-badge.buy {
          background-color: rgba(16, 185, 129, 0.1);
          color: #10b981;
      }

      .signal-badge.sell {
          background-color: rgba(244, 63, 94, 0.1);
          color: #f43f5e;
      }

      .bg-success-light {
          background-color: rgba(16, 185, 129, 0.1);
      }

      .bg-danger-light {
          background-color: rgba(244, 63, 94, 0.1);
      }

      .bg-warning-light {
          background-color: rgba(251, 191, 36, 0.1);
      }

      /* Ticker Bar Styles */
      .ticker-bar {
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 40px;
          background-color: #0f172a;
          color: #ffffff;
          display: flex;
          align-items: center;
          z-index: 1040;
          overflow: hidden;
          font-family: 'Inter', sans-serif;
          font-size: 0.85rem;
          border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      }

      .ticker-label {
          background-color: var(--accent);
          height: 100%;
          display: flex;
          align-items: center;
          padding: 0 1.25rem;
          font-weight: 800;
          font-size: 0.75rem;
          letter-spacing: 0.05em;
          white-space: nowrap;
          z-index: 10;
          box-shadow: 10px 0 20px rgba(0, 0, 0, 0.2);
          font-family: 'Outfit', sans-serif;
      }

      .ticker-content-wrapper {
          flex: 1;
          overflow: hidden;
          position: relative;
          display: flex;
          align-items: center;
      }

      .ticker-content {
          display: flex;
          white-space: nowrap;
          padding-left: 2rem;
          animation: tickerScroll 60s linear infinite;
      }

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

      @keyframes tickerScroll {
          0% {
              transform: translateX(0);
          }

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

      .ticker-item {
          display: flex;
          align-items: center;
          gap: 0.5rem;
          padding: 0 1.5rem;
          border-right: 1px solid rgba(255, 255, 255, 0.1);
          text-decoration: none;
          color: #e2e8f0;
          transition: all 0.2s ease;
      }

      .ticker-item:hover {
          color: #ffffff;
          background-color: rgba(255, 255, 255, 0.05);
      }

      .ticker-item-symbol {
          font-weight: 700;
          color: #ffffff;
      }

      .ticker-item-price {
          font-weight: 500;
      }

      .ticker-item-change {
          font-weight: 600;
          font-size: 0.8rem;
          display: flex;
          align-items: center;
          gap: 0.25rem;
      }

      .ticker-item-change.up {
          color: #10b981;
      }

      .ticker-item-change.down {
          color: #f43f5e;
      }

      /* Adjust body padding for fixed elements */
      body {
          padding-top: 110px !important;
          /* 40px ticker + 70px navbar */
      }

      /* Utilities */
      .line-clamp-1 {
          display: -webkit-box;
          -webkit-line-clamp: 1;
          line-clamp: 1;
          -webkit-box-orient: vertical;
          overflow: hidden;
      }

      .line-clamp-2 {
          display: -webkit-box;
          -webkit-line-clamp: 2;
          line-clamp: 2;
          -webkit-box-orient: vertical;
          overflow: hidden;
      }

      .line-clamp-3 {
          display: -webkit-box;
          -webkit-line-clamp: 3;
          line-clamp: 3;
          -webkit-box-orient: vertical;
          overflow: hidden;
      }

      /* Premium UI Utilities */
      .shadow-premium {
          box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04) !important;
      }

      .shadow-hover {
          transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      }

      .shadow-hover:hover {
          transform: translateY(-5px);
          box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08) !important;
      }

      .glass-card {
          background: rgba(255, 255, 255, 0.8);
          backdrop-filter: blur(10px);
          -webkit-backdrop-filter: blur(10px);
          border: 1px solid rgba(255, 255, 255, 0.3);
      }

      .gradient-primary {
          background: linear-gradient(135deg, var(--primary) 0%, #2563eb 100%);
      }

      .text-gradient {
          background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
          -webkit-background-clip: text;
          background-clip: text;
          -webkit-text-fill-color: transparent;
      }

      .card-premium {
          border: 1px solid rgba(226, 232, 240, 0.6);
          border-radius: 1.25rem;
          background: #ffffff;
          transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      }

      .card-premium .card-header {
          background: transparent;
          border-bottom: 1px solid rgba(226, 232, 240, 0.6);
          padding: 1.25rem 1.5rem;
          font-weight: 700;
          font-family: 'Outfit', sans-serif;
          display: flex;
          align-items: center;
          gap: 0.75rem;
      }

      .card-premium .card-body {
          padding: 1.5rem;
      }

      .hover-bg-soft:hover {
          background-color: #f8fafc;
      }

      .transition-all {
          transition: all 0.3s ease;
      }

      /* Section Reveal Animation */
      .reveal {
          opacity: 0;
          transform: translateY(30px);
          transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
      }

      .reveal.active {
          opacity: 1;
          transform: translateY(0);
      }

      /* Stock Analysis Page Enhancements */
      .analysis-hero {
          background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
          padding: 5rem 0 6rem;
          color: white;
          position: relative;
          overflow: hidden;
      }

      .analysis-hero::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: url('https://www.transparenttextures.com/patterns/cubes.png');
          opacity: 0.05;
          pointer-events: none;
      }

      .analysis-hero .company-logo {
          width: 64px;
          height: 64px;
          background: rgba(255, 255, 255, 0.1);
          border-radius: 1.25rem;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 1.5rem;
          margin-right: 1.5rem;
          border: 1px solid rgba(255, 255, 255, 0.1);
          backdrop-filter: blur(10px);
      }

      .analysis-hero .stock-price {
          font-family: 'Outfit', sans-serif;
          font-size: 3.5rem;
          font-weight: 800;
          line-height: 1;
          margin-bottom: 0.5rem;
      }

      .analysis-tabs-container {
          margin-top: -2.5rem;
          position: relative;
          z-index: 10;
      }

      .analysis-tabs-container .nav-tabs {
          border: none;
          background: white;
          padding: 0.5rem;
          border-radius: 1.25rem;
          box-shadow: var(--shadow-premium);
          display: inline-flex;
          gap: 0.5rem;
          flex-wrap: nowrap;
          overflow-x: auto;
          max-width: 100%;
          scrollbar-width: none;
      }

      .analysis-tabs-container .nav-tabs::-webkit-scrollbar {
          display: none;
      }

      .analysis-tabs-container .nav-link {
          border: none !important;
          border-radius: 0.875rem !important;
          padding: 0.875rem 1.75rem;
          font-weight: 700;
          color: #64748b;
          transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
          white-space: nowrap;
      }

      .analysis-tabs-container .nav-link.active {
          background: var(--primary) !important;
          color: white !important;
          box-shadow: 0 8px 16px rgba(15, 23, 42, 0.15);
      }

      .analysis-tabs-container .nav-link:hover:not(.active) {
          background: #f1f5f9;
          color: var(--primary);
          transform: translateY(-1px);
      }

      .stat-card {
          padding: 1.5rem;
          border-radius: 1.25rem;
          background: white;
          border: 1px solid var(--border);
          transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
          height: 100%;
      }

      .stat-card:hover {
          transform: translateY(-5px);
          box-shadow: var(--shadow-premium);
          border-color: var(--accent);
      }

      .stat-card .label {
          font-size: 0.75rem;
          font-weight: 700;
          color: #64748b;
          text-transform: uppercase;
          letter-spacing: 0.05em;
          margin-bottom: 0.75rem;
          display: block;
      }

      .stat-card .value {
          font-family: 'Outfit', sans-serif;
          font-size: 1.375rem;
          font-weight: 700;
          color: var(--primary);
      }

      .roi-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
          gap: 1rem;
      }

      .roi-item {
          padding: 1.25rem 0.75rem;
          border-radius: 1rem;
          text-align: center;
          background: #f8fafc;
          border: 1px solid #f1f5f9;
          transition: all 0.3s ease;
      }

      .roi-item:hover {
          background: white;
          border-color: var(--accent);
          transform: scale(1.02);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      }

      .roi-item .period {
          font-size: 0.7rem;
          font-weight: 700;
          color: #64748b;
          margin-bottom: 0.5rem;
          text-transform: uppercase;
      }

      .roi-item .value {
          font-weight: 800;
          font-size: 1.125rem;
          font-family: 'Outfit', sans-serif;
      }

      .signal-badge-large {
          padding: 0.625rem 1.75rem;
          border-radius: 2rem;
          font-weight: 800;
          font-size: 1rem;
          text-transform: uppercase;
          letter-spacing: 0.05em;
          display: inline-flex;
          align-items: center;
          gap: 0.5rem;
      }

      .ema-table-container {
          border-radius: 1rem;
          overflow: hidden;
          border: 1px solid #f1f5f9;
      }

      .ema-table {
          margin-bottom: 0;
      }

      .ema-table th {
          background: #f8fafc;
          font-size: 0.75rem;
          text-transform: uppercase;
          color: #64748b;
          letter-spacing: 0.05em;
          padding: 1.25rem 1rem;
          border-bottom: 1px solid #f1f5f9;
      }

      .ema-table td {
          padding: 1.25rem 1rem;
          font-weight: 600;
          vertical-align: middle;
          border-bottom: 1px solid #f1f5f9;
      }

      .ema-table tr:last-child td {
          border-bottom: none;
      }

      .sr-card {
          background: #f8fafc;
          border-radius: 1rem;
          padding: 1.5rem;
          border: 1px solid #f1f5f9;
      }

      .sr-item {
          display: flex;
          justify-content: space-between;
          padding: 1rem 0;
          border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      }

      .sr-item:last-child {
          border-bottom: none;
      }

      .sr-label {
          font-weight: 600;
          color: #64748b;
          font-size: 0.875rem;
      }

      .sr-value {
          font-weight: 700;
          font-family: 'Outfit', sans-serif;
          color: var(--primary);
      }

      .executive-card-premium {
          padding: 1.5rem;
          border-radius: 1.25rem;
          background: #f8fafc;
          border: 1px solid #f1f5f9;
          transition: all 0.3s ease;
          height: 100%;
      }

      .executive-card-premium:hover {
          background: white;
          border-color: var(--accent);
          transform: translateY(-3px);
          box-shadow: var(--shadow-premium);
      }

      .contact-link {
          display: flex;
          align-items: center;
          gap: 0.75rem;
          padding: 1rem;
          border-radius: 0.75rem;
          background: #f8fafc;
          color: var(--primary);
          text-decoration: none;
          font-weight: 600;
          transition: all 0.2s ease;
          margin-bottom: 0.75rem;
      }

      .contact-link:hover {
          background: var(--primary-light);
          color: var(--primary);
          transform: translateX(5px);
      }

      .contact-link i {
          width: 32px;
          height: 32px;
          display: flex;
          align-items: center;
          justify-content: center;
          background: white;
          border-radius: 0.5rem;
          font-size: 0.9rem;
      }

      .metric-label {
          font-size: 0.8125rem;
          color: #64748b;
          font-weight: 600;
          margin-bottom: 0.25rem;
      }

      .metric-value {
          font-family: 'Outfit', sans-serif;
          font-weight: 700;
          color: var(--primary);
          font-size: 1.125rem;
      }

      .chart-card {
          border-radius: 1.5rem;
          overflow: hidden;
      }

      .chart-header {
          padding: 1.5rem 2rem;
          background: white;
          border-bottom: 1px solid #f1f5f9;
      }

      .chart-body {
          padding: 2rem;
      }

      .badge-outline {
          background: transparent;
          border: 1px solid currentColor;
      }

      .text-accent {
          color: var(--accent) !important;
      }

      .bg-accent-light {
          background-color: rgba(59, 130, 246, 0.1) !important;
      }

      /* Homepage Hero & Grids */
      .hero {
          position: relative;
          padding: 120px 0 80px;
          background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.1), transparent),
              radial-gradient(circle at bottom left, rgba(15, 23, 42, 0.05), transparent),
              var(--bg-main);
          overflow: hidden;
          min-height: 90vh;
          display: flex;
          align-items: center;
      }

      .hero-subtitle {
          display: inline-flex;
          align-items: center;
          font-size: 0.875rem;
          font-weight: 700;
          color: var(--accent);
          background: rgba(59, 130, 246, 0.1);
          padding: 0.5rem 1.25rem;
          border-radius: 2rem;
          margin-bottom: 1.5rem;
          text-transform: uppercase;
          letter-spacing: 0.05em;
      }

      .hero-title {
          font-family: 'Outfit', sans-serif;
          font-size: 4rem;
          font-weight: 800;
          line-height: 1.1;
          margin-bottom: 1.5rem;
          color: var(--primary);
          letter-spacing: -0.02em;
      }

      .hero-description {
          font-size: 1.25rem;
          margin-bottom: 2.5rem;
          color: var(--text-muted);
          max-width: 540px;
          line-height: 1.6;
      }

      .stats-container {
          display: flex;
          gap: 3rem;
          margin-top: 4rem;
      }

      .stat-item {
          display: flex;
          flex-direction: column;
      }

      .stat-value {
          font-family: 'Outfit', sans-serif;
          font-size: 2.5rem;
          font-weight: 700;
          color: var(--primary);
          line-height: 1;
          margin-bottom: 0.5rem;
      }

      .stat-label {
          font-size: 0.875rem;
          font-weight: 600;
          color: var(--text-light);
          text-transform: uppercase;
          letter-spacing: 0.05em;
      }

      .hero-image {
          position: absolute;
          right: 1%;
          top: 15%;
          transform: translateY(-50%);
          width: 44%;
          z-index: 1;
      }

      .technical-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
          gap: 1.5rem;
      }

      .fundamental-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
          gap: 1.5rem;
      }

      .fundamental-card {
          padding: 2rem;
          border-radius: var(--radius-lg);
          background-color: var(--bg-surface);
          border: 1px solid var(--border);
          transition: all 0.3s ease;
          cursor: pointer;
      }

      .fundamental-card:hover {
          transform: translateY(-4px);
          box-shadow: var(--shadow-md);
          border-color: var(--accent);
      }

      .fundamental-label {
          font-size: 1.125rem;
          font-weight: 700;
          color: var(--primary);
          margin-bottom: 0.5rem;
      }

      .fundamental-value {
          color: var(--text-muted);
          font-size: 1rem;
          line-height: 1.5;
      }

      .cta-section {
          background: var(--primary);
          border-radius: var(--radius-lg);
          padding: 5rem 2rem;
          color: white;
          position: relative;
          overflow: hidden;
          margin: 4rem 0;
      }

      .cta-section::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.2), transparent);
      }

      .cta-section h2 {
          font-family: 'Outfit', sans-serif;
          font-size: 3rem;
          font-weight: 800;
          margin-bottom: 1.5rem;
          position: relative;
          z-index: 1;
      }

      .cta-section p {
          font-size: 1.25rem;
          color: rgba(255, 255, 255, 0.8);
          max-width: 700px;
          margin: 0 auto 2.5rem;
          position: relative;
          z-index: 1;
      }

      /* Scanner Styles */
      .filter-section {
          background: var(--bg-surface);
          border-radius: var(--radius-lg);
          padding: 2rem;
          box-shadow: var(--shadow-premium);
          margin-bottom: 2rem;
          border: 1px solid var(--border);
      }

      .filter-btn {
          background: var(--bg-main);
          border: 1px solid var(--border);
          color: var(--text-main);
          border-radius: var(--radius);
          padding: 0.75rem 1.25rem;
          margin: 0.375rem;
          transition: all 0.2s ease;
          font-weight: 600;
          font-size: 0.875rem;
          display: inline-flex;
          align-items: center;
          gap: 0.5rem;
      }

      .filter-btn:hover {
          background: var(--bg-surface);
          border-color: var(--accent);
          color: var(--accent);
          transform: translateY(-1px);
      }

      .filter-btn.active {
          background: var(--accent);
          color: white;
          border-color: var(--accent);
          box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
      }

      .stock-card {
          border-radius: var(--radius-lg);
          border: 1px solid var(--border);
          background: var(--bg-surface);
          transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
          overflow: hidden;
          height: 100%;
      }

      .stock-card:hover {
          transform: translateY(-4px);
          box-shadow: var(--shadow-premium);
          border-color: var(--accent);
      }

      .stock-card-header {
          padding: 1.25rem;
          border-bottom: 1px solid var(--border);
          background: rgba(15, 23, 42, 0.02);
      }

      .stock-symbol {
          font-family: 'Outfit', sans-serif;
          font-size: 1.25rem;
          font-weight: 800;
          color: var(--primary);
          letter-spacing: -0.01em;
      }

      .stock-price {
          font-family: 'Outfit', sans-serif;
          font-size: 1.5rem;
          font-weight: 700;
          /* color: var(--primary); */
      }

      .stock-change {
          font-weight: 700;
          font-size: 0.875rem;
          padding: 0.25rem 0.625rem;
          border-radius: 2rem;
      }

      .change-positive {
          background-color: var(--success-light);
          color: var(--success);
      }

      .change-negative {
          background-color: var(--danger-light);
          color: var(--danger);
      }

      .indicator-pill {
          font-size: 0.75rem;
          font-weight: 700;
          padding: 0.25rem 0.75rem;
          border-radius: 2rem;
          text-transform: uppercase;
          letter-spacing: 0.025em;
      }

      .loading-container {
          display: flex;
          align-items: center;
          justify-content: center;
          height: 250px;
          font-size: 1.25rem;
          color: var(--primary);
      }

      .status-bar {
          background: #f8fafc;
          border-radius: 1rem;
          padding: 1rem 1.5rem;
          font-size: 0.875rem;
          margin-top: 2rem;
          display: flex;
          justify-content: space-between;
          align-items: center;
          border: 1px solid var(--border);
      }

      /* Responsive Enhancements */
      @media (max-width: 991.98px) {
          .hero-image {
              display: none;
          }

          .hero {
              padding: 6rem 0 4rem;
              text-align: center;
          }

          .hero-content {
              margin: 0 auto;
          }

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

          .stats-container {
              justify-content: center;
          }

          .analysis-hero {
              padding: 4rem 0 5rem;
              text-align: center;
          }

          .analysis-hero .d-flex.align-items-center {
              flex-direction: column;
              text-align: center;
          }

          .analysis-hero .company-logo {
              margin-right: 0;
              margin-bottom: 1.5rem;
          }

          .analysis-hero .justify-content-lg-end {
              justify-content: center !important;
              margin-top: 1.5rem;
          }
      }

      @media (max-width: 767.98px) {
          .hero-title {
              font-size: 2.5rem;
          }

          .hero-description {
              font-size: 1rem;
          }

          .stats-container {
              gap: 1.5rem;
          }

          .stat-value {
              font-size: 1.5rem;
          }

          .analysis-hero .stock-price {
              font-size: 2.75rem;
          }

          .analysis-tabs-container {
              margin-top: -2rem;
              padding: 0 1rem;
          }

          .analysis-tabs-container .nav-tabs {
              padding: 0.375rem;
              border-radius: 1rem;
          }

          .analysis-tabs-container .nav-link {
              padding: 0.75rem 1.25rem;
              font-size: 0.875rem;
          }

          .stat-card {
              padding: 1.25rem;
          }

          .stat-card .value {
              font-size: 1.25rem;
          }

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

          .technical-grid,
          .fundamental-grid,
          .chart-grid,
          .ema-grid {
              grid-template-columns: 1fr !important;
          }

          .ticker-wrapper {
              height: 35px;
          }

          .ticker-item {
              font-size: 0.75rem;
          }
      }

      @media (max-width: 575.98px) {
          .hero-title {
              font-size: 2rem;
          }

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

          .btn-lg {
              width: 100%;
              padding: 0.875rem 1.5rem;
              font-size: 1rem;
          }

          .analysis-hero .stock-price {
              font-size: 2.25rem;
          }

          .price-change-pill {
              padding: 0.5rem 1rem;
              font-size: 0.8125rem;
          }

          .chart-header {
              padding: 1.25rem;
              flex-direction: column;
              gap: 1rem;
              align-items: flex-start !important;
          }

          .chart-body {
              padding: 1.25rem;
          }

          .ema-table th,
          .ema-table td {
              padding: 0.75rem;
              font-size: 0.8125rem;
          }

          /* Navbar Mobile Refinements */
          .navbar-collapse {
              background: white;
              margin: 0 -1rem;
              padding: 1.5rem;
              border-bottom: 1px solid var(--border);
              box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
          }

          .navbar-nav {
              align-items: flex-start !important;
              gap: 0.5rem;
          }

          .nav-link {
              width: 100%;
              padding: 0.75rem 0 !important;
          }

          .search-container {
              width: 100%;
              margin-bottom: 1rem;
          }

          .ms-lg-3 {
              margin-left: 0 !important;
              width: 100%;
          }

          .btn-login {
              width: 100%;
              justify-content: center;
          }
      }