/* =========================
   ШАПКА
   ========================= */
.header { 
    width: 101%;
    height: 90px;
    background-image: url("header-base6.png");
    background-size: cover;
    background-position: 68% 22%;
    background-repeat: no-repeat;
    display: flex;
    position: relative;
    z-index: 9999;
}


.container {
    width: 1400px;
    height: 100%;
    margin: 0 auto;
    padding: 0 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

  .logo img {
    height: 90px;
    width: auto;
    margin-left: 20px;
}

.menu { 
    display: flex;
    gap: 40px;
}
.menu a {
    font-family: "Afacad Flux";
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    padding: 10px 10px;
}

.playlist-button {
    font-family: "Afacad Flux";
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    padding: 10px 10px;
    border: transparent;
    background: transparent;
    cursor: pointer;
}

.gallery-button {
    font-family: "Afacad Flux";
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    padding: 10px 10px;
    border: transparent;
    background: transparent;
    cursor: pointer;
}

.menu img {
    width: 20px;
}


main {
    width: 100%;
    min-height: 100vh;
    background-color: #F6F6F6; 
}

.header-right {
    display: flex;
    align-items: center;
    position: relative;
    gap: 25px;
    margin-right: 40px;

    color: #ffffff;
    text-decoration: none;

    font-family: "Afacad Flux";
    font-size: 20px;
}

.header-right a {
    text-decoration: none;
    color: white;
    margin-left: 10px;
}

.theme-btn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    gap: 10px;
}

.notification-button {
    position: relative;
    display: grid;
    width: 30px;
    height: 30px;
    padding: 0;
    place-items: center;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.notification-button img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -7px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    box-sizing: border-box;
    border-radius: 10px;
    background-color: #d85f69;
    color: #ffffff;
    font-family: "Afacad Flux", sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
}

.notification-button:hover { opacity: 0.78; }

.notification-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 1000;
    display: none;
    width: min(340px, calc(100vw - 32px));
    max-height: 360px;
    overflow-y: auto;
    padding: 14px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: 0 5px 18px rgba(36, 36, 36, 0.14);
    color: #424242;
    font-family: "Afacad Flux", sans-serif;
    text-align: left;
}

.notification-panel.is-open { display: block; }
.notification-panel h3 { margin: 0 0 10px; font-size: 18px; }
.notification-empty { margin: 0; color: #999999; font-size: 14px; }
.notification-item { padding: 9px 0; border-top: 1px solid #eeeeee; font-size: 14px; line-height: 1.35; }
.notification-item:first-of-type { border-top: 0; }
.notification-item time { display: block; margin-top: 3px; color: #999999; font-size: 12px; }

.logout {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 20px;
    font-family: "Afacad Flux";
    white-space: nowrap;
    background: transparent;
    border: transparent;
    cursor: pointer;
}
body {
    margin: 0;
    overflow-x: hidden;
    background-color: #ffffff;
    font-family: Arial, sans-serif;
}

html {
    scrollbar-color: #CACACA transparent;
    scrollbar-width: thin;
}

html::-webkit-scrollbar {
    width: 8px;
}

html::-webkit-scrollbar-track {
    background: transparent;
}

html::-webkit-scrollbar-button,
body::-webkit-scrollbar-button,
*::-webkit-scrollbar-button,
html::-webkit-scrollbar-button:single-button,
body::-webkit-scrollbar-button:single-button,
*::-webkit-scrollbar-button:single-button {
    display: none;
    width: 0;
    height: 0;
    background: transparent;
}

html::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background: #CACACA;
}

.gallery-page {
    width: min(1200px, calc(100% - 48px));
    margin: 48px auto;
}

.gallery-heading-text {
    margin: 0 0 28px;
    font-family: "Afacad Flux", sans-serif;
    font-size: 30px;
    color: #8c8c8c;
    text-align: center;
    font-weight: 300;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.gallery-thumbnail {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.08);
}

.gallery-thumbnail:not(.gallery-upload)::after {
    content: none;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 10px 14px;
    transform: translateY(100%);
    transition: transform 0.2s ease;
    background-color: rgba(255, 255, 255, 0.94);
    color: #333333;
    font-family: "Afacad Flux", sans-serif;
    font-size: 17px;
}

.gallery-thumbnail:not(.gallery-upload):hover::after {
    transform: translateY(0);
}

.gallery-artist-name {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 10px 14px;
    transform: translateY(100%);
    transition: transform 0.2s ease;
    background-color: rgba(255, 255, 255, 0.94);
    color: #333333;
    font-family: "Afacad Flux", sans-serif;
    font-size: 17px;
}

.gallery-thumbnail:not(.gallery-upload):hover .gallery-artist-name {
    transform: translateY(0);
}

.gallery-upload {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    color: #777777;
    cursor: pointer;
    font-family: "Afacad Flux", sans-serif;
    font-size: 18px;
}

.gallery-upload:hover {
    color: #438b8f;
}

.gallery-upload-icon {
    font-size: 36px;
    font-weight: 300;
    line-height: 1;
}

.gallery-upload-input {
    display: none;
}

.gallery-thumbnail:not(.gallery-upload) {
    cursor: pointer;
}

.gallery-delete-button {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
    width: 30px;
    height: 30px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background-color: rgba(36, 36, 36, 0.78);
    color: #ffffff;
    cursor: pointer;
    font-size: 24px;
    line-height: 28px;
}

.gallery-delete-button:hover {
    background-color: #b04f56;
}

.gallery-delete-overlay {
    position: fixed;
    inset: 0;
    z-index: 100001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background-color: rgba(0, 0, 0, 0.45);
}

.gallery-delete-overlay[hidden] {
    display: none;
}

.gallery-delete-modal {
    width: min(100%, 420px);
    padding: 28px;
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    font-family: "Afacad Flux", sans-serif;
    text-align: center;
}

.gallery-delete-modal h2 {
    margin: 0 0 8px;
    color: #333333;
    font-size: 26px;
}

.gallery-delete-modal p {
    margin: 0;
    color: #777777;
    font-size: 17px;
}

.gallery-delete-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.gallery-delete-actions button {
    min-width: 110px;
    padding: 10px 18px;
    border: 0;
    border-radius: 6px;
    cursor: pointer;
    font: inherit;
    font-size: 16px;
}

#gallery-delete-cancel {
    background-color: #eeeeee;
    color: #555555;
}

#gallery-delete-confirm {
    background-color: #b04f56;
    color: #ffffff;
}

