 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      }
      body {
      font-family: "Inter", "Roboto", system-ui, sans-serif;
      background-color: #ffffff;
      color: #1a1a1a;
      line-height: 1.6;
      }
      .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 1rem;
      }
      @media (min-width: 640px) {
      .container {
      padding: 0 1.5rem;
      }
      }
      @media (min-width: 1024px) {
      .container {
      padding: 0 2rem;
      }
      }
      .header {
      text-align: center;
      margin-bottom: 3rem;
      padding: 2rem 0;
      }
      .header h1 {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
      color: #1a1a1a;
      }
      @media (min-width: 768px) {
      .header h1 {
      font-size: 3rem;
      }
      }
      .header .highlight {
      color: #ff6b00;
      }
      .header p {
      font-size: 1.125rem;
      color: #6c757d;
      max-width: 32rem;
      margin: 0 auto;
      line-height: 1.75;
      }
      .gallery-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
      margin-bottom: 4rem;
      }
      @media (min-width: 768px) {
      .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
      }
      }
      @media (min-width: 1280px) {
      .gallery-grid {
      grid-template-columns: repeat(3, 1fr);
      }
      }
      .album-card {
      display: block;
      position: relative;
      width: 100%;
      border-radius: 0.75rem;
      overflow: hidden;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
      transition: all 0.2s ease;
      text-decoration: none;
      color: inherit;
      transform: scale(1);
      }
      .album-card:hover {
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
      transform: scale(1.03);
      }
      .album-card:focus {
      outline: 2px solid #ff6b00;
      outline-offset: 2px;
      }
      .album-image-container {
      position: relative;
      aspect-ratio: 16 / 9;
      width: 100%;
      }
      .album-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: opacity 0.3s ease;
      }
      .album-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2), transparent);
      }
     .album-info {
      position: absolute;
      bottom: 0rem;
      left: 1rem;
      color: white;
      }
      p.album-location {
    margin-bottom: 0.857143em !important;
}
      .album-year {
      position: absolute;
      top: 1rem;
      left: 1rem;
      background: white;
      color: #1a1a1a;
      padding: 0.25rem 0.75rem;
      border-radius: 0.5rem;
      font-weight: 500;
      font-size: 0.875rem;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      }
      .container div:empty {
    display: block !important;
}
h3:not(:last-child), .h3:not(:last-child) {
    margin-bottom: 0.04em !important;
}
      .album-title {
      font-weight: 700;
      font-size: 1.500rem;
      margin-bottom: 0.25rem;
      transition: color 0.2s ease;
      }
      .album-card:hover .album-title {
      color: #fed7aa;
      }
      .album-location {
      font-size: 0.875rem;
      /*color: #e9ecef;*/
      color: #ffffff;
      }
      .stats {
      margin-top: 4rem;
      padding-top: 2rem;
      border-top: 1px solid #e9ecef;
      }
      .stats-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      text-align: center;
      }
      @media (min-width: 768px) {
      .stats-grid {
      grid-template-columns: repeat(3, 1fr);
      }
      }
      .stat-number {
      font-size: 1.875rem;
      font-weight: 700;
      color: #ff6b00;
      margin-bottom: 0.5rem;
      }
      .stat-label {
      color: #6c757d;
      }
      .loading-placeholder {
      background: #f8f9fa;
      border-radius: 0.75rem;
      animation: pulse 2s infinite;
      }
      @keyframes pulse {
      0%,
      100% {
      opacity: 1;
      }
      50% {
      opacity: 0.5;
      }
      }
      @keyframes fadeIn {
      from {
      opacity: 0;
      transform: translateY(20px);
      }
      to {
      opacity: 1;
      transform: translateY(0);
      }
      }
      .fade-in {
      animation: fadeIn 0.6s ease-out;
      }
      .grid-layout.grid-4-columns.grid-loaded {
    height: auto !important;
}
h3.album-title {
    color: #ffffff;
}
section.stats {
    padding-bottom: 25px !important;
}