/* ___________________________________________________________________________________________________________________________________________________ */
/* _____________________________________________________________________ START shop1.css ______________________________________________________________ */
/* ___________________________________________________________________________________________________________________________________________________ */

/* * { margin: 0; padding: 0;box-sizing: border-box; } */
.cont {
    /*
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;*/
  display: grid;
  grid-template-columns: auto auto auto;
  grid-gap: 10px;
  padding: 10px;
}

.prod {
    background-color: #ff69b4; /* اللون الوردي */
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    
}

.prod:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.prod a {
    display: block;
    text-decoration: none;
    color: inherit;
    text-align: center;
}

.prod img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.pt {
    margin: 0;
    padding: 15px 10px;
    font-family: Arial, sans-serif;
    font-size: 1.2em;
    font-weight: bold;
    color: white;
    background-color: rgba(0, 0, 0, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* تحسينات للشاشات الصغيرة */
@media (max-width: 768px) {
    .cont {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
        padding: 15px;
    }
    
    .pt {
        font-size: 1em;
        padding: 12px 8px;
    }
}

@media (max-width: 480px) {
    .cont {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 10px;
    }
    
    .prod {
        border-radius: 8px;
    }
    
    .pt {
        font-size: 0.9em;
        padding: 10px 5px;
    }
}

/* تحسينات إضافية للشاشات الكبيرة */
@media (min-width: 1200px) {
    .cont {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}
/* &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& */
/* &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& */
/* &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& */

.contp {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(265px, 1fr)); 
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .prodp {
            background-color: #ff69b4; /* لون وردي للعناصر */
            border-radius: 15px;
            padding: 15px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .prodp:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }

        .prodp a {
            text-decoration: none;
            color: white;
            display: block;
        }

        .prodp img {
            width: 100%;
            height: auto;
            max-width: 300px;
            border-radius: 10px;
            object-fit: cover;
        }

        .itempt {
            font-size: 1.5em;
            font-weight: bold;
            margin: 10px 0 5px 0;
            color: blue;
        }

       .disc {
            font-size: 18px/* 1em */;
            margin: 5px 0;
            color: yellow/*#fff*/;
            opacity: 0.9;
        }

        .price {
            font-size: 1.3em;
            font-weight: bold;
            margin: 10px 0;
            color: green;
        }

        .price del {
            color: red;
            margin-right: 10px;
            opacity: 0.8;
        }

        /* تحسينات للشاشات الصغيرة */
        @media (max-width: 768px) {
            .contp {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 15px;
                padding: 10px;
            }
            
            .prodp {
                padding: 10px;
            }
            
            .itempt {
                font-size: 1.3em;
            }
            
            .price {
                font-size: 1.1em;
            }
        }

        @media (max-width: 480px) {
            /* body { padding: 10px;} */
            
            .contp {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            
            .prodp img {
                max-width: 250px;
            }
        }
 
/* ___________________________________________________________________________________________________________________________________________________ */
/* _____________________________________________________________________ END shop1.css ______________________________________________________________ */
/* ___________________________________________________________________________________________________________________________________________________ */


/* ___________________________________________________________________________________________________________________________________________________ */
/* _____________________________________________________________________ START article1.css ______________________________________________________________ */
/* ___________________________________________________________________________________________________________________________________________________ */
.middle2{ margin-bottom:250px; }
.one{font-size:30px;}

/* ___________________________________________________________________________________________________________________________________________________ */
/* _____________________________________________________________________ END article1.css ______________________________________________________________ */
/* ___________________________________________________________________________________________________________________________________________________ */



/* ___________________________________________________________________________________________________________________________________________________ */
/* _____________________________________________________________________ START Cam_Girls.css ______________________________________________________________ */
/* ___________________________________________________________________________________________________________________________________________________ */

.Girl_count {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .girl-card {
            background: #ff91af;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .girl-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .girl-card a {
            text-decoration: none;
            color: inherit;
            display: block;
            height: 100%;
        }

        .girl-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }

        .PG {
            padding: 15px;
            text-align: center;
            font-weight: bold;
            font-size: 16px;
            color: #333;
            background: #ff91af;
            margin: 0;
        }

        /* تحسينات للشاشات الصغيرة */
        @media (max-width: 768px) {
            .Girl_count {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 15px;
            }
            
            .girl-card img {
                height: 180px;
            }
            
            .PG {
                font-size: 14px;
                padding: 12px;
            }
        }

        @media (max-width: 480px) {
            /* body { padding: 10px; } */
            
            .Girl_count {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            
            .girl-card img {
                height: 160px;
            }
            
            .PG {
                font-size: 14px;
                padding: 10px;
            }
        }

        /* تحسينات للشاشات الكبيرة */
        @media (min-width: 1200px) {
            .Girl_count {
                grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            }
            
            .girl-card img {
                height: 220px;
            }
        }
.middleG{ margin-bottom:250px; }
/* ___________________________________________________________________________________________________________________________________________________ */
/* _____________________________________________________________________ END Cam_Girls.css ______________________________________________________________ */
/* ___________________________________________________________________________________________________________________________________________________ */


/* ___________________________________________________________________________________________________________________________________________________ */
/* _____________________________________________________________________ START blog1.css ______________________________________________________________ */
/* ___________________________________________________________________________________________________________________________________________________ */

.ContB {
            background-color: ;
            border-radius: 10px;
            /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); */
            padding: 30px;
            margin-bottom: 30px;
        }
        
        /* Typography */
        .Pelement {
            font-size: 1.1rem;
            margin-bottom: 15px;
            padding: 12px 15px;
            background-color: black;
            border-left: 4px solid  #4a6ee0 ;
            border-radius: 4px;
            line-height: 1.7;
			color :yellow;
        }
        
        .potitle {
            font-size: 1.8rem;
            margin: 40px 0 20px 0;
            padding-bottom: 10px;
            border-bottom: 2px solid #eaeaea;
            color: #ff91af;
        }
        
        .potitle2 {
            font-size: 1.5rem;
            margin: 30px 0 15px 0;
            color: #fae7b5;
            padding-left: 10px;
            border-left: 4px solid #3498db;
        }
        
        .PCont {
            font-size:25px /* 1.05rem */;
            line-height: 1.7;
            margin-bottom: 25px;
            text-align: justify;
            color: #89cff0;
        }
        
        /* Images */
        .Mandy {
            display: block;
            max-width: 100%;
            height: auto;
            margin: 25px auto;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        /* Section separators */
        hr.section-divider {
            border: none;
            height: 1px;
            background-color: #eaeaea;
            margin: 40px 0;
        }
        
        /* Middle div */
        .Middle {
            height: 20px;
            background: transparent;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
           /*  body {    padding: 15px; } */
            
            .ContB {
                padding: 20px;
            }
            
            .potitle {
                font-size: /* 1.6rem */ 22px;
            }
            
            .potitle2 {
                font-size: /* 1.3rem */ 22px;
            }
            
            .Pelement, .PCont {
                font-size: /* 1rem */ 22px;
            }
        }
        
        @media (max-width: 480px) {
            /*  body {    padding: 10px; } */
            
            .ContB {
                padding: 15px;
            }
            
            .potitle {
                font-size: 22px/* 1.4rem */;
            }
            
            .potitle2 {
                font-size: 22px/* 1.2rem */;
            }
            
            .Pelement {
                padding: 10px;
            }
        }
        
        /* Print styles */
        @media print {
          /*   body {
                background-color: white;
                color: black;
                font-size: 12pt;
            } */
            
            .ContB {
                box-shadow: none;
                padding: 0;
            }
            
            .Mandy {
                display: none;
            }
        }

/* ___________________________________________________________________________________________________________________________________________________ */
/* _____________________________________________________________________ END blog1.css ______________________________________________________________ */
/* ___________________________________________________________________________________________________________________________________________________ */



/* ___________________________________________________________________________________________________________________________________________________ */
/* _____________________________________________________________________ START My_Blog.css ______________________________________________________________ */
/* ___________________________________________________________________________________________________________________________________________________ */


<!--
.My_Blog { background-color: black; text-align:left;border-radius:30px; }

.Tblog1 {text-align:center; font-size:23px; color:#ff91af;}

.Div_Blog {}

.Blog_Img{}

.Atext_Blog{}

.Ptext_Blog{}

.Ptext_Reading{font-size:20px; color:RED;text-align:center;}
-->
/* الحاوية الرئيسية */
.My_Blog{
    width:100%;
    max-width:900px;
	padding-top:10px;
	padding-bottom:10px;
}

/* كارت المقال */
.Div_Blog{
    background:#1c1c1c;
    border-radius:20px;
    overflow:hidden;
    text-align:center;
    box-shadow:0 0 25px rgba(0,0,0,0.5);
    transition:0.3s;
	margin:30px;
	
}

.Div_Blog:hover{
    transform:translateY(-5px);
    box-shadow:0 0 35px rgba(255,255,255,0.15);
}

/* العنوان */
.Tblog1{
    color:#ffffff;
    font-size:32px;
    padding:20px 15px;
    line-height:1.6;
    background:#222;
	
	
}

/* الصورة */
.Blog_Img{
    width:100%;
    max-width:100%;
    height:auto;
    display:block;
    margin:auto;
    object-fit:cover;
}

/* الرابط */
.Atext_Blog{
    text-decoration:none;
    display:block;
    padding:25px;
}

/* النص */
.Ptext_Blog{
    color:#f5f5f5;
    font-size:20px;
    line-height:2;
    text-align:center;
    margin-bottom:25px;
    word-wrap:break-word;
}

/* زر القراءة */
.Ptext_Reading{
    display:inline-block;
    background:#ff9800;
    color:#fff;
    font-size:18px;
    font-weight:bold;
    padding:14px 30px;
    border-radius:50px;
    transition:0.3s;
}

.Ptext_Reading:hover{
    background:#ffb74d;
    transform:scale(1.05);
}

/* التابلت */
@media (max-width:768px){

    .Tblog1{
        font-size:26px;
    }

    .Ptext_Blog{
        font-size:18px;
        line-height:1.9;
    }

    .Ptext_Reading{
        font-size:16px;
        padding:12px 24px;
    }
}

/* الموبايل */
@media (max-width:480px){

   /* body{ padding:10px; } */

    .Div_Blog{
        border-radius:15px;
    }

    .Tblog1{
        font-size:22px;
        padding:20px 10px;
    }

    .Atext_Blog{
        padding:18px;
    }

    .Ptext_Blog{
        font-size:16px;
        line-height:1.8;
    }

    .Ptext_Reading{
        width:100%;
        font-size:15px;
        padding:12px 0;
    }
}
.My_Blog_Midle {}
.My_Blog_Midle_Ads{border-radius:30px;}

/* ___________________________________________________________________________________________________________________________________________________ */
/* _____________________________________________________________________ END My_Blog.css ______________________________________________________________ */
/* ___________________________________________________________________________________________________________________________________________________ */


/* ___________________________________________________________________________________________________________________________________________________ */
/* _____________________________________________________________________ START GIFS.css ______________________________________________________________ */
/* ___________________________________________________________________________________________________________________________________________________ */

/* =========================
   الحاوية الرئيسية
========================= */
.counter_Gifs{
    width:100%;
    padding:40px 15px;
    background:#101010;
    font-family:Arial, Helvetica, sans-serif;
    border-radius:40px;

}

/* =========================
   الجريد
========================= */
.group1{
    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
}
.counter_Midlle{
border-radius:40px;
padding:20px 20px ;
margin:20px 20px ;
}

.My_GIFS_Midlle_Ads{
border-radius:20px;
}

/* =========================
   العنوان
========================= */
.dpg1{
    grid-column:1/-1;

    color:#ffffff;
    text-align:center;

    font-size:34px;
    font-weight:800;
    line-height:1.6;

    margin-bottom:10px;

    letter-spacing:1px;
    word-break:break-word;

    text-shadow:0 2px 8px rgba(0,0,0,0.5);
}

/* =========================
   الكارد
========================= */
.dgi1{
    background:#1b1b1b;

    border-radius:18px;
    overflow:hidden;

    border:1px solid rgba(255,255,255,0.08);

    transition:0.35s ease;

    box-shadow:
    0 5px 15px rgba(0,0,0,0.25);
}

/* Hover */
.dgi1:hover{
    transform:translateY(-8px);

    box-shadow:
    0 15px 30px rgba(0,0,0,0.45);
}

/* =========================
   الرابط
========================= */
.dgi1 a{
    text-decoration:none;
    color:#f5f5f5;

    display:flex;
    flex-direction:column;

    height:100%;
}

/* =========================
   الصورة
========================= */
.dgi1 img{
    width:100%;
    height:auto;

    display:block;

    aspect-ratio:16/9;
    object-fit:cover;

    transition:0.4s ease;
}

/* تأثير الصورة */
.dgi1:hover img{
    transform:scale(1.05);
}

/* =========================
   النص
========================= */
.dgi1 a{
    font-size:17px;
    font-weight:600;
    line-height:1.8;

    text-align:center;
    word-break:break-word;
}

/* تغليف النص */
.dgi1 a{
    padding-bottom:20px;
}

/* مساحة النص */
.dgi1 a{
    gap:15px;
}

/* Padding داخلي */
.dgi1 a{
    padding-inline:15px;
}

/* =========================
   تحسينات التابلت
========================= */
@media (max-width:768px){

    .counter_Gifs{
        padding:25px 10px;
    }

    .dpg1{
        font-size:26px;
    }

    .group1{
        gap:20px;
    }

    .dgi1 a{
        font-size:15px;
        line-height:1.7;
    }
}

/* =========================
   الموبايل
========================= */
@media (max-width:480px){

    .group1{
        grid-template-columns:1fr;
    }

    .dpg1{
        font-size:22px;
    }

    .dgi1{
        border-radius:14px;
    }
}

/* ___________________________________________________________________________________________________________________________________________________ */
/* _____________________________________________________________________ END GIFS.css ______________________________________________________________ */
/* ___________________________________________________________________________________________________________________________________________________ */


/* ___________________________________________________________________________________________________________________________________________________ */
/* _____________________________________________________________________ START Reviews.css ______________________________________________________________ */
/* ___________________________________________________________________________________________________________________________________________________ */

/*=================================
  إعدادات عامة
=================================*/

/*=================================
  الحاوية الرئيسية
=================================*/
.Rev1{
    width:100%;
    max-width:1600px;

    margin:auto;

    padding:20px;
}

/*=================================
  العنوان الرئيسي
=================================*/
.summaryp1{

    cursor:pointer;

    padding:18px 24px;

    font-size:1.4rem;
    font-weight:700;
    text-align:center;

    color:#ff91af;

    border-radius:24px;

    background:
    rgba(255,255,255,0.08);

    border:
    1px solid rgba(255,255,255,0.10);

    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);

    transition:0.35s ease;
}

.summaryp1:hover{
    background:
    rgba(255,255,255,0.14);
}

.summaryp1::-webkit-details-marker{
    display:none;
}

/*=================================
  الشبكة
=================================*/
.DPRev1{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

    gap:28px;

    margin-top:28px;
}

/*=================================
  الكارت
=================================*/
.Rev-If{

    overflow:hidden;

    border-radius:26px;

    background:
    rgba(255,255,255,0.06);

    border:
    1px solid rgba(255,255,255,0.10);

    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);

    box-shadow:
    0 10px 30px rgba(0,0,0,0.25);

    transition:0.35s ease;
}

.Rev-If:hover{

    transform:translateY(-8px);

    box-shadow:
    0 14px 35px rgba(0,0,0,0.35);
}

/*=================================
  الصورة
=================================*/
.Rev-If-img{

    width:100%;

    height:250px;

    object-fit:cover;

    display:block;

    border-bottom:
    1px solid rgba(255,255,255,0.08);
}

/*=================================
  النص والرابط
=================================*/
.imgpt1{
    
    padding:20px;

    text-align:center;
	
}

.alink1{

    text-decoration:none;

    color:/*#ffffff*/#fb607f;

    font-size:1.2rem;
    font-weight:700;

    display:flex;
    flex-direction:column;
    align-items:center;

    gap:10px;

    transition:0.3s ease;
}

.alink1:hover{
    color:#38bdf8;
}

/*=================================
  الأيقونة
=================================*/
.svglink{

    width:20px;
    height:30px;

    fill:currentColor;
}

/*=================================
  صندوق التفاصيل
=================================*/
.details-scroll{

    margin:0 18px 20px;

    overflow:hidden;

    border-radius:20px;

    background:
    rgba(255,255,255,0.04);

    border:
    1px solid rgba(255,255,255,0.08);
}

/*=================================
  زر التفاصيل
=================================*/
.summaryp{

    cursor:pointer;

    padding:16px 18px;

    color:#ff4500 /*#ffffff*/;
    text-align:center;
    font-size:1rem;
    font-weight:700;

    background:
    rgba(255,255,255,0.08);

    transition:0.3s ease;
}

.summaryp:hover{
    background:
    rgba(255,255,255,0.14);
}

.summaryp::-webkit-details-marker{
    display:none;
}

/*=================================
  محتوى التفاصيل
=================================*/
.details-content{
margin-top:15px;
  padding:16px;
  border-radius:14px;
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.07);
  color:#ddd;
  font-size:14px;
  line-height:1.9;
  overflow-wrap:break-word;
  max-height:280px;
  overflow-y:auto;
}
/* Scrollbar */
.details-content::-webkit-scrollbar{
  width:7px;
}

.details-content::-webkit-scrollbar-track{
  background:transparent;
}

.details-content::-webkit-scrollbar-thumb{
  background:rgba(255,255,255,0.18);
  border-radius:20px;
}
.P-details-content{font-size:22px;}

/*=================================
  div الخاص بالنص
=================================*/




/*=================================
  السكرول
=================================*/
::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-track{
    background:rgba(255,255,255,0.05);
}

::-webkit-scrollbar-thumb{
    background:#38bdf8;
    border-radius:20px;
}

/*=================================
  التابلت
=================================*/
@media (max-width:992px){

   .DPRev1{
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  }
}

/*=================================
  الهواتف
=================================*/
@media (max-width:768px){

    .Rev1{
        padding:14px;
    }

    .summaryp1{

        font-size:1.1rem;

        padding:16px;
    }

    .Rev-If{
        border-radius:22px;
    }

    .Rev-If-img{
        height:210px;
    }

    .alink1{
        font-size:1rem;
    }

  

    
}

/*=================================
  الشاشات الصغيرة
=================================*/
@media (max-width:480px){

    .DPRev1{
        gap:18px;
    }

    .summaryp1{
        font-size:1rem;
    }

    .Rev-If-img{
        height:190px;
    }

  

   
}
.Ads_Midlle_Details{
border-radius:40px;
padding:20px 20px ;
margin:20px 20px ;
}
.My_GIFS_Midlle_Ads_Details{
	border-radius:20px;

}
/* ___________________________________________________________________________________________________________________________________________________ */
/* _____________________________________________________________________ END Reviews.css ______________________________________________________________ */
/* ___________________________________________________________________________________________________________________________________________________ */


/* ___________________________________________________________________________________________________________________________________________________ */
/* _____________________________________________________________________ START Embedded_pages.css ______________________________________________________________ */
/* ___________________________________________________________________________________________________________________________________________________ */

/* الحاوية الرئيسية */
.civ {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* توسيط العناصر */
    gap: 20px; /* مسافة بين العناصر */
    padding: 20px;
    box-sizing: border-box;
}

/* العنصر الداخلي */
.civ1 {
    flex: 1 1 280px; /* ينمو وينكمش مع عرض لا يقل عن 280px */
    max-width: 100%;
    text-align: center;
    background: transparent; /* خلفية شفافة */
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.civ1:hover {
    transform: scale(1.02); /* تأثير بسيط عند المرور */
}

/* الرابط */
.a-civ1 {
    display: block;
    text-decoration: none;
	font-size:22px;
}

/* الصورة */
.img-civ1 {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px 12px 0 0;
}

/* النص */
.p-civ1 {
    background: transparent; /* خلفية شفافة */
    color: #ffffff; /* لون نص واضح (أبيض) */
    font-size: 1.2rem;
    font-weight: bold; /* خط بارز */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); /* ظل للنص لتحسين القراءة على أي خلفية */
    padding: 12px;
    margin: 0;
    line-height: 1.5;
    text-align: center;
    word-wrap: break-word; /* كسر الكلمات الطويلة */
}

/* تحسين للشاشات الصغيرة جدًا (أقل من 480px) */
@media (max-width: 480px) {
    .p-civ1 {
        font-size: 1rem;
        padding: 8px;
    }
    
    .civ {
        gap: 15px;
        padding: 10px;
    }
}
.Ads-Under-Imgpage{
	margin-left:50px;
	width:750px;
	border-radius:40px;
	margin-top:50px;} 
.My-Ads-Under-Imgpage{
	border-radius:20px;}
/* ___________________________________________________________________________________________________________________________________________________ */
/* _____________________________________________________________________ END Embedded_pages.css ______________________________________________________________ */
/* ___________________________________________________________________________________________________________________________________________________ */

/* ___________________________________________________________________________________________________________________________________________________ */
/* _____________________________________________________________________ START Category_View_Embedded.css ______________________________________________________________ */
/* ___________________________________________________________________________________________________________________________________________________ */
/* الحاوية الرئيسية */
.dcve{
    width:100%;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:20px;
    padding:20px;
    box-sizing:border-box;
    background:transparent;
}

/* كل عنصر */
.dimgvid{
    background:rgba(255,255,255,0.05);
    border-radius:18px;
    overflow:hidden;
    transition:0.3s ease;
    backdrop-filter:blur(4px);
}

/* تأثير عند المرور */
.dimgvid:hover{
    transform:translateY(-5px);
    background:rgba(255,255,255,0.09);
}

/* رابط الصورة */
.alinkvid{
    display:block;
    width:100%;
}

/* الصورة */
.imgvid{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
    border-radius:18px 18px 0 0;
}

/* العنوان */
.titlevid{
    margin:0;
    padding:16px;
    text-align:center;
    background:transparent;
}

/* رابط العنوان */
.titlevid a{
    text-decoration:none;
    color:#ffffff;
    font-size:clamp(18px,2vw,26px);
    font-weight:700;
    line-height:1.5;
    word-break:break-word;
    transition:0.3s ease;
}

/* تأثير على النص */
.titlevid a:hover{
    color:#00cfff;
}

/* شاشات صغيرة جداً */
@media (max-width:480px){

    .dcve{
        gap:15px;
        padding:12px;
    }

    .imgvid{
        height:190px;
    }

    .titlevid{
        padding:12px;
    }

}
.Ads-Under-Img{
border-radius:40px;
padding:20px 20px ;
margin:20px 20px ;
}
.My-Ads-Under-Img{
	border-radius:20px;
}


/* ___________________________________________________________________________________________________________________________________________________ */
/* _____________________________________________________________________ END Category_View_Embedded.css ______________________________________________________________ */
/* ___________________________________________________________________________________________________________________________________________________ */


/* ___________________________________________________________________________________________________________________________________________________ */
/* _____________________________________________________________________ START Video_View_Embedded.css ______________________________________________________________ */
/* ___________________________________________________________________________________________________________________________________________________ */
/* الحاوية الرئيسية */
.EP{
    width: 100%;
    max-width: 1000px;
    margin: auto;
    padding: 15px;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* الفيديو Responsive */
.video-container{
    position: relative;
    width: 100%; 
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 14px;
    background: #000;
}

.video-container iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* عنوان الفيديو */
.Title_video{
	margin-top: 18px;
    font-size: 26px;
    font-weight: bold;
    line-height: 1.6;
    color: #fff;
    word-break: break-word;
}

/* الوصف */
.description{
    margin-top: 20px;
    padding: 18px;
    background: #1c1c1c;
    border-radius: 12px;
    color: #ccc;
    line-height: 1.9;
    font-size: 22px;
    word-break: break-word;
}

/* عنوان الوصف */
.P-descr{
    display: inline-block;
    margin-bottom: 12px;
    font-size: 30px;
    font-weight: bold;
    color: #fff;
}
/* تابلت */
@media (max-width: 768px){

    .EP{
        padding: 12px;
    }

    .Title_video{
        font-size: 21px;
    }

    .description{
        font-size: 15px;
        padding: 15px;
    }

    .P-descr{
        font-size: 18px;
    }
	
	

}

/* موبايل */
@media (max-width: 480px){

    .Title_video{
        font-size: 18px;
        line-height: 1.5;
    }

    .description{
        font-size: 14px;
        line-height: 1.8;
        padding: 14px;
    }

    .P-descr{
        font-size: 17px;
    }

    

}
.Ads-Under-Iframe{
border-radius:40px;
}
.My-Ads-Under-Iframe{
border-radius:20px;
}
/*&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&*/
.p-categs0{
    display: inline-block;
    margin: 10px 8px 10px 0;
    font-size: 25px;
    font-weight: bold;
    color: #c1cdcd;
}

.a-p-categs0{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    margin: 6px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: #f5f5f5;
    color: #222;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
    word-break: break-word;
}

.a-p-categs0:hover{
    background: #222;
    color: #fff;
    border-color: #222;
}


@media (max-width: 768px){
    .a-p-categs0{
        padding: 7px 12px;
        font-size: 14px;
    }

    .p-categs0{
        display: block;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px){
    .a-p-categs0{
        display: flex;
        width: 100%;
        box-sizing: border-box;
        margin: 5px 0;
    }
}
/* ___________________________________________________________________________________________________________________________________________________ */
/* _____________________________________________________________________ END Video_View_Embedded.css ______________________________________________________________ */
/* ___________________________________________________________________________________________________________________________________________________ */


/* ----------------------------------------------------------------------------- */
/* START  */

/* END */








/*
<link rel="stylesheet" href="https://aboodbre.github.io/Licking_Assholes/shop1.css">
<link rel="stylesheet" href="https://aboodbre.github.io/Licking_Assholes/article1.css">
<link rel="stylesheet" href="https://aboodbre.github.io/Licking_Assholes/Cam_Girls.css">
<link rel="stylesheet" href="https://aboodbre.github.io/Licking_Assholes/blog1.css">
<link rel="stylesheet" href="https://aboodbre.github.io/Licking_Assholes/My_Blog.css">
<link rel="stylesheet" href="https://aboodbre.github.io/Licking_Assholes/GIFS.css">
<link rel="stylesheet" href="https://aboodbre.github.io/Licking_Assholes/Reviews.css">
<link rel="stylesheet" href="https://aboodbre.github.io/Licking_Assholes/Embedded_pages.css">
<link rel="stylesheet" href="https://aboodbre.github.io/Licking_Assholes/Category_View_Embedded.css">
<link rel="stylesheet" href="https://aboodbre.github.io/Licking_Assholes/Video_View_Embedded.css">

Page_View_Embedded.css
Video_View_Embedded.css
*/
