
  :root {
    --primary: #2a1a41;
    --secondary: #4e2a84;
    --accent: #e6b012;
    --text-light: #f5f5f5;
    --text-dark: #1a1a1a;
    --background-light: #f9f7ff;
    --background-dark: #1a1221;
    --success: #2e7d32;
    --error: #c62828;
    --border-radius: 8px;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  }

  * {
    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);
  }

  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
  }

  h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    margin-bottom: 1rem;
    line-height: 1.3;
  }

  h1 {
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }

  h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
  }

  h3 {
    font-size: 1.5rem;
    color: var(--secondary);
  }

  p {
    margin-bottom: 1.2rem;
  }

  img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
  }

  ul {
    list-style-position: inside;
    margin-bottom: 1.5rem;
  }

  li {
    margin-bottom: 0.5rem;
  }

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

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

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

  .hero-section .content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
  }

  .subtitle {
    font-size: 1.2rem;
    margin-top: 1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  }

  /* Ranking Intro */
  .ranking-intro {
    background-color: var(--background-light);
    padding: 3rem 0;
  }

  /* Methodology Section */
  .methodology {
    background-color: #f0ebff;
    padding: 3rem 0;
  }

  .criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }

  .criterion {
    background-color: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: transform 0.3s ease;
  }

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

  .criterion i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
  }

  /* Top Game Section */
  .top-game {
    position: relative;
    padding: 5rem 0;
    color: var(--text-light);
    overflow: hidden;
  }

  .top-game::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.85));
    z-index: 1;
  }

  .top-game .container {
    position: relative;
    z-index: 2;
  }

  .rank-badge {
    position: absolute;
    top: -20px;
    left: 0;
    width: 80px;
    height: 80px;
    background-color: var(--accent);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 3;
  }

  .game-content {
    position: relative;
    padding-left: 5rem;
  }

  .score {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
  }

  .score-value {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent);
    margin-right: 1rem;
  }

  .score-stars {
    color: var(--accent);
    font-size: 1.5rem;
  }

  .game-details {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(5px);
  }

  .game-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
  }

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

  .pros h4, .cons h4 {
    color: var(--accent);
    margin-bottom: 1rem;
  }

  .pros ul li::before {
    content: "✓";
    color: var(--success);
    margin-right: 0.5rem;
  }

  .cons ul li::before {
    content: "✗";
    color: var(--error);
    margin-right: 0.5rem;
  }

  .quote {
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--accent);
    margin: 2rem 0;
    font-style: italic;
  }

  /* Ranking List */
  .ranking-list {
    padding: 4rem 0;
    background-color: var(--background-light);
  }

  .game-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    box-shadow: var(--box-shadow);
  }

  .game-card .rank-badge {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
    top: -15px;
    left: -15px;
  }

  .game-info {
    padding-left: 2rem;
  }

  .score-mini {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
  }

  .score-mini span {
    font-weight: bold;
    color: var(--secondary);
    margin-right: 1rem;
  }

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

  /* Future Outlook */
  .future-outlook {
    position: relative;
    padding: 5rem 0;
    color: var(--text-light);
    overflow: hidden;
  }

  .future-outlook::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
    z-index: 1;
  }

  .future-outlook .container {
    position: relative;
    z-index: 2;
  }

  .expectations {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    backdrop-filter: blur(5px);
  }

  .expectations ul {
    list-style-type: none;
  }

  .expectations li {
    margin-bottom: 1rem;
  }

  .expectations i {
    color: var(--accent);
    margin-right: 0.5rem;
  }

  .release-info {
    font-style: italic;
    margin-top: 2rem;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
  }

  /* Community Poll */
  .community-poll {
    padding: 4rem 0;
    background-color: var(--background-light);
  }

  .poll-form {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin: 2rem 0;
  }

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

  label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--secondary);
  }

  select, textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
  }

  textarea {
    resize: vertical;
  }

  .btn-submit {
    background-color: var(--secondary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

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

  .current-results {
    margin-top: 3rem;
  }

  .results-graph {
    margin-top: 1.5rem;
  }

  .result-bar {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
  }

  .game-name {
    width: 100px;
    font-weight: bold;
  }

  .bar-container {
    flex: 1;
    height: 30px;
    background-color: #eee;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
  }

  .bar {
    height: 100%;
    background-color: var(--secondary);
    border-radius: 15px;
  }

  .percentage {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  }

  .poll-note {
    font-size: 0.9rem;
    font-style: italic;
    text-align: right;
    margin-top: 1rem;
  }

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

    h2 {
      font-size: 1.6rem;
    }

    .hero-section {
      height: 50vh;
    }

    .pros-cons {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    .game-card {
      grid-template-columns: 1fr;
    }

    .game-card img {
      order: -1;
    }

    .game-info {
      padding-left: 0;
    }
  }

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