/* Policy style */

    :root {
      --primary-blue: #1a2a4f;
      --accent-gold: #f9c345;
      --text-light: #f8f9fa;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background: linear-gradient(to bottom, #0f172a, #1e293b);
      color: var(--text-light);
      margin: 0;
      padding: 0;
    }

    .policy-container {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
    }

    .policy-header {
      background: rgba(26, 42, 79, 0.95);
      padding: 4rem 0;
      border-bottom: 3px solid var(--accent-gold);
      text-align: center;
    }

    .policy-header img {
      height: 80px;
      margin-bottom: 1.5rem;
    }

    .row {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
    }

    .col-lg-3, .col-lg-9 {
      box-sizing: border-box;
      padding: 0;
    }

    .col-lg-3 {
      flex: 0 0 25%;
      max-width: 25%;
      min-width: 250px;
    }

    .col-lg-9 {
      flex: 0 0 72%;
      max-width: 72%;
      min-width: 300px;
    }

    .policy-card {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 15px;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: transform 0.3s ease;
      margin-bottom: 2rem;
    }

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

    .policy-card.p-4 {
      padding: 2rem;
    }
    .policy-heading{
      font-size: 3rem;
    }

   .policy-card .section-title {
      color: var(--accent-gold);
      position: relative;
      padding-left: 1.5rem;
      font-size: 1.5rem;
    }
    .policy-text{
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 1.5;
  color: #b0acac;
}

    .section-title::before {
      content: '';
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      height: 70%;
      width: 4px;
      background: var(--accent-gold);
    }



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

    .mt-5 {
      margin-top: 3rem;
    }

    .mb-3 {
      margin-bottom: 1rem;
    }

    .mb-4 {
      margin-bottom: 2rem;
    }

    .py-5 {
      padding-top: 3rem;
      padding-bottom: 3rem;
    }

    .g-4 {
      gap: 2rem;
    }

    .sticky-top {
      position: sticky;
      top: 2rem;
    }

    .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background: var(--primary-blue);
      color: var(--accent-gold);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 2rem;
      z-index: 1000;
    }

    /* Responsive Styles */
    @media (max-width: 991px) {
      .row {
        flex-direction: column;
      }
      .col-lg-3, .col-lg-9 {
        max-width: 100%;
        flex: 0 0 100%;
        min-width: unset;
      }
      .sticky-top {
        position: static;
        top: unset;
      }
      .policy-card .section-title {
     
      font-size: 1rem;
    }
    }

    @media (max-width: 600px) {
      .policy-header {
        padding: 2rem 0;
      }
      .policy-card.p-4 {
        padding: 1rem;
      }
      .btn {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
      }
      .py-5 {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
      }

    }


    /* contact us */



    .contact-header {
      background: rgba(26, 42, 79, 0.95);
      padding: 4rem 0;
      border-bottom: 3px solid var(--accent-gold);
      text-align: center;
    }

    .contact-header img {
      height: 80px;
      margin-bottom: 1.5rem;
    }

    .contact-header h1 {
      font-size: 2.5rem;
      font-weight: 700;
      margin: 0 0 1rem 0;
    }

    .contact-header p {
      font-size: 1.25rem;
      margin: 0;
      color: var(--accent-gold);
    }

    .main-container {
      width: 90%;
      max-width: 700px;
      margin: 3rem auto;
      padding: 0;
    }

    .contact-card {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 15px;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      padding: 2rem;
      box-sizing: border-box;
    }

    .form-group {
      margin-bottom: 1.5rem;
      display: flex;
      flex-direction: column;
    }

    label {
      margin-bottom: 0.5rem;
      font-weight: 600;
      color: var(--accent-gold);
      font-size: 1rem;
    }

    input[type="text"],
    input[type="email"],
    textarea {
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: var(--text-light);
      border-radius: 8px;
      padding: 0.75rem 1rem;
      font-size: 1rem;
      outline: none;
      transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
      resize: none;
    }

    input[type="text"]:focus,
    input[type="email"]:focus,
    textarea:focus {
      background: rgba(255, 255, 255, 0.2);
      border-color: var(--accent-gold);
      box-shadow: 0 0 0 0.15rem rgba(249, 195, 69, 0.25);
    }

    textarea {
      min-height: 120px;
      max-width: 100%;
    }

    .submit-btn {
      display: block;
      width: 100%;
      font-weight: 600;
      color: #1a2a4f;
      background: var(--accent-gold);
      border: none;
      border-radius: 8px;
      padding: 1rem 0;
      font-size: 1.2rem;
      cursor: pointer;
      transition: background 0.2s, color 0.2s;
      margin-top: 0.5rem;
    }

    .submit-btn:hover {
      background: #ffd97a;
      color: #1a2a4f;
    }

    .success-toast {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background: var(--primary-blue);
      border: 2px solid var(--accent-gold);
      color: var(--text-light);
      padding: 1rem 2rem;
      border-radius: 10px;
      display: none;
      z-index: 1000;
      font-size: 1.1rem;
    }

    @media (max-width: 600px) {
      .contact-header {
        padding: 2rem 0;
      }
      .main-container {
        width: 98%;
        margin: 1.5rem auto;
        padding: 0;
      }
      .contact-card {
        padding: 1rem;
      }
      .success-toast {
        right: 10px;
        left: 10px;
        bottom: 10px;
        width: auto;
        font-size: 1rem;
        padding: 0.75rem 1rem;
      }
    }


    /* game page style */

      .hero-section {
            padding: 4rem 0 2rem 0;
            background: rgba(26, 42, 79, 0.95);
            text-align: center;
            box-shadow: 0 4px 24px 0 rgba(160, 68, 255, 0.12);
        }

       .hero-section .game-title {
            font-size: 3rem;
            font-weight: 900;
            letter-spacing: 2px;
            color: #f8f2f2;
            /* background: linear-gradient(90deg, var(--accent), var(--accent2));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent; */
            margin: 0;
            text-shadow: 0 2px 24px rgba(249, 195, 69, 0.18);
        }

        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 2rem 1rem;
        }

        .game-card {
            background: var(--glass-bg);
            border: 2px solid var(--glass-border);
            border-radius: 2rem;
            box-shadow: var(--shadow);
            padding: 1.5rem;
            margin-bottom: 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            backdrop-filter: blur(8px);
            transition: box-shadow 0.3s;
            padding: 48px 0;
           
        }

        .game-card:hover {
            box-shadow: 0 12px 48px 0 rgba(249, 195, 69, 0.18);
        }

        .game-card img {
            width: 100%;
            max-width: 420px;
            border-radius: 1.5rem;
            box-shadow: 0 4px 32px 0 rgba(160, 68, 255, 0.10);
            transition: transform 0.3s;
        }

        .game-card img:hover {
            transform: scale(1.03) rotate(-1deg);
        }

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

        .slotplay-button {
            margin-top: 1.5rem;
            background: linear-gradient(90deg, var(--accent), var(--accent2));
            color: #979eb0;
            font-size: 1.4rem;
            font-weight: 700;
            padding: 1rem 3.5rem;
            border: none;
            border-radius: 2.5rem;
            box-shadow: 0 4px 24px 0 rgba(249, 195, 69, 0.18);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: background 0.2s, color 0.2s, transform 0.2s;
        }

        .slotplay-button::after {
            content: '';
            position: absolute;
            left: -75%;
            top: 0;
            width: 50%;
            height: 100%;
            background: linear-gradient(120deg, rgba(255,255,255,0.2) 0%, transparent 100%);
            transform: skewX(-20deg);
            transition: left 0.5s;
        }

        .slotplay-button:hover {
            background: linear-gradient(90deg, var(--accent2), var(--accent));
            color: #fff;
            transform: translateY(-2px) scale(1.04);
        }

        .slotplay-button:hover::after {
            left: 120%;
        }

        @media (max-width: 600px) {
            .hero-section { padding: 2rem 0 1rem 0; }
            .game-title { font-size: 2rem; }
            .container { padding: 1rem 0.5rem; }
            .game-card { padding: 0.7rem; }
            .game-card img { max-width: 100%; }
            .slotplay-button { font-size: 1.1rem; padding: 0.8rem 1.5rem; }
            .iframe-game{width: 100% !important; height: auto !important;}
            .hero-section .game-title { font-size: 2.5rem; }  
            .policy-heading {font-size: 2rem;}
        }

        .iframe-game{
        /* width: 100%; */
        height: 500px;
        border-radius: 20px;
        width: 800px;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

        }