.gallery-thumbnail img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.gallery-view-overlay {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background-color: rgba(0, 0, 0, 0.65);
}

.gallery-view-modal {
    position: relative;
    width: min(100%, 1100px);
    max-height: calc(100vh - 48px);
    padding: 28px 28px 28px 28px;
    border-radius: 12px;
    background-color: #ffffff;
    box-sizing: border-box;
    font-family: "Afacad Flux", sans-serif;
}

.gallery-view-scroll {
    max-height: calc(100vh - 104px);
    overflow-y: auto;
    scrollbar-width: none;
}

.gallery-view-scroll::-webkit-scrollbar {
    display: none;
}

.gallery-scrollbar {
    position: absolute;
    top: 28px;
    right: -16px;
    bottom: 28px;
    width: 8px;
    border-radius: 8px;
    background-color: transparent;
}

.gallery-scrollbar-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    min-height: 44px;
    border-radius: 8px;
    background-color: #CACACA;
    cursor: grab;
}

.gallery-scrollbar-thumb:active {
    cursor: grabbing;
}

.gallery-view-close {
    position: absolute;
    top: 10px;
    right: 16px;
    border: none;
    background: transparent;
    color: #707070;
    cursor: pointer;
    font-size: 34px;
    line-height: 1;
}

.gallery-view-image {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 18px 0 26px;
    border-radius: 8px;
    background-color: #ffffff;
    color: #999999;
    font-size: 20px;
}

.gallery-view-image img {
    width: auto;
    max-width: 100%;
    max-height: 900px;
    display: block;
    object-fit: contain;
}

.gallery-view-image > img + .gallery-view-artist {
    pointer-events: none;
}

.gallery-view-artist {
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 1;
    margin: 0;
    padding: 6px 10px;
    border-radius: 5px;
    background: rgba(36, 36, 36, 0.78);
    color: #ffffff;
    font-family: "Afacad Flux", sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-align: left;
}

.gallery-comments h2 {
    margin: 0 0 12px;
    color: #333333;
    font-size: 26px;
}

.gallery-comments textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #dddddd;
    border-radius: 8px;
    box-sizing: border-box;
    resize: vertical;
    font: inherit;
}

.gallery-comments form button {
    margin-top: 10px;
    padding: 10px 18px;
    border: none;
    border-radius: 7px;
    background-color: #8bc2c5;
    color: #ffffff;
    cursor: pointer;
    font: inherit;
}

.gallery-comment-list {
    margin-top: 16px;
}

.playlist-comment {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 12px;
}

.playlist-comment-reply {
    margin-left: 48px;
}

.playlist-comment-content {
    flex: 1;
    min-width: 0;
    padding: 10px 14px;
    border-radius: 8px;
    background-color: #f5f5f5;
}

.playlist-comment-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
}

.playlist-comment-header strong {
    color: #333333;
    font-size: 16px;
}

.playlist-comment-header time {
    color: #999999;
    font-size: 13px;
    white-space: nowrap;
}

.comment-delete {
    order: 3;
    margin-left: auto;
    padding: 0 0 0 8px;
    border: 0;
    background: transparent;
    color: #999999;
    cursor: pointer;
    font: inherit;
    font-size: 22px;
    line-height: 1;
}

.comment-delete:hover {
    color: #b04f56;
}

.playlist-comment-content p {
    margin: 4px 0 8px;
    color: #666666;
    font-size: 16px;
    overflow-wrap: anywhere;
}

.playlist-comment-actions {
    display: flex;
    justify-content: flex-end;
}

.comment-like {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 2px 5px;
    border: 0;
    background: transparent;
    color: #777777;
    cursor: pointer;
    font: inherit;
    font-size: 14px;
}

.comment-like span:first-child {
    font-size: 20px;
    line-height: 1;
}

.comment-like:hover,
.comment-like.is-liked {
    color: #438b8f;
}

.comment-reply {
    padding: 2px 5px;
    border: 0;
    background: transparent;
    color: #777777;
    cursor: pointer;
    font: inherit;
    font-size: 14px;
}

.comment-reply:hover {
    color: #438b8f;
}

.playlist-reply-context {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
    padding: 8px 10px;
    border-left: 3px solid #8bc2c5;
    background-color: #f5f5f5;
    color: #666666;
    font-size: 14px;
}

.playlist-reply-context[hidden] {
    display: none;
}

