/* src/styles.css */
:root {
  --bg-color: #050505;
  --surface-color: #0c0c0c;
  --surface-hover: #161616;
  --primary-color: #ffc400;
  --primary-glow: rgba(255, 196, 0, 0.2);
  --text-primary: #ffffff;
  --text-secondary: #b5b5b5;
  --accent-color: #ff3d00;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  font-family: "Inter", sans-serif;
  background-color: var(--bg-color);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
}
body.menu-open {
  overflow: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
.fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #444;
}
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}
.fade-in {
  animation: fadeIn 0.4s ease-out forwards;
}
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
}
@media (min-width: 769px) {
  .glass {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
}
.mb-1 {
  margin-bottom: 0.5rem;
}
.mb-2 {
  margin-bottom: 1rem;
}
.mb-3 {
  margin-bottom: 1.5rem;
}
.mb-4 {
  margin-bottom: 2rem;
}
.mt-4 {
  margin-top: 2rem;
}
.bg-dark {
  background-color: #0a0a0a;
}
.revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.skeleton-hero {
  min-height: 500px;
  padding-top: 100px;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  position: relative;
}
.skeleton-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      var(--bg-color) 0%,
      transparent 100%);
  z-index: 1;
}
.skeleton-hero .hero-content {
  position: relative;
  z-index: 2;
}
.skeleton-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.skeleton-poster-wrap {
  aspect-ratio: 2/3;
  border-radius: 16px;
  overflow: hidden;
}
.skeleton-info-wrap {
  padding: 0 0.5rem;
}
@media (max-width: 768px) {
  .skeleton-hero {
    min-height: 400px;
  }
  .skeleton-poster-wrap {
    width: 100%;
    height: auto;
  }
}
.loader-container {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(255, 196, 0, 0.1);
  border-left-color: var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.pillar-analysis {
  margin: 3rem 0;
  padding: 2.5rem;
  background:
    linear-gradient(
      135deg,
      rgba(255, 196, 0, 0.05) 0%,
      rgba(0, 0, 0, 0) 100%);
  border: 1px solid rgba(255, 196, 0, 0.1);
  border-radius: 20px;
}
.pillar-analysis h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  font-weight: 800;
}
.pillar-analysis p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 1000px;
}
.analysis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}
.analysis-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}
.analysis-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 196, 0, 0.2);
  transform: translateY(-5px);
}
.analysis-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #fff;
}
.analysis-card p {
  font-size: 1rem;
  margin-bottom: 0;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .pillar-analysis {
    padding: 1.5rem;
    margin: 2rem 0;
  }
  .pillar-analysis h2 {
    font-size: 1.5rem;
  }
  .analysis-grid {
    grid-template-columns: 1fr;
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
