/* ====== global ====== */
:root{
  --bg-tint: rgba(0,0,0,.65);
  --fg: #f7fafc;
  --fg-soft: #cfd8e3;
  --accent: #ff4d4d;
  --glass: rgba(0,0,0,.18);
  --border: rgba(255,255,255,.16);
}
*{box-sizing:border-box}
html,body{height:100%;margin:0}
body{
  min-height:100vh;
  background:#000 url("/images/hero.jpg") center center / cover no-repeat fixed;
  color:var(--fg);
  font-family: ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,Ubuntu,"Helvetica Neue",Arial,"Noto Sans",sans-serif;
  -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale;
}

/* ====== NAVBAR ====== */
/* Navigation styles are now handled by nav.css for better mobile responsiveness */

/* ====== HERO ====== */
.overlay{
  min-height:100vh;
  background:
    radial-gradient(70% 100% at 50% 20%, rgba(0,0,0,.55), transparent 60%),
    linear-gradient(180deg, var(--bg-tint), rgba(0,0,0,.75));
  display:grid; place-items:center; padding:7.5rem 1.25rem 4rem; /* top padding for navbar */
}
.content{
  text-align:center;
  padding:2.8rem 2.3rem;
  border-radius:1.2rem;
  border:1px solid var(--border);
  background: var(--glass);
  max-width:980px; width:100%;
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
}
.kicker{ display:inline-block; margin-bottom:.6rem; letter-spacing:.15em; font-weight:900; font-size:.86rem; opacity:.95; text-transform:uppercase; }
h1{
  font-size: clamp(2.7rem, 5.6vw, 4.8rem);
  margin:.15rem 0 1.05rem; line-height:1.04; font-weight:1000;
  text-shadow: 0 4px 24px rgba(0,0,0,.7), 0 0 1px rgba(255,255,255,.22);
}
h1 .glow{
  background: linear-gradient(90deg, #fff, #ffe6e6, #ffd0d0, #fff);
  -webkit-background-clip:text; background-clip:text; color:transparent;
  filter: drop-shadow(0 0 22px rgba(255,77,77,.25));
}
.subline{ font-size: clamp(1.12rem, 2vw, 1.4rem); margin:0 0 1.4rem; color:var(--fg-soft); }
.description{ font-size: clamp(1.06rem, 1.7vw, 1.28rem); line-height:1.85; margin:0 auto 1.15rem; color:#f1f5fb; opacity:.96; }
.description strong{ color:#fff }
.callout{
  margin:.85rem auto 0; padding:.7rem 1rem; width:max-content; max-width:100%;
  text-align: center;
}

/* narrow screens */
@media (max-width:560px){
  .content{ padding:1.7rem 1.1rem }
}

/* === FINAL OVERRIDES (integrated from dev.css) === */
.overlay{
  /* more background visible */
  background:
    radial-gradient(70% 100% at 50% 20%, rgba(0,0,0,.45), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.60), rgba(0,0,0,.75)) !important;
  /* more top padding for taller navbar */
  padding-top: 9.5rem !important;
}
.content{
  background: rgba(0,0,0,.18) !important;
  border-color: rgba(255,255,255,.18) !important;
  box-shadow: 0 16px 40px rgba(0,0,0,.35) !important;
}
h1 .glow{ filter: drop-shadow(0 0 10px rgba(255,128,128,.25)) !important; }

/* === Jobkiller hero (final overrides) === */
.overlay{
  background:
    radial-gradient(70% 100% at 50% 20%, rgba(0,0,0,.45), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.60), rgba(0,0,0,.75));
  padding-top: 9.5rem; /* taller navbar */
}
.content{
  background: rgba(0,0,0,.18);
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
}

/* === NEWS PAGE STYLES === */
.news-intro {
  margin: 2rem 0;
  text-align: center;
}

.news-intro p {
  font-size: 1.1rem;
  color: var(--fg-soft);
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.news-container {
  margin-top: 2rem;
  max-width: 1400px;
}

.news-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: rgba(255,255,255,.1);
  border: 2px solid rgba(255,255,255,.2);
  color: var(--fg);
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.filter-btn:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.4);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
  box-shadow: 0 4px 20px rgba(255,77,77,.4);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.news-tile {
  background: rgba(0,0,0,.25);
  border: 2px solid rgba(255,255,255,.15);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(15px);
}

.news-tile:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,.3);
  box-shadow: 0 20px 40px rgba(0,0,0,.4);
}

