  :root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --text: #1f2937;
    --text-light: #6b7280;
    --bg: #ffffff;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --primary: #56A5FF;
    --text: #000000;
    --bg: #ffffff;
    --border: #e0e0e0;
    --light-bg: #f9f9f9;
  }



  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #56A5FF 0%, #E6F0FF 100%);

    color: var(--text);
    line-height: 1.6;
  }

  .header {
    background-color: #56A5FF;
    padding: 10px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
  }

  .logo img {
    height: 70px;
    width: auto;
  }

  .nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
  }

  .nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: opacity 0.3s;
  }

  .nav-links a:hover {
    opacity: 0.8;
  }

  /* Dropdown */
  .dropdown {
    position: relative;
    text-align: center;
  }

  .dropdown-toggle {
    color: white;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .dropdown-menu {
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2d8cff;
    min-width: 180px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 999;
  }

  .dropdown.show .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 5px;
  }

  .dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: white;
    font-size: 16px;
    text-decoration: none;
    transition: background 0.3s;
  }

  .dropdown-menu a:hover {
    background-color: #1a78e0;
  }

  /* Download Button */
  .download-btn {
    background-color: #FF0000;
    color: white;
    padding: 10px 26px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
    transition: all 0.3s;
  }

  .download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.5);
  }

  /* Hamburger */
  .hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
  }

  .hamburger span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: 0.3s;
  }

  /* Responsive */
  @media (max-width: 992px) {
    .header {
      padding: 10px 20px;
    }

    .hamburger {
      display: flex;
    }

    .nav-links {
      position: fixed;
      top: 70px;
      left: -100%;
      width: 100%;
      height: calc(100vh - 70px);
      background: #56A5FF;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      padding-top: 40px;
      transition: 0.4s ease;
      gap: 25px;
    }

    .nav-links.active {
      left: 0;
    }

    .dropdown {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .dropdown-toggle {
      justify-content: center;
      width: 100%;
    }

    .dropdown-menu {
      position: static;
      transform: none;
      background: rgba(255, 255, 255, 0.1);
      width: 220px;
      text-align: center;
      margin-top: 10px;
    }

    /* Mobile Center Download Button */
    .download-btn.desktop-only {
      display: none;
    }

    .download-btn.mobile-only {
      display: block;
      background-color: #FF0000;
      color: white;
      padding: 10px 30px;
      border-radius: 50px;
      font-weight: bold;
      font-size: 15px;
      text-decoration: none;
      margin: 0 auto;
      box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
      transition: all 0.3s;
    }
  }

  @media (min-width: 993px) {
    .download-btn.mobile-only {
      display: none;
    }
  }

  @media (max-width: 480px) {
    .logo img {
      height: 42px;
    }
  }


  .container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 60px 40px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(86, 165, 255, 0.15);
    border: 1px solid rgba(86, 165, 255, 0.1);
    backdrop-filter: blur(10px);
    overflow: hidden;
    position: relative;
  }

  .container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #56A5FF, #7B68EE, #FF6B6B, #4ECDC4);
    border-radius: 20px 20px 0 0;
  }

  h1, h2 {
    color: #56A5FF;
    margin-top: 30px;
    text-align: center;
    font-weight: 800;
    letter-spacing: -0.5px;
    position: relative;
  }

  h1 {
    font-size: 48px;
    background: linear-gradient(135deg, #56A5FF, #7B68EE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(86, 165, 255, 0.2);
  }

  h1::after {
    content: '';
    display: block;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #56A5FF, #7B68EE);
    margin: 20px auto;
    border-radius: 10px;
  }

  h2 {
    font-size: 34px;
    margin: 50px 0 20px;
  }

  p {

    font-size: 17px;
    color: #333;
    line-height: 1.8;
    margin: 20px auto;
    font-weight: 400;
  }


  h3 {
    font-size: 26px;
    color: #19191a;
  }

  h4 {
    font-size: 24px;
    color: #56A5FF;
    margin-top: 45px;
  }


  ul {

    margin: 30px auto;
    padding-left: 30px;
  }

  li {
    font-size: 17px;
    margin: 18px 0;
    color: #333;
  }

  ol {

    margin: 50px auto;
    padding-left: 40px;
    counter-reset: step;
  }

  ol li {
    font-size: 17px;
    margin: 17px 0;
    position: relative;

    counter-increment: step;
  }


  @media (max-width: 768px) {
    .container {
      padding: 40px 20px;
      margin: 20px 15px;
    }

    h2 {
      font-size: 34px;
    }

    h3 {
      font-size: 28px;
    }

    h4 {
      font-size: 24px;
    }

    p, li {
      font-size: 17px;
    }

    .register-btn {
      width: 90%;
      font-size: 21px;
    }

    ol li::before {
      left: -45px;
      width: 38px;
      height: 38px;
      font-size: 18px;
    }
  }

  .links {
    text-align: center;
    margin: 50px 0;
  }

  .links a {
    display: inline-block;
    color: white;
    padding: 16px 40px;
    margin: 0 15px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 19px;
    transition: 0.3s;
    min-width: 180px;
  }

  .links a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }

  /* Alag-alag button colors */
  .links a:nth-child(1) {
    background: linear-gradient(45deg, #FF6B6B, #ee5a52);
  }

  /* Register - Red */
  .links a:nth-child(2) {
    background: linear-gradient(45deg, #56A5FF, #4a90e2);
  }

  /* Login - Blue (same as heading) */
  .links a:nth-child(3) {
    background: linear-gradient(45deg, #4ECDC4, #44a09a);
  }

  /* Download - Green */

  .gift-code {
    background-color: #f0f8ff;
    padding: 25px;
    border-radius: 10px;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    word-break: break-all;
    margin: 30px auto;
    max-width: 650px;
    border: 3px dashed #56A5FF;
  }

  table {
    width: 80%;
    margin: 40px auto;
    border-collapse: collapse;
  }

  table, th, td {
    border: 1px solid #56A5FF;
  }

  th, td {
    padding: 15px;
    text-align: center;
  }

  th {
    background-color: #56A5FF;
    color: white;
  }


  .center-img {
    display: block;
    margin: 30px auto;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
  }

  @media (max-width: 768px) {
    .center-img {
      width: 90%;
    }
  }

  @media (max-width: 480px) {
    .center-img {
      width: 100%;
      border-radius: 4px;
    }
  }



  /* FAQ Header */
        .faq-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .faq-title {
            font-size: 2.6rem;
            font-weight: 800;
            background: linear-gradient(90deg, #1a1a1a 0%, var(--primary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 12px;
        }

        .faq-subtitle {
            font-size: 1.15rem;
            color: #555;
            max-width: 700px;
            margin: 0 auto;
            font-weight: 500;
        }

        /* FAQ Accordion */
        .faq-accordion {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .faq-item {
            background: white;
            border-radius: var(--radius);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
            border: 1px solid var(--border);
            overflow: hidden;
            transition: var(--transition);
        }

        .faq-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(86, 165, 255, 0.18);
        }

        .faq-question {
            padding: 20px 24px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: white;
            transition: var(--transition);
            position: relative;
        }

        .faq-question h3 {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text);
            margin: 0;
            padding-right: 20px;
            line-height: 1.5;
        }

        .faq-toggle {
            width: 36px;
            height: 36px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            transition: var(--transition);
            flex-shrink: 0;
        }

        .faq-toggle i {
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-toggle i {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            background: var(--light-bg);
            border-top: 1px solid var(--border);
        }

        .faq-answer p {
            padding: 0 24px;
            margin: 0;
            font-size: 1.05rem;
            color: #444;
            line-height: 1.7;
        }

        .faq-answer.show {
            max-height: 300px;
            padding: 24px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .faq-title {
                font-size: 2.2rem;
            }

            .faq-subtitle {
                font-size: 1.05rem;
            }

            .faq-question h3 {
                font-size: 1.1rem;
                padding-right: 15px;
            }

            .faq-question,
            .faq-answer p {
                padding-left: 20px;
                padding-right: 20px;
            }

            .faq-toggle {
                width: 32px;
                height: 32px;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .faq-title {
                font-size: 1.9rem;
            }

            .faq-question {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }

            .faq-question h3 {
                padding-right: 0;
            }

            .faq-toggle {
                align-self: flex-end;
            }
        }



        .payment-table {
      width: 100%;
      border-collapse: collapse;
    }

    .payment-table thead {
      background-color: #56a3ff;
      color: #fff;
    }

    .payment-table th, .payment-table td {
      padding: 16px 20px;
      text-align: left;
    }

    .payment-table th {
      font-size: 17px;
      text-transform: uppercase;
      font-weight: 600;
      letter-spacing: 0.3px;
    }

    .payment-table tbody tr {
      border-bottom: 1px solid #e5e5e5;
      transition: background 0.3s ease;
    }

    .payment-table tbody tr:hover {
      background-color: #f2f8ff;
    }

    .payment-table td {
      font-size: 16px;
      color: #333;
    }

    /* Responsive for Payment Table */
    @media (max-width: 768px) {
      .payment-section {
        margin: 30px 15px;
        border-radius: 12px;
      }

      .payment-table, .payment-table thead, .payment-table tbody, 
      .payment-table th, .payment-table td, .payment-table tr {
        display: block;
        width: 100%;
      }

      .payment-table thead {
        display: none;
      }

      .payment-table tbody tr {
        background: #f9fbff;
        margin-bottom: 15px;
        border-radius: 12px;
        padding: 15px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.05);
      }

      .payment-table td {
        display: flex;
        justify-content: space-between;
        padding: 10px 0;
      }

      .payment-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #007bff;
      }

      .payment-table tbody td:nth-child(1)::before { content: "Payment Method"; }
      .payment-table tbody td:nth-child(2)::before { content: "Minimum Deposit"; }
      .payment-table tbody td:nth-child(3)::before { content: "Maximum Deposit"; }
    }

    
/* ess page */



.about-container {
     max-width: 1200px;
    margin: 60px auto;
    padding: 60px 40px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(86, 165, 255, 0.15);
    border: 1px solid rgba(86, 165, 255, 0.1);
    backdrop-filter: blur(10px);
    overflow: hidden;
    position: relative;
}

/* Page Header */
.about-container h1 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(90deg, #1a1a1a 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    position: relative;
}

.about-container h1::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--primary);
    border-radius: 3px;
}

/* Section Headings */
.about-container h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    margin: 50px 0 20px;
    position: relative;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
}

