body
{
    position: relative  ;
}
.po
{
    background-color: white;
    width: 1068px;
    height: 450px;
    margin-top: 160px;
    margin-left: 10%;
}

.img1
{
    width: 400px;
    height: 442px;
    margin-left: 0px;
    position: absolute;
    top: -25px;
    left: 13%;
    box-shadow: 9px 1px 20px 1px black;
    border: none;
}  


@font-face 
{
  font-family: as;
  src: url(../font/1.ttf);
}
@font-face 
{
  font-family: as1;
  src: url(../font/12.otf);
}

.po h1 
{
    font-family: as;
    position: absolute;
    left: 46%;
    top: 4%;
    text-shadow: 9px 6px 8px rgb(95, 95, 95);
    border-bottom:1px solid rgb(19, 18, 18) ;
}
.po .prag
{
    position: absolute;
    left: 48%;
    top: -35%;
    width: 522px;
}
.main{
    width: 100%;
    height: 500PX;
}
.prag .nn{
    font-family: as1;
    font-size: 10px;
    letter-spacing: 2px;
}

.center1{
    display: flex;
    justify-content: center;
    align-items: center;
}
.box{
    flex-direction: column;
    background: white;
    position: relative;
    transition: all .4s;
    overflow: hidden;
    border-radius: 15px;
    padding-left:25px ;
    font-size: 1.2rem;
    top: 635px;
    left: -30px;
}
.box:hover{
    color: white;
}
.box::before{
    content: '';
    position: absolute;
    left: 1px;
    width: 5px;
    height: 150px;
    border-radius: 50px;
    transition: all .4s;
    background: linear-gradient(147deg,#3975f7 0%,#1523a0 74%);
}

.box:hover::before{
    top: 0;
    left: 0;
    border-radius: 0px;
    width: 100%;
    height: 100%;
}

.box .nn{
    margin: 5px 50px;
    z-index: 1000;
}

iframe
{
    margin-top: 50px;
    margin-left: 40px;
    width: 1250px;
    height: 600px;
}



    /* تقدر تنقل الجزء ده لملف SHOW.css لو حابب */
    .player-wrap {
      width: 100%;
      display: flex;
      justify-content: center; /* يوسّط أفقياً */
      margin: 30px 0;
    }
    .player {
      width: 80%;
      max-width: 1200px;
      aspect-ratio: 16 / 9;         /* يحافظ على النسبة */
      background: #000;             /* خلفية لو الفيديو لسه بيحمل */
      border-radius: 20px;          /* الكيرف */
      overflow: hidden;             /* يطبّق الكيرف على الفيديو */
      box-shadow: 0 8px 28px rgba(0,0,0,.35);
    }
    .player video {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;            /* يملأ الإطار باحترام النسبة */
    }

    /* موبايل */
    @media (max-width: 768px) {
      .player { width: 94%; border-radius: 14px; }
    }
 