
  :root {
    --primary: #e63b24;
    --secondary: #2a3038;
    --accent: #ffc107;
    --dark: #151921;
    --light: #f5f5f5;
    --text-dark: #222;
    --text-light: #f5f5f5;
    --border-radius: 4px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  }

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

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

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

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

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

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

  h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--secondary);
  }

  h1 {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

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

  h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin-top: 0.5rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  p {
    margin-bottom: 1rem;
  }

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

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

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

  button, .btn-login, .btn-register, .btn-update {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--primary);
    color: var(--text-light);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
  }

  button:hover, .btn-login:hover, .btn-register:hover, .btn-update:hover {
    background-color: #c42e1a;
    transform: translateY(-2px);
  }

  /* Hero Section */
  .hero-section {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--secondary);
    color: var(--text-light);
    padding: 4rem 0;
  }

  .hero-section .content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
    z-index: 1;
  }

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

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

  /* Login Section */
  .login-section {
    padding: 4rem 0;
  }

  .login-section .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .login-container, .register-container {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 2rem;
  }

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

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

  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
  }

  .form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1rem;
  }

  .form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
  }

  .remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .forgot-password {
    font-size: 0.9rem;
  }

  .btn-login {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
  }

  .social-login {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
  }

  .social-login p {
    margin-bottom: 1rem;
    color: #666;
  }

  .social-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
  }

  .social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .social-btn:hover {
    transform: translateY(-3px);
  }

  .facebook {
    background-color: #3b5998;
  }

  .google {
    background-color: #db4437;
  }

  .steam {
    background-color: #171a21;
  }

  .register-content {
    text-align: center;
  }

  .register-content img {
    margin: 1.5rem 0;
    max-height: 200px;
    object-fit: cover;
    width: 100%;
  }

  .btn-register {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    margin-top: 1rem;
  }

  /* Benefits Section */
  .benefits-section {
    background-color: #f9f9f9;
    text-align: center;
  }

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

  .benefit-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
  }

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

  .benefit-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
  }

  .benefits-image {
    max-height: 300px;
    object-fit: cover;
    width: 100%;
    margin-top: 2rem;
  }

  /* Updates Section */
  .updates-section {
    background-color: var(--secondary);
    color: var(--text-light);
    padding: 4rem 0;
  }

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

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

  .update-info {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
  }

  .update-info h3 {
    color: var(--accent);
    margin-bottom: 1.5rem;
  }

  .update-info ul {
    list-style: none;
    margin-bottom: 1.5rem;
  }

  .update-info li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .update-info i {
    color: var(--accent);
  }

  .update-image {
    border-radius: var(--border-radius);
    max-height: 250px;
    object-fit: cover;
    width: 100%;
  }

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

  .btn-update:hover {
    background-color: #e0a800;
  }

  /* FAQ Section */
  .faq-section {
    background-color: #f9f9f9;
    padding: 4rem 0;
  }

  .faq-container {
    max-width: 800px;
    margin: 0 auto;
  }

  .faq-item {
    background-color: white;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }

  .faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
  }

  .faq-question:hover {
    background-color: #f5f5f5;
  }

  .faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
  }

  .faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 1000px;
  }

  .faq-item.active .faq-question i {
    transform: rotate(180deg);
  }

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

    .login-section .container {
      flex-direction: row;
    }

    .login-container, .register-container {
      flex: 1;
    }

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

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

    .update-info {
      flex: 1;
    }

    .update-image {
      flex: 1;
      max-height: 100%;
    }
  }

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

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