.careers-container {
      max-width: 900px;
      margin: 0 auto;
      padding: 30px 24px 40px;
    }
    
    .careers-header {
      text-align: center;
      margin-bottom: 48px;
    }
    
    .careers-logo {
      margin-bottom: 20px;
    }
    
    .careers-title {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 12px;
      color: var(--zekt-green);
      text-shadow: 0 0 40px rgba(0, 255, 136, 0.3);
    }
    
    .careers-subtitle {
      font-size: 1.25rem;
      color: var(--color-text-secondary);
      line-height: 1.6;
    }
    
    .no-positions-message {
      background: linear-gradient(135deg, rgba(0, 255, 136, 0.15) 0%, rgba(0, 255, 136, 0.05) 50%, rgba(0, 221, 136, 0.08) 100%);
      border: 2px solid var(--zekt-green);
      border-radius: 12px;
      padding: 40px;
      text-align: center;
      margin-bottom: 48px;
      box-shadow: 0 8px 40px rgba(0, 255, 136, 0.2), 0 0 80px rgba(0, 255, 136, 0.1);
      position: relative;
      overflow: hidden;
    }
    
    .no-positions-message::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
      animation: rotate 20s linear infinite;
    }
    
    @keyframes rotate {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }
    
    .no-positions-icon {
      font-size: 3rem;
      margin-bottom: 20px;
      color: var(--zekt-green);
      position: relative;
      z-index: 1;
    }
    
    .no-positions-title {
      font-size: 1.75rem;
      font-weight: 600;
      margin-bottom: 16px;
      color: var(--zekt-green);
      position: relative;
      z-index: 1;
    }
    
    .no-positions-text {
      font-size: 1.0625rem;
      color: var(--color-text-secondary);
      line-height: 1.7;
      margin-bottom: 0;
      position: relative;
      z-index: 1;
    }
    
    .careers-about {
      margin-bottom: 48px;
    }
    
    .section-title {
      font-size: 1.875rem;
      font-weight: 600;
      margin-bottom: 20px;
      color: var(--color-text-primary);
    }
    
    .section-content {
      font-size: 1.0625rem;
      line-height: 1.7;
      color: var(--color-text-secondary);
      margin-bottom: 20px;
    }
    
    .values-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-bottom: 48px;
    }
    
    .value-card {
      background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(15, 15, 15, 0.95) 100%);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 12px;
      padding: 24px;
      transition: all 0.3s ease;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
      position: relative;
      overflow: hidden;
    }
    
    .value-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--zekt-green) 0%, #00dd88 100%);
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    
    .value-card:hover {
      border-color: var(--zekt-green);
      box-shadow: 0 4px 24px rgba(0, 255, 136, 0.2), 0 0 40px rgba(0, 255, 136, 0.05);
      transform: translateY(-4px);
    }
    
    .value-card:hover::before {
      opacity: 1;
    }
    
    .value-icon {
      font-size: 2rem;
      margin-bottom: 12px;
      color: var(--zekt-green);
    }
    
    .value-title {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 8px;
      color: var(--color-text-primary);
    }
    
    .value-description {
      font-size: 0.9375rem;
      line-height: 1.6;
      color: var(--color-text-secondary);
    }
    
    .job-listings {
      margin-bottom: 60px;
    }
    
    .job-listing {
      background: var(--zekt-gray);
      border: 1px solid var(--zekt-gray-border);
      border-radius: 8px;
      padding: 32px;
      margin-bottom: 24px;
      transition: border-color 0.2s ease;
    }
    
    .job-listing:hover {
      border-color: var(--zekt-green);
    }
    
    .job-header {
      display: flex;
      justify-content: space-between;
      align-items: start;
      margin-bottom: 16px;
      flex-wrap: wrap;
      gap: 16px;
    }
    
    .job-title {
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--color-text-primary);
      margin-bottom: 8px;
    }
    
    .job-meta {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }
    
    .job-badge {
      display: inline-block;
      padding: 4px 12px;
      border-radius: 4px;
      font-size: 0.875rem;
      font-weight: 500;
      background: rgba(0, 255, 136, 0.1);
      color: var(--zekt-green);
      border: 1px solid var(--zekt-green);
    }
    
    .job-description {
      font-size: 1rem;
      line-height: 1.7;
      color: var(--color-text-secondary);
      margin-bottom: 16px;
    }
    
    .job-requirements {
      margin-bottom: 16px;
    }
    
    .job-requirements h4 {
      font-size: 1rem;
      font-weight: 600;
      color: var(--color-text-primary);
      margin-bottom: 12px;
    }
    
    .job-requirements ul {
      list-style: none;
      padding: 0;
    }
    
    .job-requirements li {
      padding-left: 24px;
      position: relative;
      margin-bottom: 8px;
      color: var(--color-text-secondary);
    }
    
    .job-requirements li:before {
      content: "→";
      position: absolute;
      left: 0;
      color: var(--zekt-green);
    }
    
    .back-button-container {
      text-align: center;
      margin-top: 48px;
      padding-top: 32px;
      border-top: 1px solid var(--zekt-gray-border);
    }
    
    .btn-back {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 32px;
      background: transparent;
      color: var(--zekt-green);
      border: 2px solid var(--zekt-green);
      border-radius: 6px;
      font-size: 1rem;
      font-weight: 600;
      text-decoration: none;
      cursor: pointer;
      transition: all 0.2s ease;
    }
    
    .btn-back:hover {
      background: #00ff88;
      color: #0a0a0a;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 255, 136, 0.3);
    }
    
    .btn-back svg {
      width: 20px;
      height: 20px;
    }
    
    @media (max-width: 768px) {
      .careers-container {
        padding: 40px 16px 32px;
      }
      
      .careers-title {
        font-size: 2rem;
      }
      
      .no-positions-message {
        padding: 28px 20px;
      }
      
      .values-grid {
        grid-template-columns: 1fr;
      }
    }
