  :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, #f8fbff 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: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

/* Tablet view */
@media (max-width: 992px) {
  .container {
    max-width: 90%;
    padding: 0 20px;
  }
}

/* Mobile view */
@media (max-width: 576px) {
  .container {
    max-width: 100%;
    padding: 0 12px;
  }
}

        /* Hero Section */
        .hero {
            text-align: center;
            padding: 60px 20px;
        }

        .hero h1 {
            font-size: 2.4rem;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .hero p {
            font-size: 1.05rem;
            max-width: 1100px;
            margin: 0 auto 30px;
            color: #333;
        }

        .buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .btn {
            padding: 12px 28px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            font-size: 1rem;
            transition: 0.3s;
            min-width: 140px;
            text-align: center;
        }

        .btn-primary {
            background: var(--primary);
            color: white;
        }

        .btn-primary:hover {
            background: #3d8bff;
            transform: translateY(-2px);
        }

        .btn-outline {
            background: white;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-outline:hover {
            background: var(--primary);
            color: white;
        }

        /* Gift Code */
        .gift {
            background: white;
            padding: 10px 20px;
            text-align: center;
            margin: 40px 0;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }

        .gift h2 {
            font-size: 1.8rem;
            margin-bottom: 10px;
        }

        .gift p {
            color: #555;
            margin-bottom: 25px;
        }

     .code {
  background: var(--light-bg);
  border: 2px dashed var(--primary);
  padding: 20px;
  border-radius: 10px;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--primary);
  max-width: 500px;
  margin: 20px auto;
  letter-spacing: 1.5px;
  text-align: center;
  word-wrap: break-word;
  box-sizing: border-box;
}

/* Tablet View */
@media (max-width: 768px) {
  .code {
    max-width: 90%;
    padding: 18px;
    font-size: 1.1rem;
    letter-spacing: 1px;
  }
}

/* Mobile View */
@media (max-width: 480px) {
  .code {
    max-width: 95%;
    padding: 15px;
    font-size: 1rem;
    letter-spacing: 0.8px;
    border-width: 1.8px;
  }
}


       

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 { font-size: 2rem; }
            .buttons { flex-direction: column; align-items: center; }
            .btn { width: 100%; max-width: 260px; }

          
        }

        .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;  
  }
}


        /* Headings */
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            margin: 40px 0 18px;
            color: #1a1a1a;
            position: relative;
            padding-bottom: 12px;
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 70px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }

        h3 {
            font-size: 1.6rem;
            font-weight: 600;
            margin: 32px 0 14px;
            color: #222;
        }

        h4 {
            font-size: 1.3rem;
            font-weight: 600;
            margin: 28px 0 12px;
            color: #333;
        }

        /* Paragraph */
        p {
            font-size: 1.05rem;
            margin-bottom: 18px;
            color: #333;
        }

        /* List */
        ul {
            margin: 18px 0;
            padding-left: 28px;
        }

        li {
            margin-bottom: 12px;
            font-size: 1.05rem;
            color: #333;
            position: relative;
        }

        li::marker {
            color: var(--primary);
            font-weight: bold;
        }

        /* Special Button */
        .register-placeholder {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            margin: 20px 0;
            font-size: 1.1rem;
            box-shadow: 0 4px 12px rgba(86, 165, 255, 0.3);
            transition: 0.3s;
        }

        .register-placeholder:hover {
            background: #3d8bff;
            transform: translateY(-2px);
        }

        /* Numbered Steps */
        ol {
            counter-reset: step;
            margin: 20px 0;
            padding-left: 30px;
        }

        ol li {
            counter-increment: step;
            margin-bottom: 18px;
            padding-left: 10px;
            position: relative;
            font-size: 1.05rem;
            color: #333;
        }

        ol li::before {
            content: counter(step) ".";
            position: absolute;
            left: -25px;
            color: var(--primary);
            font-weight: 700;
            font-size: 1.1rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            h2 { font-size: 1.7rem; }
            h3 { font-size: 1.5rem; }
            h4 { font-size: 1.3rem; }
            p, li { font-size: 1rem; }
            .register-placeholder { 
                padding: 10px 24px; 
                font-size: 1rem;
            }
        }

         

    /* 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;
            }
        }
    
/* ess page */



.about-container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

/* 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;
    }
}

/* Print Optimization */
@media print {
    body {
        background: white;
    }
    .about-container {
        max-width: 100%;
        padding: 0;
    }
    .about-container h1,
    .about-container h2 {
        color: #000;
    }
}




   .specs-section {
      max-width: 800px;
      margin: 60px auto;
      background: #ffffff;
      border-radius: 15px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.08);
      padding: 30px;
      font-family: 'Inter', sans-serif;
    }

    .specs-section h2 {
      text-align: center;
      color: #007bff;
      margin-bottom: 25px;
      font-size: 28px;
      font-weight: 600;
      letter-spacing: 0.5px;
    }

    .specs-table {
      width: 100%;
      border-collapse: collapse;
      border-radius: 10px;
      overflow: hidden;
    }

    .specs-table thead {
      background-color: #56a3ff;
      color: #fff;
    }

    .specs-table th, .specs-table td {
      padding: 15px 20px;
      text-align: left;
    }

    .specs-table th {
      text-transform: uppercase;
      letter-spacing: 0.3px;
      font-weight: 600;
    }

    .specs-table tbody tr {
      border-bottom: 1px solid #e5e5e5;
      transition: background-color 0.3s ease;
    }

    .specs-table tbody tr:hover {
      background-color: #f2f8ff;
    }

    .specs-table td.label {
      font-weight: 600;
      color: #333;
      width: 40%;
    }

    .specs-table td.value {
      color: #555;
    }

    /* Responsive for Specs Table */
    @media (max-width: 768px) {
      .specs-section {
        padding: 20px;
        margin: 30px 15px;
      }

      .specs-table, .specs-table thead, .specs-table tbody, 
      .specs-table th, .specs-table td, .specs-table tr {
        display: block;
        width: 100%;
      }

      .specs-table thead {
        display: none;
      }

      .specs-table tbody tr {
        background: #f9fbff;
        margin-bottom: 15px;
        border-radius: 10px;
        padding: 15px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
      }

      .specs-table td {
        display: flex;
        justify-content: space-between;
        padding: 8px 0;
      }

      .specs-table td.label {
        font-weight: 600;
        color: #007bff;
      }
    }


    /* ========== PAYMENT METHOD TABLE ========== */
    .payment-section {
      max-width: 800px;
      margin: 50px auto;
      background: #ffffff;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      font-family: 'Inter', sans-serif;
    }

    .payment-section h2 {
      text-align: center;
      color: #007bff;
      margin: 25px 0;
      font-size: 26px;
      font-weight: 600;
    }

    .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"; }
    }

 /* 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;
      }
    }