.news-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-tile:hover .news-image img {
  transform: scale(1.05);
}

.news-category {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0,0,0,.8);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.news-content {
  padding: 1.5rem;
}

.news-title {
  margin: 0 0 1rem 0;
  font-size: 1.2rem;
  line-height: 1.4;
}

.news-title a {
  color: var(--fg);
  text-decoration: none;
  transition: color 0.3s ease;
}

.news-title a:hover {
  color: var(--accent);
}

.news-description {
  color: var(--fg-soft);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--fg-soft);
}

.news-source {
  font-weight: 600;
  color: var(--accent);
}

.news-time {
  opacity: 0.8;
}

.news-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255,255,255,.1);
  border-top: 4px solid var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.news-empty, .news-error {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
  color: var(--fg-soft);
}

.news-error button {
  background: var(--accent);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  cursor: pointer;
  margin-top: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.news-error button:hover {
  background: #ff3333;
  transform: translateY(-2px);
}

/* Fallback notice styling */
.fallback-notice {
  margin-bottom: 1.5rem;
}

.fallback-alert {
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
}

.fallback-alert p {
  color: #ffc107;
  margin: 0;
  font-size: 1rem;
}

.fallback-alert strong {
  color: #ffb300;
}

/* === ENDANGERED JOBS PAGE === */
.endangered-jobs-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Risk Level Filters */
.risk-filters {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.risk-filter-btn {
  background: rgba(255,255,255,.1);
  border: 2px solid rgba(255,255,255,.2);
  color: var(--fg);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.risk-filter-btn:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.4);
  transform: translateY(-2px);
}

.risk-filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

/* Industry Filters */
.industry-filters {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.industry-filter-btn {
  background: rgba(255,255,255,.1);
  border: 2px solid rgba(255,255,255,.2);
  color: var(--fg);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.industry-filter-btn:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.4);
  transform: translateY(-2px);
}

.industry-filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

/* Search and Sort Container */
.search-sort-container {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.search-box {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.1);
  border: 2px solid rgba(255,255,255,.2);
  border-radius: 0.5rem;
  padding: 0.5rem;
  backdrop-filter: blur(10px);
}

.search-box input {
  background: transparent;
  border: none;
  color: var(--fg);
  padding: 0.5rem;
  font-size: 1rem;
  min-width: 300px;
}

.search-box input::placeholder {
  color: var(--fg-soft);
}

.search-box button {
  background: var(--accent);
  border: none;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  cursor: pointer;
  font-weight: 600;
  margin-left: 0.5rem;
}

.sort-options select {
  background: rgba(255,255,255,.1);
  border: 2px solid rgba(255,255,255,.2);
  color: var(--fg);
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  font-size: 1rem;
  backdrop-filter: blur(10px);
}

/* Jobs Grid */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.job-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 1rem;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  border-color: rgba(255,255,255,.4);
}

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

.job-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
  margin: 0;
  flex: 1;
  margin-right: 1rem;
}

.job-risk-badge {
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

.job-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.job-meta span {
  background: rgba(255,255,255,.1);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  color: var(--fg-soft);
}

.job-risk-score {
  margin-bottom: 1rem;
}

.risk-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--fg);
}

.risk-bar {
  width: 100%;
  height: 8px;
  background: rgba(255,255,255,.2);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.risk-fill {
  height: 100%;
  transition: width 0.3s ease;
}

.risk-percentage {
  font-weight: 600;
  color: var(--fg);
}

.job-description {
  color: var(--fg-soft);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.job-ai-threats, .job-impact, .job-mitigation {
  margin-bottom: 1rem;
}

.job-ai-threats strong, .job-impact strong, .job-mitigation strong {
  color: var(--fg);
  display: block;
  margin-bottom: 0.5rem;
}

.job-ai-threats ul {
  margin: 0.5rem 0;
  padding-left: 1.5rem;
}

.job-ai-threats li {
  color: var(--fg-soft);
  margin-bottom: 0.25rem;
}

.job-skills {
  margin-bottom: 1.5rem;
}

.skills-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.skill-tag {
  background: rgba(255,255,255,.1);
  color: var(--fg);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.8rem;
  border: 1px solid rgba(255,255,255,.2);
}

.job-actions {
  text-align: center;
}

.analyze-job-btn {
  background: var(--accent);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
}

.analyze-job-btn:hover {
  background: #ff3333;
  transform: translateY(-2px);
}

/* Jobs Pagination */
.jobs-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 3rem 0;
}

/* CTA Section */
.cta-section {
  text-align: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 1rem;
  padding: 3rem 2rem;
  margin: 3rem 0;
  backdrop-filter: blur(10px);
}

.cta-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--fg-soft);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Jobs Loading and Empty States */
.jobs-loading, .jobs-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
  color: var(--fg-soft);
}

