:root {
    --brand:#2a7ade; --accent:#ff6b35; --bg:#0f1216;
    --card:#151a21; --text:#eaf0f7; --muted:#9fb0c3;
    --radius:14px; --shadow:0 10px 28px rgba(0,0,0,.25);
  }

  *{box-sizing:border-box}
  html{scroll-behavior:smooth}
  body{margin:0;background:var(--bg);color:var(--text);font-family:'Tajawal',sans-serif;}
  img{width:100%;border-radius:12px}
  .ads.v{
    text-align: center;
    background-color: red;
    padding: 10px;
max-width: 450px;
    margin: 15px auto;
    border-radius: 8px;
  }
  .ads.v h2{
    background-color: red;
    padding: 10px;
    color: white;
    border-radius: 8px;

    
  }
  .ads.v img{
    width: 90%;
    max-height: 500px;
    border-radius: 6px;
    border: solid 3px rgb(255, 255, 255);
  }
  .ads.v p{
    text-align: right;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #043b792e;
    border-radius: 8px;
    width: 100%;
    padding: 10px;
    margin: 10px auto;
    color: white;
  }.ads.v a{
    font-weight: bold;
    display: block;
    background-color: rgb(255, 254, 254);
    color: rgb(0, 0, 0);
    width: 80%;
    padding: 10px;
    margin: 10px auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-radius: 8px;

  }
  .container{max-width:1000px;margin:0 auto;padding-bottom:80px}
  .brand-bar{display:flex;align-items:center;gap:12px;padding:12px 16px;background:rgba(226, 13, 13, 0.9);border-bottom:1px solid #1e242c;position:sticky;top:0;z-index:100}
  .logo{width:42px;height:42px;border-radius:12px;background:rgb(0, 0, 0);display:grid;place-items:center;color:#fff;font-weight:700}
  .brand-txt h1{margin:0;font-size:18px}
  .brand-txt span{font-size:12px;color:var(--muted)}
  .cta-top{margin-inline-start:auto}
  .btn{padding:8px 14px;border-radius:10px;border:none;cursor:pointer}
  .btn.primary{background:var(--accent);color:#fff}
  .btn.primary:focus{outline:2px solid #fff3;border-radius:10px}
  .hero{margin:16px}
  .hero-card{position:relative;border-radius:18px;overflow:hidden;box-shadow:var(--shadow)}
  .hero-card img{height:220px;object-fit:cover}
  .hero-content{position:absolute;bottom:0;left:0;right:0;padding:16px;background:rgba(0,0,0,.6)}
  .hero-title{margin:0;font-size:22px}
  .hero-sub{margin:6px 0 0;font-size:14px;color:#d9cff3}
  section{margin:22px 16px}
  section h2{margin:0 0 12px;font-size:18px}
  .grid{display:grid;gap:12px}
  .grid.cols-2{grid-template-columns:1fr 1fr}
  @media(min-width:680px){.grid.cols-2{grid-template-columns:repeat(4,1fr)}}
  .card{background:rgb(211, 5, 5);color: white;  border-radius:16px;overflow:hidden;box-shadow:10px 10px 20px rgba(243, 8, 8, 0.409);text-align:center;}
  .card-body{padding:10px}
  .card a{
    color: white;
  }

  .cont{max-width:1100px;margin:0 auto;padding:20px}
    /* Grid */
    .grid{display:grid;gap:16px}
    @media(min-width:600px){.grid{grid-template-columns:repeat(2,1fr)}}
    @media(min-width:900px){.grid{grid-template-columns:repeat(3,1fr)}}


      /* Category Card */
  .category{
    position:relative;border-radius:var(--radius);overflow:hidden;
    cursor:pointer;box-shadow:var(--shadow);
    transition:transform .3s ease, box-shadow .3s ease;
  }
  .category img{
    width:100%;height:220px;object-fit:cover;
    filter:brightness(60%);
    transition:filter .3s ease, transform .3s ease;
  }
  .category span{
    position:absolute;inset:0;display:flex;align-items:center;justify-content:center;
    font-size:22px;font-weight:700;color:#fff;text-shadow:0 2px 6px rgba(0,0,0,.7);
  }
  .category:hover{transform:translateY(-6px);box-shadow:0 12px 30px rgba(0,0,0,.4)}
  .category:hover img{filter:brightness(80%);transform:scale(1.05)}

  

  .card-title{margin:6px 0 0;font-size:15px}
  .muted{color:white;font-size:12px}

  .p.txt{
    text-align: right;
    font-weight: bold;
    margin: 10px;
    background-color: #17212c;
    padding: 10px;
    border-radius: 7px;
  }
  .ar{
    display: block;
    width: 80%;
    margin: 10px auto;
    padding: 20px;
    border-radius: 8px;
    font-size: 14px;
    color: white;
    text-align: center;
  }

  .ar.t{
    background-color: #2a7ade;
  }
  .ar.w{
    background-color: green;
  }
  .ar.c{
    background-color: #17212c;
  }
  /* Modal */
  .modal{position:fixed;inset:0;background:rgba(0,0,0,.6);display:none;justify-content:center;align-items:center;z-index:200}
  .modal p{
    background-color: 17212c;padding: 10px;margin: 10px 10px;border-radius: 8px;
    width: 80%;color: white;font-weight: bold;
  }
  .modal .b{
    background-color: red;
  }
  .modal.open{display:flex}
  .modal-content{background:var(--card);padding:20px;border-radius:var(--radius);width:80%;max-width:400px;box-shadow:var(--shadow);text-align:center;position:relative}
  .modal-content h3{margin-top:0}
  .close{cursor:pointer;color:var(--accent);font-weight:bold;font-size:18px;position:absolute;inset-inline-start:12px;top:12px}

  /* Features */
  .features{display:flex;gap:12px;flex-wrap:wrap}
  .feature{flex:1;min-width:120px;background:#17212c;padding:14px;border-radius:12px;text-align:center}

  /* WhatsApp floating */
  .whatsapp-float{position:fixed;bottom:20px;left:20px;background:#25d366;color:#fff;width:56px;height:56px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:28px;box-shadow:var(--shadow);z-index:300;cursor:pointer}
  .whatsapp-float:focus{outline:2px solid #fff3}
  .no-scroll{overflow:hidden}
  a{color:#8fb9ff;text-decoration:none}
  a:hover{text-decoration:none}

  .tt{
    text-align: center;
  }
  .tt p{
    font-weight: bold;
    background-color: #363839;
    padding: 20px;
    margin: 10px;
    border-radius: 7px;
  }
  .tt a{
    color: rgb(255, 230, 0);
    margin-top: 10px;
  }