:root {
      --black: #000;
      --white: #fff;
      --red: #fe0e29;
      --yellow: #ffb703;
    }

    body {
      font-family: 'Mosafin', sans-serif;;
      margin: 0;
      padding: 0;
    }

    /* Small Prompt */
    #cookiePrompt {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background: var(--black);
      color: var(--white);
      padding: 20px;
      border-radius: 12px;
      z-index: 9999;
      width: 520px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.4);
      font-size: 14px;
      display: none;
      animation: fadeIn 0.4s ease-in-out;
    }

    #cookiePrompt a {
      color: var(--red);
      font-weight: bold;
      text-decoration: underline;
    }

    #cookiePrompt button {
      margin-top: 10px;
      margin-right: 5px;
      padding: 6px 12px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      font-weight: 600;
    }

    #cookiePrompt button:first-of-type {
      background: var(--red);
      color: white;
    }

    #cookiePrompt button:last-of-type {
      background: var(--yellow);
      color: black;
    }

    /* Full Modal */
    #cookieModal {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.7);
      z-index: 10000;
      display: none;
      justify-content: center;
      align-items: center;
      animation: fadeIn 0.3s ease-in-out;
    }

    #cookieModal .modal-box {
      background: var(--black);
      color: var(--white);
      padding: 30px;
      border-radius: 15px;
      max-width: 500px;
      width: 90%;
      position: relative;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
      animation: slideUp 0.4s ease-in-out;
    }

    #cookieModal .modal-box h3 {
      font-size: 22px;
      margin-bottom: 15px;
    }

    #cookieModal .modal-box p {
      font-size: 14px;
      margin-bottom: 20px;
    }

    #cookieModal .modal-box label {
      display: block;
      margin: 10px 0;
      font-size: 14px;
      cursor: pointer;
    }

    #cookieModal .modal-box input[type="checkbox"] {
      margin-right: 10px;
      accent-color: var(--red);
      transform: scale(1.2);
    }

    #cookieModal .modal-box .btn-group {
      margin-top: 20px;
      text-align: right;
    }

    #cookieModal .modal-box button {
      padding: 8px 14px;
      border: none;
      border-radius: 6px;
      margin-left: 8px;
      cursor: pointer;
      font-weight: 600;
      transition: background 0.3s;
    }

    #cookieModal .modal-box button:nth-child(1) {
      background: var(--red);
      color: white;
    }

    #cookieModal .modal-box button:nth-child(2),
    #cookieModal .modal-box button:nth-child(3) {
      background: var(--yellow);
      color: black;
    }

    #cookieModal .close-btn {
      position: absolute;
      top: 12px;
      right: 15px;
      font-size: 20px;
      color: white;
      cursor: pointer;
    }

    /* Animations */
    @keyframes fadeIn {
      from {opacity: 0;}
      to {opacity: 1;}
    }

    @keyframes slideUp {
      from {transform: translateY(50px); opacity: 0;}
      to {transform: translateY(0); opacity: 1;}
    }

    @media screen and (max-width: 600px) {
      #cookiePrompt {
        right: 50%;
        transform: translateX(50%);
        bottom: 20px;
        width: 90%;
      }
      .mobile-m-t-15{
          margin-top:15px !important;
      }
      #cookieModal .modal-box .btn-group {
        margin-top: 20px;
        text-align: center;
      }
    }