
  :root {
    --primary: #b30000;
    --primary-dark: #8a0000;
    --secondary: #2a0a0a;
    --accent: #ff6b00;
    --dark: #120707;
    --darker: #0a0404;
    --light: #e0e0e0;
    --lighter: #f8f8f8;
    --gray: #888;
    --text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }

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

  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--light);
    background-color: var(--darker);
  }

  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  section {
    padding: 5rem 0;
    position: relative;
  }

  h1, h2, h3, h4 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--lighter);
  }

  h1 {
    font-size: 3rem;
    text-shadow: var(--text-shadow);
    margin-bottom: 1.5rem;
  }

  h2 {
    font-size: 2.5rem;
    position: relative;
    margin-bottom: 2rem;
    text-shadow: var(--text-shadow);
  }

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

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

  h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }

  p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
  }

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

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

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

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

  .btn-primary, .btn-secondary {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 3px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: var(--box-shadow);
  }

  .btn-primary {
    background-color: var(--primary);
    color: var(--lighter);
    border: none;
  }

  .btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--lighter);
    transform: translateY(-2px);
  }

  .btn-secondary {
    background-color: transparent;
    color: var(--light);
    border: 2px solid var(--primary);
  }

  .btn-secondary:hover {
    background-color: var(--primary);
    color: var(--lighter);
    transform: translateY(-2px);
  }

  /* Hero Section */
  .hero-section {
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    text-align: center;
    background-color: var(--dark);
    overflow: hidden;
  }

  .hero-section .container {
    max-width: 800px;
  }

  .subtitle {
    font-size: 1.3rem;
    color: var(--light);
    text-shadow: var(--text-shadow);
    margin-bottom: 2rem;
  }

  /* News Section */
  .news-highlights {
    background-color: var(--darker);
  }

  .news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .news-card {
    background-color: var(--secondary);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
  }

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

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

  .news-content {
    padding: 1.5rem;
  }

  .date {
    display: inline-block;
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
  }

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

  .read-more {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: var(--accent);
  }

  .read-more i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
  }

  .read-more:hover i {
    transform: translateX(5px);
  }

  .featured {
    border: 2px solid var(--primary);
  }

  /* Featured Review */
  .featured-review {
    background-color: var(--dark);
    color: var(--light);
  }

  .featured-review .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .rating {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
  }

  .rating i {
    color: var(--accent);
    margin-right: 0.3rem;
    font-size: 1.3rem;
  }

  .rating span {
    margin-left: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--lighter);
  }

  .review-intro {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 2rem;
  }

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

  .highlight {
    display: flex;
    align-items: center;
  }

  .highlight i {
    margin-right: 1rem;
    font-size: 1.2rem;
  }

  .highlight i.fa-plus-circle {
    color: #4caf50;
  }

  .highlight i.fa-minus-circle {
    color: #f44336;
  }

  .highlight p {
    margin-bottom: 0;
  }

  .review-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
  }

  /* Class Spotlight */
  .class-spotlight {
    background-color: var(--darker);
  }

  .spotlight-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .class-stats {
    margin: 2rem 0;
  }

  .stat {
    margin-bottom: 1.5rem;
  }

  .stat-bar {
    height: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
    margin: 0.5rem 0;
  }

  .stat-fill {
    height: 100%;
    background-color: var(--primary);
    border-radius: 5px;
  }

  .spotlight-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
  }

  /* Community Section */
  .community-section {
    background-color: var(--dark);
  }

  .community-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }

  .events-list {
    list-style: none;
  }

  .events-list li {
    display: flex;
    margin-bottom: 1.5rem;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
  }

  .event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: var(--lighter);
    padding: 1rem;
    min-width: 80px;
  }

  .event-date .day {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
  }

  .event-date .month {
    font-size: 0.9rem;
    text-transform: uppercase;
  }

  .event-details {
    padding: 1rem;
  }

  .event-details h4 {
    margin-bottom: 0.3rem;
  }

  .event-details p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: var(--gray);
  }

  .showcase-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .showcase-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
  }

  .showcase-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .showcase-item p {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0.5rem 1rem;
    background-color: rgba(0, 0, 0, 0.7);
    margin: 0;
    font-size: 0.9rem;
  }

  /* Newsletter */
  .newsletter {
    background-color: var(--secondary);
    text-align: center;
  }

  .newsletter .container {
    max-width: 700px;
  }

  .newsletter-form {
    margin: 2rem 0;
  }

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

  label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
  }

  input {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light);
    font-size: 1rem;
  }

  input:focus {
    outline: 2px solid var(--primary);
  }

  .social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--light);
    font-size: 1.2rem;
    transition: all 0.3s ease;
  }

  .social-links a:hover {
    background-color: var(--primary);
    color: var(--lighter);
    transform: translateY(-3px);
  }

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

  /* Responsive Styles */
  @media (min-width: 768px) {
    h1 {
      font-size: 4rem;
    }

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

    .news-grid .featured {
      grid-column: span 2;
      display: flex;
    }

    .news-grid .featured img {
      width: 50%;
      height: auto;
      border-radius: 8px 0 0 8px;
    }

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

    .featured-review .container {
      flex-direction: row;
      align-items: center;
    }

    .review-content {
      flex: 1;
      padding-right: 2rem;
    }

    .review-image {
      flex: 1;
    }

    .spotlight-content {
      flex-direction: row;
      align-items: center;
    }

    .spotlight-text {
      flex: 1;
      padding-right: 2rem;
    }

    .spotlight-image {
      flex: 1;
    }

    .community-content {
      flex-direction: row;
    }

    .community-events {
      flex: 1;
      padding-right: 2rem;
    }

    .community-showcase {
      flex: 1;
    }

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

  @media (min-width: 1024px) {
    h1 {
      font-size: 5rem;
    }

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

    .news-grid .featured {
      grid-column: span 3;
    }
  }