.jobs-empty button {
  background: var(--accent);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  cursor: pointer;
  font-weight: 600;
  margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .jobs-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .risk-filters, .industry-filters {
    gap: 0.5rem;
  }
  
  .risk-filter-btn, .industry-filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  
  .search-sort-container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .search-box input {
    min-width: 250px;
  }
  
  .job-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .job-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.news-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}

.pagination-btn {
  background: rgba(255,255,255,.1);
  border: 2px solid rgba(255,255,255,.2);
  color: var(--fg);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.pagination-btn:hover:not(:disabled) {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.4);
  transform: translateY(-2px);
}

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

.page-info {
  color: var(--fg-soft);
  font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .news-filters {
    gap: 0.5rem;
  }
  
  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  
  .news-pagination {
    flex-direction: column;
    gap: 1rem;
  }
}
h1 .glow{ filter: drop-shadow(0 0 10px rgba(255,128,128,.25)); }

/* === NEW HERO ELEMENTS === */
.hero-stats{
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0 2.5rem;
  flex-wrap: wrap;
}

.stat-item{
  text-align: center;
  padding: 1rem 1.5rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 1rem;
  backdrop-filter: blur(10px);
  min-width: 140px;
}

.stat-number{
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  color: #ff6b6b;
  text-shadow: 0 0 20px rgba(255,107,107,.4);
  margin-bottom: .3rem;
}

.stat-label{
  display: block;
  font-size: .9rem;
  color: var(--fg-soft);
  font-weight: 600;
  line-height: 1.3;
}

.urgency-section{
  margin: 2.5rem 0 2rem;
  padding: 1.5rem;
  background: rgba(255,77,77,.1);
  border: 1px solid rgba(255,77,77,.2);
  border-radius: 1rem;
  text-align: center;
}

.urgency-section h2{
  font-size: 1.4rem;
  margin: 0 0 .8rem;
  color: #ff6b6b;
  font-weight: 800;
}

.urgency-section p{
  margin: 0;
  font-size: 1.1rem;
  color: var(--fg-soft);
  font-weight: 600;
}

.cta-button{
  display: inline-block;
  background: rgba(255,255,255,.15);
  color: #fff;
  text-decoration: none;
  padding: 1.2rem 2.5rem;
  border-radius: 1rem;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: .02em;
  border: 2px solid rgba(255,255,255,.3);
  backdrop-filter: blur(15px);
  transition: all .3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.3), 0 0 0 1px rgba(255,255,255,.1);
}

.cta-button::before{
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
  transition: left .6s ease;
}

.cta-button:hover{
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.5);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.2);
}

.cta-button:hover::before{
  left: 100%;
}

.cta-subtext{
  margin: .8rem 0 0;
  font-size: .95rem;
  color: var(--fg-soft);
  font-weight: 600;
  opacity: .9;
}

/* Responsive adjustments for new elements */
@media (max-width: 768px){
  .hero-stats{
    gap: 1rem;
    margin: 1.5rem 0 2rem;
  }
  
  .stat-item{
    min-width: 120px;
    padding: .8rem 1rem;
  }
  
  .stat-number{
    font-size: 1.8rem;
  }
  
  .stat-label{
    font-size: .8rem;
  }
  
  .urgency-section{
    margin: 2rem 0 1.5rem;
    padding: 1.2rem;
  }
  
  .cta-button{
    padding: .9rem 1.8rem;
    font-size: 1rem;
  }
}

/* === ANALYZER PAGE STYLES === */
.analyzer-intro{
  text-align: left;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 1rem;
}

.analyzer-intro h2{
  color: #fff;
  font-size: 1.3rem;
  margin: 0 0 1rem;
  font-weight: 700;
}

.analyzer-intro p{
  margin: 0 0 1rem;
  color: var(--fg-soft);
  line-height: 1.6;
}