.about-container h2::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

/* Paragraphs */
.about-container p {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 22px;
    text-align: justify;
    padding: 0 5px;
}

/* Lists */
.about-container ul {
    margin: 25px 0;
    padding-left: 30px;
}

.about-container li {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 16px;
    position: relative;
    padding-left: 8px;
    transition: var(--transition);
}

.about-container li::marker {
    color: var(--primary);
    font-weight: bold;
}

.about-container li:hover {
    color: var(--text);
    transform: translateX(4px);
}

/* Special Highlight Paragraphs */
.about-container p strong {
    color: var(--text);
    font-weight: 600;
}

/* Contact Email Styling */
.about-container p a,
.about-container p:contains("info@goagame.onl") {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dashed var(--primary);
    transition: var(--transition);
}

.about-container p a:hover {
    color: var(--primary-dark);
    border-bottom-style: solid;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-container h1 {
        font-size: 2.6rem;
    }
    .about-container h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .about-container {
        padding: 0 15px;
    }
    
    .about-container h1 {
        font-size: 2.3rem;
    }
    
    .about-container h2 {
        font-size: 1.7rem;
        margin: 40px 0 16px;
    }
    
    .about-container p,
    .about-container li {
        font-size: 1.05rem;
    }
    
    .about-container ul {
        padding-left: 25px;
    }
}

@media (max-width: 480px) {
    .about-container h1 {
        font-size: 2rem;
    }
    
    .about-container h2 {
        font-size: 1.5rem;
    }
    
    .about-container p,
    .about-container li {
        font-size: 1rem;
        text-align: left;
    }
    
    .about-container h1::after {
        width: 80px;
        height: 4px;
    }
    
    .about-container h2::before {
        width: 50px;
        height: 3px;
    }
}






  /* Footer Styling */
  footer {
    background-color: #56a3ff;
    /* Same color as header */
    color: #fff;
    text-align: center;
    padding: 30px 15px;
    position: relative;
    margin-top: 30px;
  }

  footer .footer-links {
    margin-bottom: 15px;
  }

  footer .footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
  }

  footer .footer-links a:hover {
    color: #d9e8ff;
  }

  footer .footer-bottom {
    font-size: 14px;
    opacity: 0.9;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    footer .footer-links a {
      display: block;
      margin: 10px 0;
      font-size: 18px;
    }
  }