
  :root {
    --primary: #ffcf00;
    --primary-dark: #e3b800;
    --secondary: #006db7;
    --secondary-dark: #00508a;
    --text-dark: #202020;
    --text-light: #ffffff;
    --background-light: #f8f8f8;
    --background-dark: #333333;
    --accent: #d01012;
    --border-color: #dddddd;
    --success: #4caf50;
    --warning: #ff9800;
    --danger: #f44336;
  }

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

  body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
  }

  h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  p {
    margin-bottom: 1rem;
  }

  a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  a:hover {
    color: var(--secondary-dark);
  }

  .content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }

  .section-header {
    text-align: center;
    margin-bottom: 3rem;
  }

  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }

  /* Hero Section */
  .hero-section {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    overflow: hidden;
  }

  .hero-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
  }

  .hero-section .content-wrapper {
    position: relative;
    z-index: 2;
  }

  .hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }

  .hero-text {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2rem;
  }

  .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }

  .cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary);
    color: var(--text-dark);
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
  }

  .cta-button:hover {
    background-color: var(--primary-dark);
    color: var(--text-dark);
  }

  /* Current Collections */
  .current-collections {
    padding: 5rem 1.5rem;
    background-color: var(--background-light);
  }

  .collections-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  @media (min-width: 768px) {
    .collections-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (min-width: 1024px) {
    .collections-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  .collection-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .collection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  }

  .collection-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
  }

  .collection-info {
    padding: 1.5rem;
  }

  .collection-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .collection-desc {
    margin-bottom: 1rem;
    color: #555;
  }

  .availability {
    margin-bottom: 1.25rem;
    font-weight: 500;
  }

  .limited {
    color: var(--danger);
    font-weight: 700;
  }

  .medium {
    color: var(--warning);
    font-weight: 700;
  }

  .high {
    color: var(--success);
    font-weight: 700;
  }

  .details-button {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--secondary);
    color: white;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
  }

  .details-button:hover {
    background-color: var(--secondary-dark);
  }

  /* Collector Info Section */
  .collector-info {
    padding: 5rem 1.5rem;
    background-color: #f0f0f0;
  }

  .collector-info h2 {
    text-align: center;
    margin-bottom: 3rem;
  }

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

  @media (min-width: 768px) {
    .info-columns {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  .info-column {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }

  .info-column i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
  }

  .info-column h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  .collector-note {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }

  /* Upcoming Releases */
  .upcoming-releases {
    position: relative;
    padding: 5rem 1.5rem;
    color: var(--text-light);
  }

  .upcoming-releases::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
  }

  .upcoming-releases .content-wrapper {
    position: relative;
    z-index: 2;
  }

  .upcoming-releases h2 {
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
  }

  .release-timeline {
    max-width: 800px;
    margin: 0 auto 4rem;
  }

  .timeline-item {
    display: flex;
    margin-bottom: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
  }

  .release-date {
    background-color: var(--primary);
    color: var(--text-dark);
    padding: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
  }

  .release-info {
    padding: 1.5rem;
    flex-grow: 1;
  }

  .release-info h3 {
    margin-bottom: 0.5rem;
  }

  .newsletter-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
  }

  .newsletter-form h3 {
    text-align: center;
    margin-bottom: 1.5rem;
  }

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

  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
  }

  .form-group input,
  .form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
  }

  .form-group select {
    height: 150px;
  }

  .form-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
  }

  .submit-button {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background-color: var(--primary);
    color: var(--text-dark);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .submit-button:hover {
    background-color: var(--primary-dark);
  }

  /* FAQ Section */
  .faq-section {
    padding: 5rem 1.5rem;
    background-color: var(--background-light);
  }

  .faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
  }

  .faq-container {
    max-width: 800px;
    margin: 0 auto;
  }

  .faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
  }

  .faq-question {
    padding: 1.25rem;
    background-color: white;
    font-size: 1.1rem;
    margin: 0;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
  }

  .faq-question::after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
  }

  .faq-question.active::after {
    transform: translateY(-50%) rotate(180deg);
  }

  .faq-answer {
    padding: 0 1.25rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #f9f9f9;
  }

  .faq-answer.active {
    padding: 1.25rem;
    max-height: 500px;
  }
