:root {
  --primary-color: #4B6CB7;
  --text-color: #333;
  --background: #fff;
  --container-width: 1200px;
  --container-padding: 1rem;
}

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

body {
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.5;
  color: var(--text-color);
  background: var(--background);
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.header {
  padding: 1rem;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.header-content {
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
}

.logo {
  height: 40px;
}

.search-bar {
  display: flex;
  gap: 0.5rem;
  flex: 1;
}

.search-input {
  width: 100%;
  max-width: 400px;
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.search-button {
  padding: 0.5rem 1rem;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.hero-section {
  padding: 4rem 1rem;
  background: linear-gradient(135deg, rgba(75, 108, 183, 0.95) 0%, rgba(24, 40, 72, 0.95) 100%),
    url('/src/img/hr.png');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-content {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.main-title {
  font-size: clamp(3rem, 15vw, 8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: rgb(255 255 255 / 67%);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  white-space: pre-line;
}

.main-title span {
  display: block;
  font-size: 0.8em;
}

.subtitle {
  display: none;
}

.sub-subtitle {
  font-size: clamp(1.2rem, 4vw, 2rem);
  font-weight: 500;
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto 3rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  padding: 0 1rem;
}

.rating-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 3rem auto;
}

.rating-category {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
}

.rating-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-size: 32px;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 
    0 4px 8px rgba(0, 0, 0, 0.2),
    inset 0 2px 4px rgba(255, 255, 255, 0.3);
  position: relative;
}

.rating-icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
  pointer-events: none;
}

.excellent { 
  background-color: #1a8d4c;
  background-image: url('/src/img/excellent.svg');
  box-shadow: 0 0 15px rgba(26, 141, 76, 0.4);
}

.good { 
  background-color: #4B6CB7;
  background-image: url('/src/img/good.svg');
  box-shadow: 0 0 15px rgba(75, 108, 183, 0.4);
}

.normal { 
  background-color: #F1C40F;
  background-image: url('/src/img/normal.svg');
  box-shadow: 0 0 15px rgba(241, 196, 15, 0.3);
}

.poor { 
  background-color: #E67E22;
  background-image: url('/src/img/poor.svg');
  box-shadow: 0 0 15px rgba(230, 126, 34, 0.3);
}

.scam { 
  background-color: #E74C3C;
  background-image: url('/src/img/scam.svg');
  box-shadow: 0 0 15px rgba(231, 76, 60, 0.3);
}

.rating-category span {
  font-size: 1.2rem;
  font-weight: 500;
  color: rgb(255 255 255);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.action-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 0 auto;
}

.action-card {
  flex: 1;
  background: white;
  padding: 1.5rem;
  border-radius: 4px;
  color: var(--text-color);
}

.action-card h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.action-card p {
  margin-bottom: 1.5rem;
}

.action-button {
  /* width: 100%; */
  padding: 0.75rem 1.5rem;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.action-button:hover {
  background: #3955a3;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.star-rating {
  color: #FFD700;
  font-size: 1.25rem;
  margin-top: 0.5rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}


.reviews-section {
  padding: 4rem 1rem;
  background: #f8f9fa;
}

.reviews-content {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.reviews-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

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

.review-card {
  background: white;
  padding: 1.5rem;
  border-radius: 4px;
  border: 1px solid #eee;
}

.review-header {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #eee;
  background-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
}

.reviewer-avatar.excellent {
  background-color: #1a8d4c;
  background-image: url('/src/img/excellent.svg');
  box-shadow: 0 0 10px rgba(26, 141, 76, 0.3);
}

.reviewer-avatar.good {
  background-color: #4B6CB7;
  background-image: url('/src/img/good.svg');
  box-shadow: 0 0 10px rgba(75, 108, 183, 0.3);
}

.reviewer-avatar.normal {
  background-color: #F1C40F;
  background-image: url('/src/img/normal.svg');
  box-shadow: 0 0 10px rgba(241, 196, 15, 0.2);
}

.reviewer-avatar.poor {
  background-color: #E67E22;
  background-image: url('/src/img/poor.svg');
  box-shadow: 0 0 10px rgba(230, 126, 34, 0.2);
}

.reviewer-avatar.scam {
  background-color: #E74C3C;
  background-image: url('/src/img/scam.svg');
  box-shadow: 0 0 10px rgba(231, 76, 60, 0.2);
}

.reviewer-avatar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
}

.reviewer-name {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.review-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.review-content {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer {
  padding: 2rem 1rem;
  background: #f8f9fa;
  border-top: 1px solid #eee;
}

.footer-content {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 2rem;
  color: #888888;
  font-size: 0.75rem;
}

.footer-links a {
  color: #666;
  text-decoration: none;
}

.all-reviews-container {
  margin-top: 2rem;
  text-align: center;
}

.all-reviews-link {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--primary-color);
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

.all-reviews-link:hover {
  background: #3955a3;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  :root {
    --container-padding: 1.5rem;
  }
  
  .header-content {
    flex-direction: column;
    gap: 1rem;
  }

  .search-bar {
    width: 100%;
    justify-content: center;
  }

  .main-title {
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }

  .sub-subtitle {
    line-height: 1.5;
    margin-bottom: 2rem;
  }

  .action-buttons {
    flex-direction: column;
  }

  .rating-categories {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  :root {
    --container-padding: 1rem;
  }
  
  .hero-section {
    padding: 2rem 1rem;
  }

  .reviews-section {
    padding: 2rem 1rem;
  }

  .main-title {
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .sub-subtitle {
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
}


a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

.review-title a:visited{
  color: #333;
}