.risk-factors{
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.risk-factors li{
  margin: .5rem 0;
  color: var(--fg-soft);
  line-height: 1.5;
}

.risk-factors strong{
  color: #fff;
}

.privacy-note{
  margin: 1.5rem 0 0 !important;
  padding: 1rem;
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.2);
  border-radius: .8rem;
  color: #86efac !important;
  font-size: .95rem;
}

/* === ABOUT PAGE STYLES === */
.about-content section{
  margin-bottom: 2.5rem;
}

.about-content h2{
  color: #fff;
  font-size: 1.5rem;
  margin: 0 0 1rem;
  font-weight: 700;
  border-bottom: 2px solid rgba(255,255,255,.2);
  padding-bottom: .5rem;
}

.about-content h3{
  color: #ff6b6b;
  font-size: 1.2rem;
  margin: 0 0 .8rem;
  font-weight: 700;
}

.about-content p{
  color: var(--fg-soft);
  line-height: 1.7;
  margin: 0 0 1rem;
}

.about-content strong{
  color: #fff;
}

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

.feature{
  padding: 1.5rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 1rem;
  backdrop-filter: blur(10px);
}

.feature p{
  margin: 0;
  font-size: .95rem;
}

.mission-section{
  background: rgba(255,107,107,.05);
  border: 1px solid rgba(255,107,107,.1);
  padding: 1.5rem;
  border-radius: 1rem;
}

.why-now{
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem;
  border-radius: 1rem;
}

.get-started{
  text-align: center;
  background: rgba(34,197,94,.05);
  border: 1px solid rgba(34,197,94,.1);
  padding: 2rem;
  border-radius: 1rem;
}

.get-started .cta-button{
  margin-top: 1rem;
}

/* === CAREER HUB STYLES === */
.career-hub-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

.quick-start-section {
  margin-bottom: 4rem;
}