.playlist-reply-context button {
    padding: 0;
    border: 0;
    background: transparent;
    color: #777777;
    cursor: pointer;
    font: inherit;
}

.comments-empty {
    color: #999999;
    font-size: 15px;
}

.gallery-comment {
    margin-top: 8px;
    padding: 10px 12px;
    border-radius: 7px;
    background-color: #f5f5f5;
    color: #555555;
}

.other-comments {
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid #eeeeee;
}

.other-comments h2 {
    margin: 0 0 16px;
    color: #333333;
    font-size: 24px;
}

.other-comment {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 12px;
}

.comment-avatar {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #8bc2c5;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
}

.other-comment-content {
    flex: 1;
    padding: 10px 14px;
    border-radius: 8px;
    background-color: #f5f5f5;
}

.other-comment-content strong {
    color: #333333;
    font-size: 16px;
}

.other-comment-content p {
    margin: 4px 0 0;
    color: #666666;
    font-size: 16px;
}

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 650px) {
    .gallery-page {
        width: min(100% - 32px, 520px);
        margin-top: 32px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }
}

@media (max-width: 380px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   ОСНОВНОЙ БЛОК
   ========================= */


/* =========================
   ПРАВАЯ ЧАСТЬ
   ========================= */

 .main-content {        
    display: flex;
    min-height: 100vh;
 }


 .right {
    width: 57%;
    padding: 20px;
    
 }

 .gals {
    position: relative;
    width: 120%;
    height: auto;
    top: -70px;
    right: -20px;
    z-index: 4;
}

.white-spot {
    position: absolute;
    z-index: 3;
    height: 150px;
    width: auto;
    border: #ac1d1d;
    left: 960px;
    top: 0px;
    
}

/* =========================
   ЛЕВАЯ ЧАСТЬ
   ========================= */
 
 .left {
    width: 47%;
    padding: 20px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    margin-left: 20px;
    
 }
   /* =========================
   ЛОГОВАЯ ЧАСТЬ
   ========================= */

 .figure-drawing-playlist {
    width: 100%;
    height: 35%; 
    margin-top: 80px;
    
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-shrink: 0;
    
 }



.figure-drawing {
    position: relative;
    height: 100%;
    font-family: "Katibeh";
    font-size: 80px;
    font-weight: regular;
    letter-spacing: 0em;
    line-height: 0.5em;
    display: inline-block;
    margin-left: 30px;
    color: #3A3A3A;
    z-index: 2;
}

.PLAYLIST {
    position: relative;
    font-family: "Lalezar";
    font-size: 95px;
    display: inline-block;
    font-weight: regular;
    z-index: 1;
}


.playlist-div {
    height: 350%;
    display: flex;
    align-items: center;
    margin-top: -40px;
    margin-left: 28px;
    color: #8BC2C5;
    
}

.playlist-div img {
    position: relative;
    top: -8px;
    left: -10px;
}



.lady-logo {
    height: 50%;
    flex-shrink: 0;
    


}
.lady-logo img {
    height: 100%;
    width: auto;
    display: block;
    position: relative;
    top: 12px;
    
}



 /* =========================
   КНОПОЧНАЯ ЧАСТЬ
   ========================= */



 .GET-IT-button {
    width: 100%;
    height: 15%;
    width: 340px;
    height: 150px;
    border-radius: 30px;
    margin-left: 30px;
    margin-top: 15px;
    cursor: pointer;

 }







 
/* =========================
   КНОПКА
   ========================= */
.get-it {
    width: 320px;
    height: 95px;
    border-radius: 25px;
    border: none;
    cursor: pointer;


    
    background-image: url("BLUE.png");
    background-size: 150%;
    background-position: calc(50% + 7px) center;
    background-repeat: no-repeat;

}

.get-it span {
    font-family: "Afacad Flux";
    font-size: 35px;
    font-weight: 800;
}

.disclaimer-box {
    width: 320px;
    margin-top: 20px;
    padding: 18px 20px 20px;
    box-sizing: border-box;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0px 0px 30px rgba(226, 226, 226, 0.25);
}

.disclaimer-heading {
    margin: 0 0 12px;
    color: #5B5B5B;
    font-family: "Afacad Flux", sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
}

.content-warning {
    margin: 0;
    color: #949393;
    font-family: "Afacad Flux", sans-serif;
    font-size: 20px;
    line-height: normal;
    text-align: left;
}

.txt-white {
    color: #ffffff !important;
}

.txt-grn {
    color: #F1F5CB !important;
}




/* =========================
   ИНФО ЧАСТЬ
   ========================= */




.description {
    width: 550px;
    height: 120px;
    color : #949393;
    position: relative;
    top: -53px;
 }

.description p {
    font-family: "Afacad Flux";
    font-size: 20px;
    line-height: auto;
    margin-left: 30px;
}
.info {
    width: 90%;
    height: 11%;
    display: flex;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0px 0px 30px rgba(226, 226, 226, 0.25);
    position: relative;
    top: -20px;
    left: 20px;
}

.info > div {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 20px;
    font-family: "Afacad Flux";
    font-size: 16px;
    color: #ac1d1d;
}

.info > div[hidden] {
    display: none;
}

.top-row {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 25px;
}

.top-row img {
    width: 16px;
    height: 16px;
    margin-right: 5px;
}

.top-row span {
    color: #9b9b9b;
}

.title,
.value {
    color: #707070;
}

.subtitle {
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 5px;
    background-color: #e6e6e6;
    font-size: 12px;
    font-weight: bold;
    color: #777777;
}
/* =========================
   проверка границ
   ========================= */



/* =========================
    ------ ЧАСТЬ 2 -------
   ========================= */

.second-part {
    display: flex;
}
   
/* =========================
   ПРАВАЯ ЧАСТЬ 2
   ========================= */




 .right2 {
    display: flex;
    position: relative;
    width: 67%;
    height: auto;
  
    padding: 50px;
    
    
 }

.right2 img {

width: auto;
height: 500px;
transform: translateX(100px);
}

.img1 {
    position: relative;
    top: 250px;
}
.img2 {
    position: relative;
    top: 110px;
    left: -210px;
}
.img3 {
    position: relative;
    top: 250px;
    right: 370px;
}
/* =========================
   ЛЕВАЯ ЧАСТЬ 2
   ========================= */
 

 
   .left2 {
    width: 33%;
    padding: 20px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    margin-left: 50px;
    
    
 }

 .section2-heading {
 font-family: afacad flux;
 font-size: 30px;
 font-weight: bold;  
 color: #5B5B5B;
 position: relative;
 top: 25px; 
 }
 .section2-text {
    width: 480px;
 font-family: afacad flux;
 font-size: 20px;
 font-weight: regular;
 color: #9c9c9c; 
 line-height: 1.3;  
 }      




/* =========================
    ЧАСТЬ 3   GRID   
   ========================= */
.grid {
    display: grid;
    grid-template-columns: repeat(3,300px);
    row-gap: 10px;
    column-gap: 200px;    
    margin: 0 auto;
    position: relative;
    top: -110px;
    width: fit-content;
}

.pain {
    width: 300px;
    height: 120px;
    font-family: afacad flux;
    color: #9c9c9c;
    font-size: 20px;
    line-height: 1.2;
    margin-left: 0px;
}

.pain-heading-text {
    font-family: afacad flux;
        position: relative;
    top: -150px;
    margin-left: 80px;
    font-size: 30px;
    color: #5B5B5B;
    

}

.pic {
    height: 200px;
    background-color: #dddddd;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(212, 212, 212, 0.25);
}

.pic img {
    object-fit: contain;
    height: 102%;
    position: relative;
    left: 0;
}

.pain-answer{
    height: 150px;
    width: 100%;
    position: relative;
    top: -30px;
    width: fit-content;
    margin: auto;
    color: #5B5B5B;

}
.pain-answer-text {
    font-family: afacad flux;
    font-size: 64px;
}


/* =========================
    ЧАСТЬ 3   GRID   
   ========================= */
    .forth-part {
        display: flex;
    }





/* =========================
   ROADMAP
   ========================= */

.right4 {
    width: 63%;
    margin-left: auto;
    justify-content: center;
}

.left4 {
    width: 37%;
    font-family: afacad flux ;
    font-size: 20px;
    margin-left: 80px;
}

.section4-heading {
    color: #5B5B5B;
}
.section4-text {
    color: #949393;
}

.roadmap-months {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 295px;
    font-family: afacad flux;
    font-size: 20px;
    font-weight: regular;
    color: #949393;
    position: relative;
    right: 62px;
    top: 40px;
}

.roadmap-header {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: afacad flux;
    font-size: 20px;
    font-weight: lighter;
    color: #5B5B5B;
    position: relative;
    right: 62px;

}

.roadmap {
    display: grid;
    grid-template-columns: 250px 80px 250px 80px 250px;
    align-items: center;
    width: fit-content;
    margin: 0 auto;
    padding-inline: 70px;
    padding-block: 20px;
    text-align: center;
    background-image: url("stripe.png");
    background-position: center;
    background-size: 100% 110%;
    position: relative;
    right: 60px;
    top: 20px;
    z-index: 10;
}

.roadmap img {
    justify-self: center;
    align-self: center;
    position: relative;
    top: 20px;
}

.Vids-amount {
    font-family: afacad flux;
    font-size: 20px;
    position: relative;
    top: 35px;
    color: white
}

.roadmap-price {
    position: relative;
    top: 5px;
    font-family: afacad flux;
    font-size: 30px;
    color: #F1F5CB;

}


/* =========================
   Witch
   ========================= */
.witch img {
    height: 1000px;
    width: auto;
    opacity: 70%;
    z-index: 0;
    position: relative;
    left: -50px;
    top: -20px;
    border: 5px;
    
}

.witch {
    height: 70px;

    
}

.feet {
    position: absolute;
}

.feet img {
        width: 300px;
    height: auto;
    position: relative;
    top: 585px;
    left: 100px;
    
}




/* =========================
   FOOTER
   ========================= */

.footer {
    height: 350px;
    width: 100%;
    background-color: #242424;
    position: relative;
    display: flex;
    padding-left: 20px;
    margin-top: -40px;
    

    
    

}



.footer-right {
     margin-left: auto;
    margin-right: 120px;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 20px;
}


.footer-social {
    display: flex;
    gap: 30px;
    margin-top: 45px;

}


body {
    overflow-x: hidden;
}


body {
    margin: 0;
    background-color: #242424;
}

.gallery-body {
    background-color: #f5f5f5 !important;
}

.gmail {
    font-family: afacad flux;
    font-weight: 300;
    font-size: 20px;
    color: #c2c2c2;
    height: 30px;
    width: fit-content;
    position: relative ;

    z-index: 6;
   
   margin-left: auto
}


 .c {
    color: rgb(160, 160, 160);
     
    font-size: 30px;
    font-family: afacad flux ;
    font-size: 16px;
    font-weight: 200;
    display: flex;
    margin-top: 0;
    margin-bottom: 10px;
    
    margin-left: auto;
}


.ladkohit-logo {
    color: white;
    width: 300px;
    height: 100px;
    position: relative;
    z-index: 5;
    margin-top: 50px;
    margin-left: 15px;

}
.ladkohit {
    font-size: 20px;
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: bolder;
    letter-spacing: 25%;

}

.footer-links {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 100px;
    margin-top: 50px;
}

.footer-links a {
    color: #c2c2c2;
    font-family: "Afacad Flux", sans-serif;
    font-size: 20px;
    font-weight: 200;
    text-decoration: none;
}

.footer-links a:hover {
    color: #ffffff;
}



/* =========================
   GALLERY PAGE
   ========================= */ /* =========================
   GALLERY PAGE
   ========================= *//* =========================
   GALLERY PAGE
   ========================= *//* =========================
   GALLERY PAGE
   ========================= *//* =========================
   GALLERY PAGE
   ========================= */


.Gallery {
    width: min(1000px, calc(100% - 48px));
    margin: 0 auto;
    padding-top: 48px;
}

.video-player {
    width: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid #e1e1e1;
    border-radius: 14px;
    background-color: #ffffff;
    box-shadow: 0 0 36px rgba(36, 36, 36, 0.1);
    z-index: 1;
}

.video-screen {
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 360px;
    background-color: #424242;
}
.video-screen video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.landing-video-player {
    width: min(1000px, calc(100% - 48px));
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.landing-video-player .video-screen {
    height: auto;
    min-height: 0;
    aspect-ratio: auto;
}

.landing-video-player .video-screen video {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
}

.Gallery .buttons {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 74px;
    padding: 10px 22px;
    border-bottom: 1px solid #ededed;
    box-sizing: border-box;
}

.Gallery .buttons div {
    display: flex;
    align-items: center;
    color: #707070;
}

.interactives1,
.interactives2 {
    gap: 18px;
}

.interactives2 {
    justify-content: flex-end;
}

.navigation {
    justify-content: center;
    gap: 12px;
}

.arrow-left,
.arrow-right {
    display: grid;
    width: 38px;
    height: 38px;
    padding: 0;
    place-items: center;
    border: 1px solid #dedede;
    border-radius: 50%;
    background-color: #ffffff;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.arrow-left:hover,
.arrow-right:hover {
    border-color: #438b8f;
    background-color: #f1f8f8;
}

.arrow-left img,
.arrow-right img {
    width: 18px;
    height: 18px;
}

.arrow-right img {
    transform: rotate(180deg);
}

.video-counter {
    align-items: center;
    color: #424242;
    font-family: "Afacad Flux", sans-serif;
    font-size: 16px;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.interactives1 .views img,
.interactives1 .like img {
    width: 25px;
    height: auto;
    opacity: 0.45;
}

.interactives1 .like,
.interactives1 .views {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 40px;
    padding: 5px;
    border: none;
    background: transparent;
    color: #a7a7a7 !important;
    font-family: "Afacad Flux", sans-serif;
    font-size: 16px;
}

.interactives1 .like {
    cursor: pointer;
}

.interactives1 .like.is-liked {
    color: #438b8f !important;
}

.interactives1 .like.is-liked img {
    opacity: 1;
}

.video-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 20px 24px 24px;
}

.video-name {
    color: #424242;
    font-family: "Afacad Flux", sans-serif;
    font-size: 25px;
    font-weight: 700;
}

.playlist-name {
    color: #707070;
    font-family: "Afacad Flux", sans-serif;
    font-size: 18px;
    font-weight: 400;
}

.playlist-comments {
    margin-top: 28px;
    margin-bottom: 44px;
    padding: 28px;
    border: 1px solid #e1e1e1;
    border-radius: 14px;
    background-color: #ffffff;
    box-shadow: 0 0 28px rgba(36, 36, 36, 0.06);
    box-sizing: border-box;
    font-family: "Afacad Flux", sans-serif;
}

.playlist-comments h2 {
    font-family: "Afacad Flux", sans-serif;
}

@media (max-width: 680px) {
    .Gallery {
        width: calc(100% - 32px);
        padding-top: 28px;
    }

    .video-screen {
        min-height: 0;
    }

    .Gallery .buttons {
        grid-template-columns: 1fr auto 1fr;
        padding: 8px 12px;
    }

    .interactives1,
    .interactives2 {
        gap: 8px;
    }

    .video-info {
        padding: 16px;
    }

    .playlist-comments {
        margin-top: 18px;
        margin-bottom: 28px;
        padding: 20px 16px;
    }

    .video-name {
        font-size: 21px;
    }

    .playlist-name {
        font-size: 16px;
    }
}




.more-videos {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family:  afacad flux;
    font-size: 20px;
    color: #5B5B5B;

}
.more-videos img {
    height: 25px;

}
.video-name h2 {
    margin: 0;
}




  
    

.filter {
    display: grid;
    width: 36px;
    height: 36px;
    margin-left: 10px;
    padding: 5px;
    place-items: center;
    border: none;
    border-radius: 50%;
    background-color: transparent;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.filter:hover,
.filter[aria-expanded="true"] {
    background-color: #e7f2f2;
}

.filter img {
    width: 24px;
    height: 24px;
}

.filter-menu {
    position: relative;
}

.filter-popover {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 20;
    width: 150px;
    padding: 10px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: 0 0 20px rgba(36, 36, 36, 0.12);
    box-sizing: border-box;
    color: #424242;
    font-family: "Afacad Flux", sans-serif;
    font-size: 16px;
    text-align: left;
}

.filter-popover label {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 32px;
    cursor: pointer;
}

.filter-popover input {
    width: 15px;
    height: 15px;
    accent-color: #8bc2c5;
}

.filter-apply {
    width: 100%;
    margin-top: 8px;
    padding: 7px 10px;
    border: 0;
    border-radius: 5px;
    background-color: #8bc2c5;
    color: #ffffff;
    cursor: pointer;
    font: inherit;
}

.filter-apply:hover {
    background-color: #438b8f;
}












.grid-videos {
    width: 80%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(3, 300px);
    gap: 30px;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    margin-top: 40px;
    padding-bottom: 100px;
    
}

.video-thumb{
    width: min(100%, 300px);
    aspect-ratio: 16 / 9;
    height: auto;
    background-color: #cfcfcf;
    border-radius: 5px;
    border: 1px solid #dedede;
    box-sizing: border-box;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.2s ease, transform 0.2s ease, outline-color 0.2s ease;
}

.video-thumb:hover,
.video-thumb.is-active {
    border-color: #438b8f;
    transform: translateY(-2px);
}

.video-thumb img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    display: block;
    border-radius: 3px;
    object-fit: cover;
}

@media (max-width: 900px) {
    .grid-videos {
        width: calc(100% - 32px);
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .video-thumb {
        width: 100%;
    }
}





/* =========================
   LOGIN MODAL
   ========================= */

.login-overlay {
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, 0.356);

    display: none;

    justify-content: center;
    align-items: center;

    z-index: 10000;
}


/* Белое окно */

.login-modal {
    width: 620px;
    min-height: 650px;

    background-color: white;
    border-radius: 18px;

    position: relative;

    padding: 45px 40px 40px;

    box-sizing: border-box;

    font-family: "Afacad Flux", sans-serif;
}


/* Крестик */

.login-close {
    position: absolute;

    top: 20px;
    right: 25px;

    border: none;
    background: none;

    font-size: 42px;
    line-height: 1;

    color: #707070;

    cursor: pointer;
}


/* Заголовок */

.login-title {
    text-align: center;

    font-family: "Afacad Flux", sans-serif;
    font-size: 30px;

    font-weight: 700;

    margin: 10px 0 30px;

    color: #5B5B5B;
}


/* Google */

.google-login {
    width: 100%;
    height: 68px;

    border: 3px solid #2677e8;
    border-radius: 35px;

    background-color: #ffffff;
    color: #2677e8;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 5px 7px 5px 25px;

    font-family: "Afacad Flux", sans-serif;
    font-size: 20px;
    font-weight: 700;

    cursor: pointer;
}


/* Буква Google */

.google-icon {
    width: 52px;
    height: 52px;

    border-radius: 50%;

    background-color: white;
    color: #2677e8;
    border: 1px solid #dfe7f5;
    box-shadow: 0 1px 4px rgba(36, 36, 36, 0.08);

    display: flex;
    justify-content: center;
    align-items: center;

}

.google-icon img {
    width: 30px;
    height: 30px;
    display: block;
    object-fit: contain;
}


/* OR */

.login-or {
    display: flex;
    align-items: center;

    gap: 15px;

    margin: 30px 0;
}

.login-or span {
    height: 1px;

    background-color: #cfcfcf;

    flex: 1;
}

.login-or p {
    margin: 0;

    color: #707070;

    font-size: 18px;
}


/* Inputs */

.login-input {
    width: 100%;
    height: 78px;

    box-sizing: border-box;

    border: none;
    border-radius: 15px;

    background-color: #f0f0f0;

    padding: 0 18px;

    margin-bottom: 18px;

    font-family: "Afacad Flux", sans-serif;
    font-size: 22px;

    outline: none;
}

.login-input:focus {
    box-shadow: 0 0 0 2px #8BC2C5;
}

.login-input::placeholder {
    color: #a0a0a0;
}


/* Forgot password */

.forgot-password {
    border: none;
    background: none;

    padding: 0;

    font-family: "Afacad Flux", sans-serif;
    font-size: 18px;

    color: #707070;

    cursor: pointer;

    margin: 5px 0 35px;
}


/* LOG IN */

.login-submit {
    width: 100%;
    height: 78px;

    border: none;
    border-radius: 15px;

    background-image: url("BLUE.png");
    background-size: 150%;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff;
    opacity: 1;

    font-family: "Afacad Flux", sans-serif;
    font-size: 23px;
    font-weight: 700;

    cursor: pointer;
    transition: box-shadow 0.2s ease;
}

.login-submit:hover {
    box-shadow: inset 0 0 0 999px rgba(0, 0, 0, 0.08);
}


/* Sign up */

.signup-text {
    text-align: center;

    margin-top: 25px;

    color: #707070;

    font-size: 19px;
}

.signup-button {
    border: none;
    background: none;

    padding: 0;

    font-family: inherit;
    font-size: inherit;
    font-weight: 700;

    color: #5B5B5B;

    cursor: pointer;
}

.auth-panel {
    display: none;
}

.auth-panel.is-active {
    display: block;
}

.auth-message {
    min-height: 24px;
    margin: 16px 0 0;
    text-align: center;
    font-family: "Afacad Flux", sans-serif;
    font-size: 16px;
    color: #5f5f5f;
}

.auth-message.is-error {
    color: #be2d2d;
}

.auth-message.is-success {
    color: #1b8f58;
}

/* =========================
   ADMIN DASHBOARD
   ========================= */

.admin-body {
    min-height: 100vh;
    background: #f6f6f6;
    color: #242424;
    font-family: "Afacad Flux", sans-serif;
}

.admin-shell {
    display: grid;
    grid-template-columns: 244px minmax(0, 1fr);
    min-height: 100vh;
}

.admin-sidebar {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 0 14px 20px;
    box-sizing: border-box;
    background-color: #8fc8ca;
    border-right: none;
}

.admin-sidebar::before {
    position: absolute;
    inset: -20%;
    z-index: 0;
    background-image: url("header-base3.png");
    background-position: 68% 22%;
    background-size: cover;
    content: "";
    transform: scale(1.25);
}

.admin-sidebar::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
    content: "";
}

.admin-brand {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 10px 28px;
    color: #ffffff;
    text-decoration: none;
}

.admin-brand img {
    width: 72px;
    height: 72px;
    margin-left: 0;
}

.admin-brand span {
    color: #ffffff;
    font-size: 19px;
    font-weight: 800;
    letter-spacing: 1px;
}

.admin-nav {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 6px;
}

.admin-nav-link,
.admin-logout {
    display: flex;
    align-items: center;
    gap: 13px;
    min-height: 46px;
    padding: 0 14px;
    border-left: 3px solid transparent;
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 16px;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.admin-nav-link:hover,
.admin-nav-link.is-active {
    border-left-color: #ffffff;
    background: rgba(255, 255, 255, 0.24);
    color: #ffffff;
}

.admin-nav-icon {
    display: inline-grid;
    width: 22px;
    place-items: center;
    color: currentColor;
    font-size: 21px;
    line-height: 1;
}

.admin-nav-badge {
    min-width: 22px;
    margin-left: auto;
    padding: 2px 6px;
    border-radius: 12px;
    background: #ef7e86;
    color: #ffffff;
    font-size: 12px;
    text-align: center;
}

.admin-logout {
    position: relative;
    z-index: 2;
    margin-top: auto;
    color: rgba(255, 255, 255, 0.9);
}

.admin-main {
    width: auto;
    min-width: 0;
    min-height: 100vh;
    padding: 34px clamp(24px, 4vw, 64px) 56px;
    background: #f6f6f6;
    box-sizing: border-box;
}

.admin-topbar,
.admin-toolbar,
.admin-panel-heading,
.admin-profile {
    display: flex;
    align-items: center;
}

.admin-topbar,
.admin-toolbar,
.admin-panel-heading {
    justify-content: space-between;
}

.admin-eyebrow {
    margin: 0 0 5px;
    color: #9a9a9a;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.admin-topbar h1 {
    margin: 0;
    font-family: "Afacad Flux", sans-serif;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 700;
    line-height: 1;
}

.admin-profile {
    gap: 14px;
}

.admin-profile > div:not(.admin-avatar) {
    display: grid;
    text-align: right;
}

.admin-profile strong {
    font-size: 16px;
}

.admin-profile span {
    color: #8b8b8b;
    font-size: 13px;
}

.admin-theme-toggle {
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 6px;
    background: #ffffff;
    color: #438b8f;
    cursor: pointer;
    font-size: 21px;
}

.admin-avatar,
.admin-mini-avatar {
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #438b8f;
    color: #ffffff;
    font-weight: 700;
}

.admin-avatar {
    width: 44px;
    height: 44px;
}

.admin-avatar img {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-fit: cover;
}

.admin-avatar-upload {
    display: block;
    cursor: pointer;
}

.admin-avatar-upload:hover {
    outline: 2px solid #438b8f;
    outline-offset: 2px;
}

.admin-avatar-input {
    display: none;
}

.admin-toolbar {
    margin: 32px 0 20px;
}

.admin-date {
    display: grid;
    gap: 4px;
    color: #9a9a9a;
    font-size: 12px;
}

.admin-date input {
    width: 190px;
    padding: 10px 12px;
    border: none;
    border-radius: 6px;
    background: #ffffff;
    color: #555555;
    font: inherit;
}

.admin-primary-button {
    padding: 11px 18px;
    border: none;
    border-radius: 6px;
    background: #72babb;
    color: #ffffff;
    cursor: pointer;
    font: inherit;
    transition: background-color 0.2s ease;
}

.admin-primary-button:hover {
    background: #5fa6a8;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.admin-stat-card,
.admin-panel {
    border: none;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 0 14px rgba(36, 36, 36, 0.045);
}

.admin-stat-card {
    position: relative;
    display: grid;
    grid-template-columns: 63px 1fr;
    align-items: center;
    gap: 14px;
    overflow: hidden;
    min-height: 154px;
    padding: 22px;
    box-sizing: border-box;
}

.admin-stat-card::before {
    position: absolute;
    top: -20%;
    bottom: -20%;
    left: -28%;
    z-index: 0;
    width: 65%;
    background-image: url("stripe.png");
    background-position: center;
    background-size: cover;
    content: "";
    transform: rotate(90deg) scale(1.25);
}

.admin-stat-icon {
    position: relative;
    z-index: 1;
    display: grid;
    width: 51px;
    height: 51px;
    transform: translateX(2px);
    place-items: center;
    border-radius: 8px;
}

.admin-stat-icon img {
    position: relative;
    z-index: 1;
    width: 45px;
    height: 45px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.admin-stat-card div:nth-child(2) {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 2px;
    margin-left: 18px;
}

.admin-stat-card span,
.admin-stat-card small {
    color: #777777;
    font-size: 14px;
}

.admin-stat-card strong {
    color: #242424;
    font-size: 27px;
    line-height: 1.1;
}

.admin-stat-card small {
    font-size: 12px;
}

.admin-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.75fr);
    gap: 22px;
    margin-top: 22px;
}

.admin-panel {
    padding: 24px;
    box-sizing: border-box;
}

.admin-panel-heading {
    margin-bottom: 20px;
}

.admin-panel-heading h2 {
    margin: 0;
    color: #242424;
    font-size: 24px;
    line-height: 1.1;
}

.admin-panel-heading a {
    color: #438b8f;
    font-size: 14px;
    text-decoration: none;
}

.admin-table-wrap {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    color: #777777;
    font-size: 14px;
    white-space: nowrap;
}

.admin-table th {
    padding: 10px 12px;
    color: #a0a0a0;
    font-size: 12px;
    font-weight: 500;
    text-align: left;
    text-transform: uppercase;
}

.admin-table td {
    padding: 16px 12px;
    border-top: 1px solid #f0f0f0;
}

.admin-table td:first-child {
    display: grid;
    gap: 3px;
}

.admin-table td strong {
    color: #424242;
    font-weight: 600;
}

.admin-table td span {
    color: #a0a0a0;
    font-size: 12px;
}

.admin-status {
    font-size: 12px;
    font-weight: 500;
}

.admin-status.published { color: #42a98e; }
.admin-status.pending { color: #d789b3; }
.admin-status.draft { color: #9b9b9b; }

.admin-more {
    border: none;
    background: transparent;
    color: #a0a0a0;
    cursor: pointer;
    letter-spacing: 2px;
}

.admin-side-column {
    display: grid;
    align-content: start;
    gap: 22px;
}

.admin-online-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #42d7ae;
}

.admin-update {
    display: grid;
    grid-template-columns: 38px 1fr auto;
    align-items: center;
    gap: 11px;
    padding: 14px 0;
    border-top: 1px solid #f0f0f0;
}

.admin-mini-avatar {
    width: 38px;
    height: 38px;
    background: #242424;
    font-size: 12px;
}

.admin-avatar-blue { background: #7282d7; }
.admin-avatar-pink { background: #e97890; }

.admin-update p {
    display: grid;
    gap: 2px;
    margin: 0;
}

.admin-update strong { font-size: 14px; }
.admin-update span,
.admin-update time { color: #999999; font-size: 12px; }

.admin-upload-zone {
    display: grid;
    min-height: 142px;
    place-content: center;
    gap: 5px;
    border: none;
    border-radius: 9px;
    background: #f7fbfb;
    color: #555555;
    text-align: center;
    cursor: pointer;
}

.admin-upload-zone span {
    color: #438b8f;
    font-size: 28px;
    line-height: 1;
}

.admin-upload-zone small { color: #999999; }

.admin-category-panel {
    grid-column: 1 / -1;
}

.admin-category-list {
    display: grid;
    gap: 8px;
}

.admin-category-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 10px 0;
    border-bottom: 1px solid #eeeeee;
    color: #555555;
    font-size: 15px;
}

.admin-category-row span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-category-row select {
    min-width: 110px;
    padding: 7px 9px;
    border: 1px solid #dddddd;
    border-radius: 6px;
    background-color: #ffffff;
    color: #555555;
    font: inherit;
}

.video-thumb {
    position: relative;
}

.video-category-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 1;
    padding: 3px 8px;
    border-radius: 4px;
    background-color: rgba(36, 36, 36, 0.78);
    color: #ffffff;
    font-family: "Afacad Flux", sans-serif;
    font-size: 13px;
    line-height: 1.2;
}

@media (max-width: 1050px) {
    .admin-shell { grid-template-columns: 200px minmax(0, 1fr); }
    .admin-stats { grid-template-columns: 1fr; }
    .admin-stat-card { min-height: 120px; }
}

@media (max-width: 780px) {
    .admin-shell { display: block; }
    .admin-sidebar {
        min-height: 0;
        padding: 0 16px 14px;
    }
    .admin-brand { padding-bottom: 12px; }
    .admin-nav {
        display: flex;
        overflow-x: auto;
        gap: 4px;
    }
    .admin-nav-link { min-width: max-content; }
    .admin-nav-link:not(.is-active) { display: none; }
    .admin-logout { display: none; }
    .admin-main { padding: 28px 16px 40px; }
    .admin-content-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .admin-profile > div:not(.admin-avatar),
    .admin-theme-toggle { display: none; }
    .admin-toolbar { align-items: end; }
    .admin-date input { width: 150px; }
    .admin-stat-card { padding: 16px; }
    .admin-stat-icon { width: 51px; }
    .admin-stat-card strong { font-size: 23px; }
    .admin-panel { padding: 18px 14px; }
}