
  :root {
    --primary: #2a3b8f;
    --secondary: #8f2a6d;
    --accent: #f39c12;
    --light: #f5f5f5;
    --dark: #1a1a2e;
    --text: #333;
    --text-light: #f5f5f5;
    --bg-light: #f9f9f9;
    --bg-dark: #2c3e50;
    --border: #ddd;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --hover: #3498db;
  }

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

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

  img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  .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;
    color: var(--primary);
    line-height: 1.2;
  }

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

  h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
  }

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

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

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

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

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

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

  /* 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;
  }

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

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

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

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

  /* Intro Section */
  .intro-section {
    background-color: var(--bg-light);
    padding: 4rem 0;
  }

  .quote-box {
    background-color: var(--light);
    border-left: 5px solid var(--accent);
    padding: 2rem;
    margin: 2rem 0;
    position: relative;
    box-shadow: var(--shadow);
  }

  .quote-box i {
    font-size: 2rem;
    color: var(--accent);
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    left: 1rem;
  }

  .quote-box blockquote {
    margin-left: 3rem;
    font-style: italic;
  }

  .quote-box .author {
    text-align: right;
    font-weight: bold;
    margin-bottom: 0;
  }

  /* Fractions Grid */
  .fractions-grid {
    padding: 4rem 0;
    background-color: var(--bg-dark);
    color: var(--text-light);
  }

  .fractions-grid h2 {
    color: var(--light);
    text-align: center;
  }

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

  .fraction-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
  }

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

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

  .fraction-content {
    padding: 1.5rem;
  }

  .fraction-content h3 {
    color: var(--accent);
    margin-bottom: 1rem;
  }

  .fraction-features {
    list-style-type: none;
    margin-top: 1rem;
  }

  .fraction-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
  }

  .fraction-features i {
    color: var(--accent);
    margin-right: 0.5rem;
    width: 20px;
    text-align: center;
  }

  /* Comparison Section */
  .comparison-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
  }

  .table-scroll {
    overflow-x: auto;
    margin-bottom: 2rem;
  }

  table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: var(--shadow);
  }

  th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
  }

  th {
    background-color: var(--primary);
    color: var(--light);
  }

  tr:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.05);
  }

  tr:hover {
    background-color: rgba(0, 0, 0, 0.1);
  }

  /* Evolution Section */
  .evolution-section {
    position: relative;
    padding: 4rem 0;
    color: var(--text-light);
  }

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

  .evolution-section .container {
    position: relative;
    z-index: 1;
  }

  .evolution-section h2 {
    color: var(--dark);
    text-align: center;
  }

  .timeline {
    position: relative;
    max-width: 800px;
    margin: 2rem auto;
  }

  .timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--accent);
    top: 0;
    bottom: 0;
    left: 20px;
    margin-left: -2px;
  }

  .timeline-item {
    display: flex;
    margin-bottom: 2rem;
  }

  .timeline-marker {
    min-width: 40px;
    height: 40px;
    background-color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    z-index: 1;
    box-shadow: 0 0 0 4px rgba(243, 156, 18, 0.3);
  }

  .timeline-marker span {
    color: var(--light);
    font-weight: bold;
  }

  .timeline-content {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    flex-grow: 1;
    color: var(--text);
  }

  .timeline-content h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
  }

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

  .popularity-chart {
    margin: 3rem 0;
  }

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

  .bar-label {
    width: 100px;
    font-weight: bold;
    text-align: right;
    padding-right: 1rem;
  }

  .bar-fill {
    height: 30px;
    background-color: var(--primary);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: var(--light);
    padding-right: 1rem;
    position: relative;
    transition: width 1s ease-out;
  }

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

  .testimonial {
    background-color: var(--light);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .testimonial img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--primary);
  }

  .testimonial blockquote {
    font-style: italic;
    margin-bottom: 1rem;
    text-align: center;
  }

  .player-name {
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 0;
  }

  /* Strategy Tips */
  .strategy-tips {
    padding: 4rem 0;
    background-color: var(--bg-dark);
    color: var(--text-light);
  }

  .strategy-tips h2 {
    color: var(--light);
    text-align: center;
  }

  .tips-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
  }

  .tip-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
  }

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

  .tip-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
    display: block;
  }

  .tip-card h3 {
    color: var(--accent);
    margin-bottom: 1rem;
  }

  .tip-card ul {
    list-style-type: disc;
    padding-left: 1.5rem;
  }

  .tip-card li {
    margin-bottom: 0.5rem;
  }

  /* CTA Section */
  .cta-section {
    padding: 4rem 0;
    background-color: var(--primary);
    color: var(--text-light);
    text-align: center;
  }

  .cta-section h2 {
    color: var(--light);
  }

  .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
  }

  .btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .btn-primary {
    background-color: var(--accent);
    color: var(--dark);
  }

  .btn-primary:hover {
    background-color: #e67e22;
    transform: translateY(-3px);
  }

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

  .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
  }

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

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

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

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

    .cta-buttons {
      flex-direction: row;
      justify-content: center;
    }
  }

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

    .hero-section {
      height: 70vh;
    }

    .fraction-cards {
      grid-template-columns: repeat(4, 1fr);
    }

    .tips-grid {
      grid-template-columns: repeat(4, 1fr);
    }

    .timeline::before {
      left: 50%;
    }

    .timeline-item {
      justify-content: flex-end;
    }

    .timeline-item:nth-child(even) {
      flex-direction: row-reverse;
      justify-content: flex-start;
    }

    .timeline-marker {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
    }

    .timeline-content {
      width: 45%;
    }
  }

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