/* LEVELS GUIDE SPECIFIC STYLES */

/* Simple levels layout - Premium Version */
.levels-simple {
  max-width: 100%;
  margin: 3rem 0;
  display: grid;
  gap: 1.5rem;
}

.level-item {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  font-size: 1.1rem;
  line-height: 1.6;
  transition: all 0.3s ease;
}

.level-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(42, 157, 143, 0.3);
  transform: translateX(5px);
}

.level-icon {
  font-size: 2rem;
  margin-right: 1.5rem;
  min-width: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.05);
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
}

.level-content {
  flex: 1;
  color: #e9ecef;
}

.level-content strong {
  color: #e63946;
  display: block;
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

/* Image styling within premium layout */
.type-image-centered {
  margin: 3rem 0;
  text-align: center;
}

.type-image-centered .card {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0 !important;
  max-width: 100% !important;
}

.type-image-centered img {
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  transition: transform 0.4s ease;
}

.type-image-centered img:hover {
  transform: scale(1.02);
}

/* CTA Section specific to guide */
.guide-cta {
  background: linear-gradient(135deg, rgba(44, 24, 16, 0.8) 0%, rgba(26, 26, 46, 0.9) 100%);
  border: 1px solid rgba(230, 57, 70, 0.3);
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 4rem;
}

.guide-cta h3 {
  color: #ffffff;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.guide-cta p {
  color: #d1d5db;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.btn-level {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-level.primary {
  background: #e63946;
  color: white;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.btn-level.primary:hover {
  background: #ff4d5a;
  transform: translateY(-2px);
}

.btn-level.ghost {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #e9ecef;
}

.btn-level.ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #2a9d8f;
  color: white;
  transform: translateY(-2px);
}

/* Mobile responsive styles */
@media (max-width: 768px) {
  .levels-simple {
    margin: 2rem 0;
  }

  .level-item {
    padding: 1.25rem;
    flex-direction: column;
    text-align: center;
  }

  .level-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .cta-grid {
    grid-template-columns: 1fr;
  }
}
