@font-face {font-family: "Mont-light"; src: url("../fonts/Montserrat-light.ttf") format("truetype");}
@font-face {font-family: "Mont-Bold"; src: url("../fonts/Montserrat-Bold.ttf") format("truetype");}
@font-face {font-family: "Mont-Regular"; src: url("../fonts/Montserrat-Regular.ttf") format("truetype");}
@font-face {font-family: "Mont-Medium"; src: url("../fonts/Montserrat-Medium.ttf") format("truetype");}
@font-face {font-family: "Mont-Semi-Bold"; src: url("../fonts/Montserrat-SemiBold.ttf") format("truetype");}

*{margin: 0; padding: 0;}
body{width: 100%; display: flex; align-items: center; background: #121212; color: white; flex-direction: column;}


header{width: 100%;height: fit-content;background: #0B0B0B;display: flex;justify-content: center;position: relative; z-index: 10; padding: 30px 0px 0px 0; background: black;}
.logo-img{width: 40%;;aspect-ratio: 181/53;padding: 10px 0;}
nav{height: fit-content;width: 85%;background: black;padding: 0 10px;display: flex;justify-content: space-between;max-width: 1600px; min-width: 295px; }
.nav-menu{display: none;}
.nav-login{display: none;}
.burger{display: flex; width: 15%; flex-direction: column; justify-content: center; align-items: end; gap: 20%;}
.burger-small{width: 60%; border: 1px solid white;}
.burger-big{width: 80%; border: 1px solid white;}

.content{width: 85%; display: flex; flex-direction: column; margin-top: 30px; gap: 30px; max-width: 1600px; min-width: 295px;}
.content-main-add{width: 100%; display: flex; flex-direction: column; gap: 30px; z-index: 100;}

.content-main{width: 100%; display: flex; flex-direction: column; gap: 30px;}
.content-add{width: 100%; display: flex; flex-direction: column; gap: 30px;}

.content-title{
    width: 100%;
    font-family: "Mont-Bold";
    font-size: 28px;
}

.content-descript{
    width: 100%;
    display: flex;
    flex-direction: column;
}

.content-descript-text{
    max-height: 150px;
    height: fit-content;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.content-descript-text.open{
    max-height: 1000px;
}

.content-descript-text.open .content-descript-overlay{
    opacity: 0;
    visibility: hidden;
}

.content-descript span{
    font-size: 16px;
    font-family: "Mont-Regular";
    color: #ADADAD;
}

.content-descript-overlay{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(18, 18, 18, 0) 20%, #121212 100%);
    transition: all 0.6s ease;
    pointer-events: none; /* чтобы клики проходили сквозь оверлей */
}

.content-main-part-title{font-family: "Mont-Regular";font-family: 18px; width: 100%;}

.content-main-top-matches-list{width: 100%;display: flex;flex-wrap: nowrap;overflow-x: auto;gap: 10px;scrollbar-width: none; -ms-overflow-style: none;scroll-behavior: smooth;}
.content-main-top-matches-list::-webkit-scrollbar {display: none;}

.content-main-top-matches-list-item{width: 274px;min-width: 274px;height: 176px;border-radius: 8px;background: #313131;padding: 10px;box-sizing: border-box;display: flex;flex-direction: column;align-items: center;}
.content-main-top-matches-list-item-ligue{display: flex;align-items: center;gap: 5px;width: 100%;}
.content-main-top-matches-list-item-ligue img{width: 11px;}
.content-main-top-matches-list-item-ligue span{font-size: 14px;font-family: "Mont-Regular";color: #ADADAD;}
.content-main-top-matches-list-item-command{width: 100%;display: flex;justify-content: center;gap: 10%;margin-top: 5%;}
.content-main-top-matches-list-item-command img{max-width: 50px;max-height: 50px;}
.content-main-top-matches-list-item-command-info{display: flex;flex-direction: column;align-items: center;justify-content: center;gap: 3px 0;}
.content-main-top-matches-list-item-command-info-time{font-size: 16px;font-family: "Mont-Bold";}
.content-main-top-matches-list-item-command-info-date{font-size: 14px;font-family: "Mont-Regular";color: #ADADAD;}
.content-main-top-matches-list-item-title{font-family: "Mont-Bold";font-size: 16px;width: 100%;margin-top: 5%;}
.content-main-top-matches-list-item-bet{width: 100%;display: flex;justify-content: space-between;align-items: center;margin-top: auto;}
.content-main-top-matches-list-item-bet span{font-family: "Mont-Regular";font-size: 12px;color: #ADADAD;}
.content-main-top-matches-list-item-bet img{height: 10px; cursor: pointer;}

.content-main-tag-menu{width: 100%; display: flex; flex-wrap: wrap; gap: 20px;}
.content-main-tag-menu-item{font-size: 16px; font-family: "Mont-Regular"; padding: 5px 10px; border: 1px solid white; border-radius: 50px; cursor: pointer;}
.content-main-tag-menu-item.active{border: none; background: linear-gradient(203deg, #00571D 0%, #87C212 100%);padding: 6px 11px;}

.content-main-bet-list{width: 100%;display: flex;flex-direction: column;gap: 30px;}

.content-main-bet-list-item{width: 100%; border-radius: 8px; background: #313131; padding: 20px; box-sizing: border-box; display: flex; flex-direction: column;}
.content-main-bet-list-item-main{width: 100%; display: flex; flex-direction: column; gap: 10px; padding-bottom: 20px; border-bottom: 1px solid white;}
.content-main-bet-list-item-author{width: 100%; display: flex; align-items: center; gap: 10px;}
.content-main-bet-list-item-author-avatar{width: 32px;aspect-ratio: 1/1; border-radius: 50%; background: #C4C4C4;}
.content-main-bet-list-item-author span{font-size: 14px; font-family: "Mont-Semi-Bold";}
.content-main-bet-list-item-match{width: 100%; display: flex; align-items: center; gap: 10px;}
.content-main-bet-list-item-match-ball{width: 22px; aspect-ratio: 1/1;}
.content-main-bet-list-item-match-info{display: flex; align-items: center; gap: 10px;}
.content-main-bet-list-item-match-info img{max-width: 20px; max-height: 20px;}
.content-main-bet-list-item-match-info-text{display: flex; flex-direction: column; justify-content: center; gap: 3px;}
.content-main-bet-list-item-match-info-text-title{font-size: 16px; font-family: "Mont-Semi-Bold";}
.content-main-bet-list-item-match-info-text-date{font-size: 12px; font-family: "Mont-Regular"; color: #ADADAD;}

.content-main-bet-list-item-content{font-size: 16px; font-family: "Mont-Regular"; color: #ADADAD; display: flex; flex-wrap: wrap;}
.content-main-bet-list-item-content-open{font-size: 16px; font-family: "Mont-Bold"; color: #62B435; text-wrap: none;}

.content-main-bet-list-item-add{width: 100%; display: flex; flex-direction: column; margin-top: 20px; gap: 10px;}

.content-main-bet-list-item-add-title{width: 100%;font-size: 12px;font-family: "Mont-Semi-Bold";color: #ADADAD;}
.content-main-bet-list-item-add-result{width: 100%;font-size: 16px;font-family: "Mont-Semi-Bold";}

.content-main-bet-list-item-add-coef{width: 100%; display: flex; align-items: center; gap: 5px;}
.content-main-bet-list-item-add-coef img{width: 32px; aspect-ratio: 1/1;}
.content-main-bet-list-item-add-coef-info{display: flex; flex-direction: column; justify-content: center;}
.content-main-bet-list-item-add-coef-info-title{font-size: 12px; font-family: "Mont-Regular";}
.content-main-bet-list-item-add-coef-info-count{font-size: 18px; font-family: "Mont-Semi-Bold";}

.content-main-bet-list-item-add-btn{width: 161px; height: 40px; display: flex;justify-content: center;align-items: center;color: white;background: linear-gradient(203deg, #00571D 0%, #87C212 100%); border-radius: 30px;border: none;font-size: 15px;font-family: "Mont-Semi-Bold";}

.content-add-adv-img{width: 100%;overflow: hidden;}
.content-add-adv-img img{width: 100%;}

.best-book {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 20px 10px;
    background: black;
    justify-content: center;
    border-radius: 10px;
    gap: 20px;
    box-sizing: border-box;
    
    /* Супер плавная анимация */
    animation: smoothColorFlow 7s ease-in-out infinite;
}

@keyframes smoothColorFlow {
    0%, 100% {
        box-shadow: 0 0 25px #5FA315,
                   0 0 45px rgba(95, 163, 21, 0.5),
                   0 0 65px rgba(95, 163, 21, 0.2);
    }
    12.5% {
        box-shadow: 0 0 28px #6BB820,
                   0 0 48px rgba(107, 184, 32, 0.6),
                   0 0 68px rgba(107, 184, 32, 0.3);
    }
    25% {
        box-shadow: 0 0 32px #87C212,
                   0 0 52px rgba(135, 194, 18, 0.7),
                   0 0 72px rgba(135, 194, 18, 0.4);
    }
    37.5% {
        box-shadow: 0 0 36px #A8D92D,
                   0 0 56px rgba(168, 217, 45, 0.8),
                   0 0 76px rgba(168, 217, 45, 0.5);
    }
    50% {
        box-shadow: 0 0 40px #2DE0D9,
                   0 0 60px rgba(45, 224, 217, 0.7),
                   0 0 80px rgba(45, 224, 217, 0.4);
    }
    62.5% {
        box-shadow: 0 0 36px #4A9CF5,
                   0 0 56px rgba(74, 156, 245, 0.6),
                   0 0 76px rgba(74, 156, 245, 0.3);
    }
    75% {
        box-shadow: 0 0 32px #F7D329,
                   0 0 52px rgba(247, 211, 41, 0.7),
                   0 0 72px rgba(247, 211, 41, 0.4);
    }
    87.5% {
        box-shadow: 0 0 28px #F79F29,
                   0 0 48px rgba(247, 159, 41, 0.6),
                   0 0 68px rgba(247, 159, 41, 0.3);
    }
}
.best-book-title{width: 100%;text-align: center;font-size: 28px;font-family: "Mont-Bold";max-width: 298px;}
.best-book-logo{width: 90%;aspect-ratio: 300/85;background: linear-gradient(-135deg, rgba(0, 87, 29, 0.2) 0%, rgba(135, 194, 18, 1) 100%);border-radius: 5px;padding: 2px;max-width: 288px;}
.best-book-logo-content{width: 100%;height: 100%;display: flex;align-items: center;justify-content: center;position: relative;border-radius: 5px;background: black;}
.best-book-logo-content img{max-width: 100%;max-height: 100%;min-width: 50%;min-height: 50%;}
.best-book-info{width: 90%;display: flex;flex-direction: column;gap: 10px;max-width: 288px;}
.best-book-info-item{width: 100%; display: flex; justify-content: space-between; padding-bottom: 5px; border-bottom: 1px solid rgba(152, 152, 154, 1);}
.best-book-info-item-title{color: rgba(152, 152, 154, 1);font-family: "Mont-Regular";font-size: 16px; }
.best-book-info-item-content{font-family: "Mont-Semi-Bold";font-size: 16px; }
.best-book-info-item img{width: 20px;}
.best-book-data{width: 90%; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 15px 0; max-width: 288px;}
.best-book-data-item{width: 49%;display: flex;align-items: center;gap: 5px;}
.best-book-data-item-content{display: flex;flex-direction: column;justify-content: center;font-size: 14px;}
.best-book-data-item-content-title{font-family: "Mont-Regular";}
.best-book-data-item-content-count{font-family: "Mont-Bold";}
.best-book-data-btn{width: 90%;aspect-ratio: 266/44;border-radius: 100px;border: none;background: linear-gradient(-135deg, #008C0E 0%, #093F0F 100%);display: flex;align-items: center;justify-content: center;color: white;font-family: "Mont-Bold";font-size: 16px;margin-left: auto;margin-right: auto;}

.article-section{width: 100%; display: flex; flex-direction: column; gap: 20px;}
.article-section-content{width: 100%;display: flex;flex-direction: column;gap: 20px;}
.article-section-content-article{width: 100%;aspect-ratio: 297/441;max-height: 400px;position: relative;overflow: hidden;border-radius: 10px;}

.article-section-content-article img{min-width: 100%;min-height: 100%;position: absolute;top: 0;left: 0;}
.article-section-content-article-overlay{width: 100%;height: 100%;position: absolute;top: 0;left: 0;background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 60%, rgba(0, 0, 0, 1) 100%);}
.article-section-content-article-content-title{font-size: 18px;font-family: "Mont-Bold";}
.article-section-content-article-content-text{font-size: 16px;color: #ADADAD;font-family: "Mont-Regular";}
.article-section-content-article-content{width: 90%;position: absolute;left: 10px;bottom: 50px;display: flex;flex-direction: column;gap: 10px;max-width: 650px;}
.article-section-content-list{width: 100%;aspect-ratio: 297/441;max-height: 400px;overflow: hidden;border-radius: 10px;background: #262626;display: flex;justify-content: center;align-items: center;}
.article-section-content-list-content{width: 80%;display: flex;flex-direction: column;gap: 20px;align-items: center; max-width: 362px;}
.article-section-content-list-content.comp{display: none;}
.article-section-content-list-content-item{width: 100%;display: flex;padding-bottom: 5px;border-bottom: 1px solid #ADADAD;align-items: center; }
.article-section-content-list-content-item-info{flex-grow: 1;display: flex;flex-direction: column;gap: 5px;}
.article-section-content-list-content-item-info-date{font-size: 10px;color: #ADADAD;font-family: "Mont-Medium";}
.article-section-content-list-content-item-info-title{font-size: 16px;font-family: "Mont-Regular";}
.article-section-content-list-content-item img{width: 10%;max-width: 30px;}
.article-section-content-list-content-btn{width: 100%;aspect-ratio: 239/44;background: linear-gradient(-135deg, #00571D 0%, #87C212 100%);color: white;font-family: "Mont-Bold";border-radius: 100px;border: 2px solid #093F0F;font-size: 16px;font-family: "Mont-Bold";max-width: 362px; max-height: 44px;}

.line-adv{width: 100%;aspect-ratio: 1192/232;display: flex;justify-content: center; background: black;}
.line-adv img{width: 100%; max-height: 100%;}

.mobile-menu{position: fixed;width: 100%;height: 100%;z-index: 100;top: 0;left: 0;background: rgba(0,0,0,0.9);pointer-events: none;opacity: 0;transition: opacity .8s ease;display: flex;flex-direction: column;align-items: center;}
.mobile-menu.open{opacity: 1;pointer-events: all;}
.mobile-menu svg{margin-left: auto;margin-right: 3vw;margin-top: 3vw;}
.mobile-menu-content{display: flex;flex-direction: column;width: 80%;margin-top: 10%;gap: 10px;}
.mobile-menu-content a{color: white;text-decoration: none;font-family: "Mont-Bold";font-size: 24px;}
.mobile-menu-content-login{padding: 5px 10px;border-radius: 50px;width: fit-content;font-family: "Mont-Bold";font-size: 18px;}
.mobile-menu-content-login.in{background: linear-gradient(-135deg, #00571D 0%, #87C212 100%); border: 1px solid #093F0F;}
.mobile-menu-content-login.reg{border: 1px solid white;}

footer{width: 100%; background: black; display: flex; align-items: center; margin-top: 30px; padding: 30px 0; justify-content: center;}
.footer-mobile{display: flex; align-items: center; flex-direction: column; gap: 50px;}
.footer-logo{width: 85%;}
.footer-logo img{width: 60%;max-width: 181px;}
.footer-menu-form{width: 85%; display: flex; flex-direction: column; gap: 50px;}
.footer-menu-list{width: 100%;display: flex;flex-wrap: wrap;gap: 10px 20px;}
.footer-menu-list a{color: #ADADAD; font-size: 16px; font-family: "Mont-light"; text-decoration: none;}
.footer-form{width: 100%;border-radius: 10px;background: #262626;padding: 30px 0;display: flex;justify-content: center;}
.footer-form-content{width: 80%;display: flex;flex-direction: column;gap: 30px;}
.footer-form-content-title{width: 100%;font-size: 18px;font-family: "Mont-Bold";}
.footer-form-content-input{width: 100%;position: relative;display: flex;}
.footer-form-content-input input{width: 100%;height: 53px;border-radius: 60px;background: #0D0D0D;border: none;display: flex;align-items: center;box-sizing: border-box;padding-left: 20px;}
.footer-form-content-input button{height: 100%;aspect-ratio: 1/1;display: flex;align-items: center;justify-content: center;border-radius: 100%;background: linear-gradient(203deg, #00571D 0%, #87C212 100%);border: none;position: absolute;top: 0;right: 0;}
.footer-form-content-input button img{width: 14px;}
.footer-form-content-description{width: 100%;font-size: 18px;font-family: "Mont-light";color: #ADADAD;}
.footer-partner{width: 85%;display: flex;flex-direction: column;gap: 50px;}
.footer-partner span{width: 100%;color: #ADADAD;font-size: 16px;font-family: "Mont-light";}
.footer-partner-logo{width: 100%;display: flex;flex-wrap: wrap;gap: 20px 10px;}
.footer-partner-logo img{height: 30px;}
.footer-warning{width: 85%;display: flex;flex-direction: column;gap: 10px;}
.footer-warning-age{width: 100%;display: flex;align-items: center;gap: 10px;}
.footer-warning-age-count{aspect-ratio: 1/1;padding: 3px;border-radius: 50%;border: 1px solid #ADADAD;color: #ADADAD;font-size: 12px;font-family: "Mont-Medium";display: flex;align-items: center;justify-content: center;}
.footer-warning-age-text{color: #ADADAD;font-size: 15px;font-family: "Mont-light";}
.footer-warning-info{width: 100%;color: #ADADAD;font-size: 14px;font-family: "Mont-light";}

.footer-tablet{display: none;}
.footer-menu-list.comp{display: none;}

.login-page {width: 100%;position: fixed;z-index: 1000;height: 100vh;backdrop-filter: blur(10px);-webkit-backdrop-filter: blur(10px);opacity: 0;pointer-events: none;transition: opacity .5s ease;}
.login-page.open{opacity: 1;pointer-events: all;}
.auth-block{width: 90%;max-width: 392px;position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);padding: 40px 0;background: black;border-radius: 10px;display: flex;flex-direction: column;align-items: center;gap: 15px;}
.auth-menu{width: 90%;display: flex;align-items: center;gap: 15px;}
.auth-menu-btn{width: fit-content;font-size: 14px;font-family: "Mont-Bold";color: #ADADAD;border: none;background: transparent;cursor: pointer;transition: color .3s ease;}
.auth-menu-btn.active{color: #87C212;}
.auth-content{width: 90%;display: flex;flex-direction: column;}
.auth-content-login, .auth-content-reg{width: 100%;display: flex;flex-direction: column;gap: 10px;display: none;transition: display .3s ease;}
.auth-content-login.active{display: flex;}
.auth-content-reg.active{display: flex;}
.auth-content-login-input{width: 100%;aspect-ratio: 273/40;border-radius: 10px;background: #454545;position: relative;display: flex;box-sizing: border-box;padding: 5px 20px;align-items: center;}
.auth-content-login-input-content{flex-grow: 1;display: flex;flex-direction: column;gap: 2px;}
.auth-content-login-input-content span{font-size: 10px;font-family: "Mont-Regular";color: rgba(255, 255, 255, 0.6);}
.auth-content-login-input-content input{width: 100%;flex-grow: 1;border: none;background: transparent;font-size: 12px;font-family: "Mont-Regular";color: white;}
input:focus {outline: none;box-shadow: none;}
.auth-content-login-img{width: 10.6px;height: 14.6px;}
.auth-content-login-img img{width: 100%;height: 100%;}
.auth-content-login-btn{width: 18px;height: 12px;border: none;background: transparent;}
.auth-content-login-btn img{width: 100%;height: 100%;}
.auth-check-box{width: 90%;display: flex;align-items: center;gap: 15px;}
.auth-check-box input{width: 20px;aspect-ratio: 1/1;background: #ADADAD;border-radius: 3px;}
.auth-check-box span{font-size: 12px;font-family: "Mont-Regular";color: white;}
.auth-login-btn{width: 100%;aspect-ratio: 273/53;border-radius: 100px;background: linear-gradient(141deg, #008C0E 0%, #093F0F 100%);border: none;display: flex;align-items: center;justify-content: center;color: white;font-family: "Mont-Bold";font-size: 18px;cursor: pointer;}
.auth-login-line{width: 100%;border: 1px solid white;margin-top: 20px;}
.password_change{width: 100%;display: flex;justify-content: center;font-size: 12px;font-family: "Mont-Regular";color: white;text-decoration: none;margin-top: 20px;}
.login-with-google{width: 100%;aspect-ratio: 273/40;box-sizing: border-box;padding: 2px;border: none;background: linear-gradient(141deg, #008C0E 0%, #093F0F 100%);border-radius: 10px;margin-top: 20px;}
.login-with-google-content{width: 100%;height: 100%;background: black;border-radius: 10px;display: flex;align-items: center;justify-content: center;position: relative;font-size: 12px;font-family: "Mont-Regular";color: white;}
.login-with-google-content img{width: 30px;aspect-ratio: 1/1;position: absolute;left: 20%;}

@media(min-width:800px){
    .mob{display: none;}
    header{background: #0B0B0B;padding: 0;}
    
    .logo-img{width: 11%; min-width: 80px;}
    .burger{display: none;}
    nav{width: 90%;}
    .nav-menu{display: grid; width: 60%; min-width: 400px; grid-template-columns: repeat(5, auto); justify-content: space-between; max-width: 536px;}
    .nav-menu-item{color: white; text-decoration: none; font-family: "Mont-Regular"; font-size: 16px; height: 100%; align-items: center; display: flex; flex-wrap: nowrap; justify-content: center;width: fit-content;}
    .nav-menu-item.active{border-bottom: 1px solid white;}

    .nav-login{display: flex;  display: flex; align-items: center; width: 20%; justify-content: space-between; min-width: 180px;}
    .nav-login-reg{height: fit-content;font-family: "Mont-Bold";font-size: 16px; padding: clamp(3px, 0.5vw + 0.4px, 9px) clamp(5px, 0.7vw + 0.4px, 15px); border-radius: 70px; color: white; border: 1px solid #FFFFFF; background: transparent;}
    .nav-login-in{height: fit-content;font-family: "Mont-Bold";font-size: 16px; padding: clamp(3px, 0.5vw + 0.4px, 9px) clamp(5px, 0.7vw + 0.4px, 15px); border-radius: 70px; color: white; background: linear-gradient(-135deg, #00571D 0%, #87C212 100%); border: 1px solid #093F0F;}
    
    .content{width: 90%;}

    .best-book{max-width: 842px; margin-left: auto; margin-right: auto; gap: 30px;}

    .article-section-content{flex-direction: row;}
    .article-section-content-article{width: 45%;}
    .article-section-content-list{width: 55%;}

    .content-main-add{flex-direction: row; justify-content: space-between; }
    .content-main{width: 70%; max-width: 800px;}
    .content-add{width: 30%; max-width: 320px;}

    .content-main-bet-list-item{flex-direction: row;}
    .content-main-bet-list-item-main{flex-grow: 1; gap: 10px; padding-bottom: 0px; padding-right: 10px; border-bottom: none; border-right: 1px solid white;margin-right: 10px; justify-content: center;}
    .content-main-bet-list-item-add{width: fit-content;}

    .content-main-title{font-size: 28px;}
    .content-main-part-title{font-size: 28px;}


    .footer-mobile{display: none;}
    .footer-tablet{display: flex;justify-content: space-between;  width: 90%; height: fit-content; max-width: 1600px;}
    .footer-tablet-logo{width: 30%;  display: flex; flex-direction: column; justify-content: space-between; max-width: 215px;}
    .footer-tablet-logo img{width: 100%; max-width: 181px;}
    .footer-warning{width: 100%;}
    .footer-tablet-partner{width: 30%;  display: flex; flex-direction: column;}
    .footer-tablet-partner-block{width: 100%;display: flex; flex-direction: column;  gap: 30px;}
    .footer-tablet-partner-title{width: 100%;color: #ADADAD;font-size: 16px;font-family: "Mont-light";}
    .footer-tablet-form{width: 40%; display: flex; flex-direction: column; gap: 30px;}

}

@media(min-width:1280px){
    .nav-login{max-width: 373px;}
    .nav-login-reg{font-size: 18px; padding: clamp(9px, 0.3vw + 0.4px, 10px) clamp(15px, 0.4vw + 0.4px, 20px);}
    .nav-login-in{font-size: 18px; padding: clamp(9px, 0.3vw + 0.4px, 10px) clamp(15px, 0.4vw + 0.4px, 20px);}
    .nav-login{min-width: auto; width: fit-content; gap: 10px;}
    .logo-img{max-width: 180px;}
    .content{width: 80%;}
    nav{width: 80%; }

    .content-main{width: 70%; max-width: 1192px;}
    .content-add{width: 30%; max-width: 384px;}

    .article-section-content-list{width: 55%; max-width: 863px; gap: 30px;}
    .article-section-content-article{width: 40%; max-width: 653px;  }

    .article-section-content-list-content.comp{display: flex;}
    .article-section-content-list-content{width: 40%;}

    .best-book{max-width: 1600px; width: 100%;}
    .best-book-title{width: 100%; max-width: none; font-size: 46px;}
    .best-book-logo{max-width: 653px; width: 30%;}
    .best-book-info{max-width: 486px; width: 30%;}
    .best-book-data{max-width: 266px;}

    .content-main-title{font-size: 46px;}
    .content-main-description{font-size: 18px;}

    .footer-tablet{width: 80%;}
    .footer-tablet-form{max-width: 404px;}
    .footer-tablet-partner{justify-content: space-between; max-width: 716px; width: 40%;}
    .footer-menu-list.comp{display: flex; gap:  10px 20px;}
    .footer-menu-list.tablet{display: none;}
}