
  :root {
    --primary: #ff6b00;
    --secondary: #2c3e50;
    --dark: #1a1a1a;
    --light: #f5f5f5;
    --accent: #3498db;
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-dark: #121212;
    --bg-light: #f8f9fa;
    --border: #2c3e50;
    --card-bg: #1e2430;
    --success: #2ecc71;
    --danger: #e74c3c;
  }

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

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

  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-light);
  }

  h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
  }

  h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 3px;
    background-color: var(--primary);
  }

  h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  p {
    margin-bottom: 1.5rem;
  }

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

  a:hover {
    color: var(--accent);
  }

  img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
  }

  .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.6;
    filter: brightness(0.4);
  }

  /* Hero Section */
  .news-hero {
    position: relative;
    padding: 120px 0;
    text-align: center;
    background-color: var(--bg-dark);
    margin-bottom: 60px;
  }

  .news-hero .container {
    position: relative;
    z-index: 1;
  }

  .news-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }

  .news-hero .subtitle {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-light);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  }

  /* Latest News Section */
  .latest-news {
    padding: 60px 0;
    background-color: var(--bg-dark);
  }

  .news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
  }

  .news-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  }

  .news-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
  }

  .news-content {
    padding: 25px;
  }

  .news-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--text-light);
  }

  .news-content .date {
    color: var(--accent);
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 500;
  }

  .read-more {
    display: inline-block;
    margin-top: 15px;
    font-weight: 600;
    color: var(--primary);
    position: relative;
  }

  .read-more::after {
    content: '→';
    margin-left: 5px;
    transition: margin-left 0.3s ease;
  }

  .read-more:hover::after {
    margin-left: 10px;
  }

  /* Featured Update Section */
  .featured-update {
    position: relative;
    padding: 80px 0;
    background-color: var(--secondary);
    margin: 60px 0;
  }

  .update-content {
    background-color: rgba(26, 26, 26, 0.85);
    padding: 40px;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
        position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

  .update-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 30px 0;
  }

  .feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background-color: rgba(44, 62, 80, 0.6);
    border-radius: 8px;
    transition: transform 0.3s ease;
  }

  .feature:hover {
    transform: translateY(-5px);
  }

  .feature i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
  }

  .feature h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .cta-button {
    display: inline-block;
    background-color: var(--primary);
    color: var(--text-light);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s ease;
    margin-top: 20px;
  }

  .cta-button:hover {
    background-color: #e05c00;
    color: var(--text-light);
  }

  /* Rare Finds Section */
  .rare-finds {
    padding: 60px 0;
    background-color: var(--bg-dark);
  }

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

  .rare-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .rare-item {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
  }

  .rare-item:hover {
    transform: translateY(-5px);
  }

  .rare-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
  }

  .rarity, .source {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 5px;
  }

  .rarity {
    color: var(--danger);
  }

  .source {
    color: var(--accent);
  }

  /* Community Spotlight Section */
  .community-spotlight {
    padding: 60px 0;
    background-color: var(--secondary);
  }

  .community-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
  }

  .community-text {
    padding: 20px;
    background-color: rgba(26, 26, 26, 0.7);
    border-radius: 10px;
  }

  .community-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

  /* Newsletter Section */
  .newsletter {
    padding: 60px 0;
    background-color: var(--bg-dark);
    text-align: center;
  }

  .newsletter p {
    max-width: 600px;
    margin: 0 auto 30px;
  }

  .newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
  }

  .form-group label {
    margin-bottom: 8px;
    font-weight: 500;
  }

  .form-group input,
  .form-group select {
    padding: 12px 15px;
    border-radius: 5px;
    border: 1px solid var(--border);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 1rem;
  }

  .form-group input:focus,
  .form-group select:focus {
    outline: none;
    border-color: var(--primary);
  }

  .submit-btn {
    background-color: var(--primary);
    color: var(--text-light);
    border: none;
    padding: 14px 20px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .submit-btn:hover {
    background-color: #e05c00;
  }

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

  /* Media Queries */
  @media (min-width: 768px) {
    .news-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .update-features {
      grid-template-columns: repeat(3, 1fr);
    }

    .rare-items {
      grid-template-columns: repeat(2, 1fr);
    }

    .community-content {
      grid-template-columns: 3fr 2fr;
    }
  }

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

    .rare-items {
      grid-template-columns: repeat(3, 1fr);
    }

    h1 {
      font-size: 3.5rem;
    }

    h2 {
      font-size: 2.5rem;
    }

    .news-hero {
      padding: 150px 0;
    }
  }