.quick-start-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.quick-start-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.quick-start-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.quick-start-card h3 {
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.quick-start-card p {
  color: var(--fg-soft);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.tool-section {
  margin-bottom: 4rem;
  padding: 2rem;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.tool-section h2 {
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 2rem;
  text-align: center;
}

.section-intro {
  text-align: center;
  color: var(--fg-soft);
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.assessment-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.assessment-form {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.assessment-form h3 {
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: var(--fg);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--fg);
  font-size: 1rem;
}

/* Fix dropdown styling - More aggressive approach */
.form-group select,
.form-group select *,
.form-group select option,
.form-group select option *,
.rating-select,
.rating-select *,
.rating-select option,
.rating-select option * {
  background: #2a2a2a !important;
  color: #ffffff !important;
  border: none !important;
  padding: 0.5rem !important;
}

.form-group select,
.rating-select {
  background: rgba(255, 255, 255, 0.1) !important;
  color: var(--fg) !important;
  border: 1px solid var(--border) !important;
  border-radius: 8px !important;
  padding: 0.75rem !important;
  font-size: 1rem !important;
  cursor: pointer !important;
}

.form-group select:focus,
.rating-select:focus {
  outline: none !important;
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px rgba(0, 204, 255, 0.1) !important;
}

.form-group select option,
.rating-select option {
  background: #2a2a2a !important;
  color: #ffffff !important;
  padding: 0.5rem !important;
  border: none !important;
}

.form-group select option:hover,
.rating-select option:hover {
  background: #3a3a3a !important;
  color: #ffffff !important;
}

.form-group select option:checked,
.rating-select option:checked {
  background: var(--accent) !important;
  color: #ffffff !important;
}

/* Force dropdown styling in all browsers */
.form-group select::-ms-expand,
.rating-select::-ms-expand {
  display: none !important;
}

.form-group select:-webkit-appearance,
.rating-select:-webkit-appearance {
  -webkit-appearance: none !important;
  appearance: none !important;
}

/* Enhanced star rating styling */
.rating-stars {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.star {
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #666;
  user-select: none;
  padding: 0.2rem;
  border-radius: 4px;
}

.star:hover {
  transform: scale(1.2);
  filter: drop-shadow(0 0 8px rgba(255, 204, 0, 0.6));
  background: rgba(255, 204, 0, 0.1);
}

.star:active {
  transform: scale(0.95);
}

.rating-label {
  display: inline-block;
  margin-left: 0.5rem;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--fg-soft);
  transition: all 0.3s ease;
}

/* Rating select dropdowns */
.rating-select {
  background: rgba(255, 255, 255, 0.1);
  color: var(--fg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem;
  font-size: 0.9rem;
  cursor: pointer;
  min-width: 150px;
  margin-top: 0.5rem;
}

/* Content sections and AdSense styling */
.content-section {
  margin: 3rem 0;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.content-section h2 {
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

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

.industry-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.industry-card h3 {
  color: var(--accent);
  margin-bottom: 1rem;
}

.strategy-list {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
}

.strategy-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--accent);
}

.strategy-item h4 {
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.cta-section {
  text-align: center;
  margin: 3rem 0;
}

.cta-section .cta-button {
  display: inline-block;
  margin: 0.5rem;
  padding: 1rem 2rem;
  background: var(--accent);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.cta-section .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 204, 255, 0.4);
}

/* Content preview styling */
.content-preview {
  margin: 2rem 0;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.content-preview h3 {
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.content-preview ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.content-preview li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.content-preview li:last-child {
  border-bottom: none;
}

.content-preview strong {
  color: var(--accent);
}

/* AI Automation Grid */
.ai-automation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.automation-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.automation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.automation-card h3 {
  color: var(--accent);
  margin-bottom: 1rem;
}

/* AdSense styling */
.adsense-section {
  margin: 3rem 0;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  text-align: center;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.adsense-section::before {
  content: "Advertisement";
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Research and optimistic styling */
.research-highlight {
  background: rgba(0, 204, 255, 0.1);
  border: 1px solid var(--accent);
  border-radius: 8px;
  padding: 1rem;
  margin: 1rem 0;
}

.research-highlight p {
  margin: 0;
  color: var(--fg);
  font-size: 0.9rem;
}

.research-citation {
  color: var(--accent) !important;
  font-style: italic;
  font-size: 0.85rem;
  margin: 0.5rem 0;
  padding: 0.5rem;
  background: rgba(0, 204, 255, 0.05);
  border-radius: 4px;
}

.research-note {
  background: rgba(255, 204, 0, 0.1);
  border: 1px solid #ffcc00;
  border-radius: 8px;
  padding: 0.75rem;
  margin: 1rem 0;
}

.research-note p {
  margin: 0;
  color: var(--fg);
  font-size: 0.85rem;
}

.optimistic-note {
  background: rgba(0, 255, 0, 0.1);
  border: 1px solid #00cc00;
  border-radius: 8px;
  padding: 1rem;
  margin: 1rem 0;
}

.optimistic-note p {
  margin: 0;
  color: var(--fg);
  font-size: 0.9rem;
  font-weight: 500;
}

.rating-select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 204, 255, 0.1);
}

.rating-select option {
  background: #2a2a2a !important;
  color: var(--fg) !important;
  padding: 0.5rem !important;
  border: none !important;
}

.rating-select option:hover {
  background: #3a3a3a !important;
}

.rating-select option:checked {
  background: var(--accent) !important;
  color: white !important;
}

.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 204, 255, 0.1);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 204, 255, 0.1);
}

.skill-rating {
  margin-bottom: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.skill-rating span {
  display: block;
  color: var(--fg);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.rating-stars {
  display: flex;
  gap: 0.5rem;
}

.star {
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #666;
  user-select: none;
}

.star:hover {
  transform: scale(1.2);
  filter: drop-shadow(0 0 8px rgba(255, 204, 0, 0.6));
}

.rating-label {
  display: inline-block;
  margin-left: 0.5rem;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--fg-soft);
  transition: all 0.3s ease;
}

.submit-button {
  width: 100%;
  padding: 1rem;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-button:hover {
  background: #0099cc;
  transform: translateY(-2px);
}

.assessment-results {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.assessment-results h3 {
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.results-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.overall-score {
  margin: 1rem 0;
}

.score-label {
  color: var(--fg-soft);
  font-size: 0.9rem;
}

.score-display {
  font-size: 2rem;
  font-weight: bold;
  margin-top: 0.5rem;
}

.risk-level {
  margin: 1rem 0;
}

.risk-label {
  color: var(--fg-soft);
  font-size: 0.9rem;
}

.risk-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  color: white;
  font-weight: bold;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.recommendations-section {
  margin: 2rem 0;
}

.recommendation-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
}

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

.rec-header h5 {
  color: var(--accent);
  margin: 0;
  font-size: 1.1rem;
}

.priority-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase;
}

.priority-high {
  background: #ff4444;
  color: white;
}

.priority-medium {
  background: #ff8800;
  color: white;
}

.action-plan {
  background: rgba(0, 204, 255, 0.1);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(0, 204, 255, 0.3);
}

.action-plan h4 {
  color: var(--accent);
  margin-bottom: 1rem;
}

.action-plan ol {
  color: var(--fg);
  line-height: 1.8;
}

.action-plan li {
  margin-bottom: 0.5rem;
}

/* Career Pivot Calculator */
.pivot-calculator {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.calculator-form {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.calculator-form h3 {
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.pivot-results {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.pivot-results h3 {
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.analysis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.analysis-item {
  text-align: center;
}

.analysis-item h4 {
  color: var(--fg);
  margin-bottom: 1rem;
}

.metric-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.metric-value {
  font-size: 2rem;
  font-weight: bold;
}

.metric-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.metric-fill {
  height: 100%;
  transition: width 0.5s ease;
}

.transition-details {
  margin: 2rem 0;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.transition-details h4 {
  color: var(--accent);
  margin-bottom: 1rem;
}

.transition-details p {
  color: var(--fg);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.skills-requirements h5 {
  color: var(--fg);
  margin: 1rem 0 0.5rem 0;
}

.action-steps {
  background: rgba(0, 204, 255, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(0, 204, 255, 0.3);
}

.action-steps h4 {
  color: var(--accent);
  margin-bottom: 1rem;
}

.action-steps ol {
  color: var(--fg);
  line-height: 1.8;
}

.action-steps li {
  margin-bottom: 0.5rem;
}

/* Industry Transition Guides */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.industry-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.industry-card h3 {
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  text-align: center;
}

.transition-timeline {
  margin-bottom: 2rem;
}

.timeline-item {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border-left: 4px solid var(--accent);
}

.timeline-phase {
  display: block;
  color: var(--accent);
  font-weight: bold;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.timeline-item p {
  color: var(--fg);
  margin: 0;
  line-height: 1.5;
}

.skill-requirements h4 {
  color: var(--fg);
  margin-bottom: 1rem;
}

/* Resume & Interview Prep */
.prep-resources {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.resource-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.resource-card h3 {
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.resource-card ul {
  color: var(--fg);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.resource-card li {
  margin-bottom: 0.5rem;
}

.resource-button {
  width: 100%;
  padding: 0.75rem;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.resource-button:hover {
  background: #0099cc;
  transform: translateY(-2px);
}

/* Future Skills Predictor */
.skills-predictor {
  margin-top: 2rem;
}

.prediction-filters {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  margin-bottom: 2rem;
}

.prediction-filters h3 {
  color: var(--accent);
  margin-bottom: 1.5rem;
  text-align: center;
}

.filter-controls {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.filter-controls select {
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--fg);
  font-size: 0.9rem;
}

.predict-button {
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.predict-button:hover {
  background: #0099cc;
  transform: translateY(-2px);
}

.prediction-header {
  text-align: center;
  margin-bottom: 2rem;
}

.prediction-header h3 {
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.prediction-header p {
  color: var(--fg-soft);
}

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

.predicted-skill-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.3s ease;
}

.predicted-skill-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.skill-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.predicted-skill-card h4 {
  color: var(--accent);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.predicted-skill-card p {
  color: var(--fg-soft);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.demand-indicator {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
}

.demand-label {
  color: var(--fg-soft);
  font-size: 0.8rem;
}

.demand-score {
  color: var(--accent);
  font-weight: bold;
  font-size: 0.9rem;
}

.prediction-note {
  background: rgba(255, 193, 7, 0.1);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 193, 7, 0.3);
  text-align: center;
}

.prediction-note p {
  color: var(--fg);
  margin: 0;
  line-height: 1.6;
}

/* Call to Action */
.cta-section {
  text-align: center;
  margin-top: 4rem;
  padding: 3rem;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.cta-section h2 {
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 2rem;
}

.cta-section p {
  color: var(--fg-soft);
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--accent);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #0099cc;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 204, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .assessment-container,
  .pivot-calculator {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .quick-start-grid {
    grid-template-columns: 1fr;
  }
  
  .industry-grid {
    grid-template-columns: 1fr;
  }
  
  .prep-resources {
    grid-template-columns: 1fr;
  }
  
  .skills-grid {
    grid-template-columns: 1fr;
  }
  
  .filter-controls {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}
