:root {
      --bg-dark: #030816;
      --card-bg: #061126;
      --card-border: #13274c;
      --card-border-hover: #1e4282;
      --accent-blue: #0070f3;
      --accent-cyan: #00d2ff;
      --btn-gradient: linear-gradient(90deg, #0070f3 0%, #0099ff 100%);
      --text-main: #ffffff;
      --text-muted: #94a3b8;
      --text-sub: #60a5fa;
      --badge-bg: rgba(0, 112, 243, 0.15);
      --badge-border: rgba(0, 112, 243, 0.35);
    }

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

    .details-page-section {
      width: 100%;
      min-height: 100vh;
      background-color: var(--bg-dark);
      color: var(--text-main);
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      position: relative;
      overflow-x: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .glow-overlay {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: min(1200px, 100vw);
      height: 420px;
      background: radial-gradient(circle at 50% 20%, rgba(0, 112, 243, 0.13) 0%, rgba(3, 8, 22, 0) 70%);
      pointer-events: none;
      z-index: 0;
    }

    .content-container {
      width: 100%;
      max-width: 1140px;
      padding: clamp(24px, 5vw, 56px) clamp(16px, 4vw, 32px);
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      gap: 36px;
    }

    .nav-back {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--text-sub);
      text-decoration: none;
      font-size: 0.88rem;
      font-weight: 500;
      transition: color 0.2s ease;
    }

    .nav-back:hover {
      color: var(--accent-cyan);
    }

    .job-details-grid {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 32px;
    }

    .job-main-card {
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: 20px;
      padding: clamp(24px, 4vw, 40px);
      display: flex;
      flex-direction: column;
      gap: 32px;
    }

    .job-header-block {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .job-header-block h1 {
      font-size: clamp(1.7rem, 4vw, 2.4rem);
      font-weight: 800;
      color: #ffffff;
      letter-spacing: -0.02em;
    }

    .meta-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .pill {
      background: var(--badge-bg);
      border: 1px solid var(--badge-border);
      color: #93c5fd;
      font-size: 0.78rem;
      font-weight: 500;
      padding: 5px 12px;
      border-radius: 20px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .pill svg {
      width: 14px;
      height: 14px;
    }

    .section-block {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .section-block h2 {
      font-size: 1.18rem;
      font-weight: 700;
      color: #ffffff;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      padding-bottom: 8px;
    }

    .section-block p {
      font-size: 0.94rem;
      color: var(--text-muted);
      line-height: 1.7;
    }

    .section-block ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .section-block ul li {
      position: relative;
      padding-left: 22px;
      font-size: 0.92rem;
      color: #e2e8f0;
      line-height: 1.55;
    }

    .section-block ul li::before {
      content: "•";
      position: absolute;
      left: 0;
      color: var(--accent-cyan);
      font-size: 1.4rem;
      line-height: 1;
    }

    .job-sidebar {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .career-dynamic-description {
      display: flex;
      flex-direction: column;
      gap: 16px;
      color: #cbd5e1;
    }

    .career-dynamic-description h1,
    .career-dynamic-description h2,
    .career-dynamic-description h3,
    .career-dynamic-description h4 {
      font-size: 1.18rem;
      font-weight: 700;
      color: #ffffff;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      padding-bottom: 8px;
      margin-top: 12px;
      line-height: 1.3;
    }

    .career-dynamic-description p {
      font-size: 0.94rem;
      color: #cbd5e1;
      line-height: 1.7;
    }

    .career-dynamic-description ul,
    .career-dynamic-description ol {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-left: 0;
      padding-left: 0;
    }

    .career-dynamic-description ul {
      list-style: none !important;
    }

    .career-dynamic-description ul li {
      position: relative;
      padding-left: 22px;
      font-size: 0.92rem;
      color: #e2e8f0;
      line-height: 1.55;
    }

    .career-dynamic-description ul li::before {
      content: "•";
      position: absolute;
      left: 0;
      color: var(--accent-cyan);
      font-size: 1.4rem;
      line-height: 1;
    }
    
    .career-dynamic-description ol {
      list-style: decimal inside;
    }
    
    .career-dynamic-description ol li {
      font-size: 0.92rem;
      color: #e2e8f0;
      line-height: 1.55;
    }

    .sidebar-card {
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: 20px;
      padding: 24px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .sidebar-card h3 {
      font-size: 1.1rem;
      font-weight: 700;
    }

    .summary-list {
      display: flex;
      flex-direction: column;
      gap: 14px;
      font-size: 0.88rem;
    }

    .summary-item {
      display: flex;
      justify-content: space-between;
      border-bottom: 1px dashed rgba(255, 255, 255, 0.07);
      padding-bottom: 10px;
    }

    .summary-item span:first-child {
      color: var(--text-muted);
    }

    .summary-item span:last-child {
      font-weight: 600;
      color: #ffffff;
      text-align: right;
    }

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

    .apply-card {
      background: linear-gradient(180deg, #081d45 0%, #061126 100%);
      border: 1px solid var(--card-border-hover);
      border-radius: 20px;
      padding: 24px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      box-shadow: 0 10px 30px rgba(0, 112, 243, 0.15);
    }

    .apply-card h3 {
      font-size: 1.15rem;
      font-weight: 700;
    }

    .apply-card p {
      font-size: 0.86rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .btn-apply {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: var(--btn-gradient);
      color: #ffffff;
      text-decoration: none;
      font-weight: 700;
      font-size: 0.95rem;
      padding: 14px 24px;
      border-radius: 9999px;
      transition: all 0.25s ease;
      box-shadow: 0 4px 18px rgba(0, 112, 243, 0.45);
      border: none;
      cursor: pointer;
      width: 100%;
    }

    .btn-apply:hover {
      box-shadow: 0 6px 26px rgba(0, 112, 243, 0.7);
      transform: translateY(-2px);
    }

    .btn-apply svg {
      width: 18px;
      height: 18px;
    }

    .footer-section {
      border-top: 1px solid var(--card-border);
      padding-top: 28px;
      text-align: center;
      font-size: 0.88rem;
      color: var(--text-muted);
    }

    .footer-section a {
      color: var(--accent-cyan);
      text-decoration: none;
      font-weight: 600;
    }

    @media (max-width: 960px) {
      .job-details-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 600px) {
      .content-container {
        padding: 24px 14px;
      }
      .btn-apply {
        font-size: 0.9rem;
        padding: 12px 20px;
      }
    }