﻿:root {
      --primary: #2f6fd6;
      --secondary: #1e3f7a;
      --bg: #f7f9fc;
      --text: #1f2937;
    }
    * { box-sizing: border-box; }
    body {
      margin: 0;
      font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      color: var(--text);
      background: var(--bg);
      line-height: 1.6;
    }
    header {
      background: white;
      border-bottom: 1px solid #e5e7eb;
      position: sticky;
      top: 0;
      z-index: 10;
    }
    .container {
      max-width: 1100px;
      margin: auto;
      padding: 0 20px;
    }
    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }
    .nav img {
      height: auto;
      width: 100px;
    }
    .nav a {
      margin-left: 24px;
      text-decoration: none;
      font-weight: 500;
      color: var(--text);
    }
    .hero {
      padding: 100px 0 100px;
      background: linear-gradient(180deg, #ffffff 0%, #eef4ff 100%);
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 48px;
      align-items: center;
    }

    .hero-grid img {
    margin-right: -1800px; /* atur sesuai selera */
    width:100%; 
    max-width:800px;
    }
    .hero h1 {
      font-size: 44px;
      line-height: 1.2;
      margin-bottom: 20px;
      color: var(--secondary);
    }
    .hero p {
      font-size: 18px;
      margin-bottom: 28px;
      color: #374151;
    }
    .btn {
      display: inline-block;
      background: var(--primary);
      color: white;
      padding: 14px 28px;
      border-radius: 10px;
      font-weight: 600;
      text-decoration: none;
    }
    section {
      padding: 80px 0;
    }
    .section-title {
      text-align: center;
      margin-bottom: 48px;
    }
    .section-title h2 {
      font-size: 36px;
      margin-bottom: 12px;
      color: var(--secondary);
    }
    .section-title p {
      color: #4b5563;
    }
    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 32px;
    }
    .feature-card {
      background: white;
      border-radius: 16px;
      padding: 28px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
      align-items: center;
      justify-content: center;
      display: flex;
      flex-direction: column;
      text-align: center;
    }
    .feature-icon {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: rgba(47,111,214,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      margin-bottom: 16px;
      color: var(--primary);
    }

    .team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
      border-radius: 20px;

    }

    .info-list li {
      list-style: none;
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .info-list li span {
      font-size: 20px;
    }
      
    .feature-card h3 {
      margin-top: 0;
      margin-bottom: 12px;
      color: var(--primary);
    }
    .game-info {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
    }
    .game-info ul {
      padding-left: 20px;
    }
    .team {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }
    .team-card {
      background: white;
      border-radius: 16px;
      padding: 24px;
      text-align: center;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }
    .team-avatar {
      width: 150px;
    height: 180px;
    border-radius: 12px;
    /*background: rgba(47,111,214,0.1);*/
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    }

    .team-card h3{
        margin-bottom: 8px;
    }

    .team-card p{
        margin-top: 0px;
    }

    footer {
      background: var(--secondary);
      color: white;
      padding: 20px 0;
    }
    footer p {
      text-align: center;
      margin: 0;
      opacity: 0.9;
    }
    @media (max-width: 900px) {
      .hero-grid,
      .game-info {
        grid-template-columns: 1fr;
      }
      .hero h1 {
        font-size: 36px;
      }
    }
      /* ===== Animations ===== */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    .animate {
      opacity: 0;
      transform: translateY(30px);
    }
    .animate.show {
      animation: fadeUp 0.9s ease forwards;
    }
    .delay-1 { animation-delay: 0.2s; }
    .delay-2 { animation-delay: 0.4s; }
    .delay-3 { animation-delay: 0.6s; }

    .hero img {
      animation: fadeIn 1.2s ease forwards;
    }

    .btn {
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(47,111,214,0.25);
    }

    .feature-card,
    .team-card {
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    .feature-card:hover,
    .team-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    }

    .logo{
        height: auto;
        width: 2000px;
    }