﻿
html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.media-thumb {
    position: relative;
    display: inline-block;
}

    .media-thumb .play-badge {
        position: absolute;
        right: 8px;
        bottom: 8px;
        background: rgba(0,0,0,.6);
        color: #fff;
        font-size: 12px;
        line-height: 1;
        padding: 6px 8px;
        border-radius: 6px;
        pointer-events: none;
    }

.video-poster-wrap {
    position: relative;
    display: block;
}

.cover-play-overlay {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 0;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    background: rgba(0,0,0,.55);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: grid;
    place-items: center;
}

    .cover-play-overlay:hover {
        background: rgba(0,0,0,.75);
    }


.categorycard {
    /* حجم مرن: خليه مربع دايمًا */
    width: 100%;
    margin:5px;
    aspect-ratio: 1 / 1; /* يخليه دايرة مش بيضاوي */
    border: 15px solid #F3E9DC;
    border-radius: 50%;
    overflow: hidden; /* يخبي أي زيادة برة الدايرة */
    position: relative;
    background: #f7f7f7;


}

    .categorycard img {
        width: 100%;
        height: 100%;
        display: block;
        padding:5px;
        object-fit: cover; /* قصّ كويس */
        object-position: center; /* وسط الصورة */
    }

    /* لمسة لطيفة اختيارية */
    .categorycard:hover img {
        transform: scale(1.03);
        transition: transform .25s ease;
    }