* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

h1,h2,h3,p,div,span,ul,li {
    margin: 0;
    padding: 0;
}

ul,li {
    list-style: none;
}

a {
    color: inherit;
}

button {
    border: none;
    outline: none;
    font-family: inherit;
    cursor: pointer;
}

body {
    font-family: 'Roboto', sans-serif;
    width: 100%;
    height: 100%;
    overflow-x: hidden;

    position: relative;
}

.container {
    padding: 0 24px;
}

.divider {
    height: 25px;
    width: 1px;
    background: rgba(154, 160, 166, 0.2);
    margin-left: 15px;
    margin-right: 15px;
}

.main_text {
    font-size: 0.875rem;
    color: rgba(95, 99, 104, 0.9);

    line-height: 1.25rem;
}

.blue-text {
    color: #174ea6;
    font-weight: 400;
    text-decoration: none;
    font-size: 1rem;
}

.small_text {
    font-size: 13px;
    color: rgba(95, 99, 104, 0.7);
}

/*Header section*/
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 14px;
    /*overflow: hidden;*/
    height: 60px;

    position: fixed;
    background-color: #ffffff;
    top: 0;
    left: 0;
    width: 100%;
}

.header__icons {
    display: flex;
    align-items: center;
    gap: 27px;
}

.profile-logo {
    height: 30px;
    width: 30px;
    overflow: hidden;
}

.icon-wrapper {
    height: 20px;
    width: auto;
}

.icon-wrapper img {
    height: 100%;
    width: 100%;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;

}

.logo-wrapper img {
    height: 40px;
    width: 40px;
}

.logo-wrapper .logo-text {
    color: #5f6368;
    font-size: 1.5rem;
    font-weight: 400;
}

.header.scrolled {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.3s ease-in-out;
}


/*App section*/
.app {
    display: flex;
    flex-direction: column;
    color: #000000;

    /*background-color: #202124;*/
    padding-top: 90px;
}


.app-text__wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}


h1 {
    font-size: 26px;
    font-weight: 400;
}

.app__header {
    display: flex;
    gap: 20px;
}

.app__logo {
    border-radius: 12px;
    overflow: hidden;
}

.app__header img {
    height: 90px;
    width: auto;
}


.app_btn_wrapper {
    margin-top: 40px;
    margin-bottom: 10px;
}

.main_btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 16px;
    background-color: #174ea6;
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
}

.app__icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    margin-top: 20px;
}

.app__icon {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #174ea6;
}

.app_rating {
    display: flex;
    align-items: center;
    margin-top: 30px;
    overflow-x: scroll;

    -ms-overflow-style: none;  /* IE и Edge */
    scrollbar-width: none;  /* Firefox */
}

.rating__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 80px;
}

.rating__title {
    font-size: 14px;
    font-weight: 500;
    color: #000000;
}

.rating__text {
    font-size: 12px;
    font-weight: 400;
    color: rgb(154, 160, 166);
    display: flex;
    flex-wrap: nowrap;
}

.age {
    color: #000000;
    background-color: #ffffff;

    font-size: 10px;
    font-weight: 800;
    border: 1px solid #000000;
    padding: 1px;

    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
}

.app_description {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 40px;
}

.description__item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(154, 160, 166, 0.8);
    font-size: 15px;
}

.description__item img {
    height: 12px;
}

.app_description span {
    font-size: 14px;
    color: #5f6368;
}

/*About section*/
.section_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    margin-top: 20px;
}

.section_title img {
    height: 12px;
}

h2 {
    font-size: 20px;
    font-weight: 400;
}


.description__card {
    padding: 20px;
    border: 2px solid rgba(154, 160, 166, 0.3);
    border-radius: 12px;
    margin-bottom: 20px;
    margin-top: 30px;
}

.description__list {
    display: flex;
    flex-direction: column;
    gap: 20px;

    margin-bottom: 20px;
}

.description__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.description__list li span {
    color: rgba(95, 99, 104, 0.7);

}


/*Rating section*/
.rating {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #000000;
}

.rating_left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 30%;
}

.rating_left__number {
    font-size: 50px;
}

.rating_left__stars {
    display: flex;
    align-items: center;
    gap: 5px;
}

.rating_left__stars img {
    height: 14px;
}

.rating-block {
    width: 300px;
    font-family: sans-serif;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.rating-label {
    width: 12px;
    font-size: 14px;
    color: #555;
}

.rating-bar {
    flex: 1;
    height: 8px;
    background: #e5e7eb; /* серая полоса */
    border-radius: 999px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    width: calc(var(--value, 0) * 1%);
    background: #174ea6; /* нужный зелёный */
    border-radius: 999px;
    transition: width 0.3s ease;
}


/*Comments section*/
.comments {
    display: flex;
    flex-direction: column;
    gap: 40px;

    margin-top: 40px;
    margin-bottom: 30px;
}

.comment_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.comment_stars {
    display: flex;
    align-items: center;
    gap: 20px;

    margin-top: 30px;
    margin-bottom: 10px;
}

.comment_stars img {
    height: 11px;
}

.ava {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    color: white;
    font-weight: 500;
    font-size: 14px;

    margin-right: 10px;
}



/*Footer section*/
.footer {
    border-top: 1px solid rgba(154, 160, 166, 0.3);
    display: flex;
    flex-direction: column;
    gap: 10px;

    margin-bottom: 60px;
}

.footer a {
    text-decoration: none;
}

h3 {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(95, 99, 104, 0.8);

    margin-top: 40px;
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: 10px;

    margin-bottom: 20px;
}


/*Bottom panel*/
.bottom_panel {
    position: fixed;
    bottom: 0;
    z-index: 5;
    background-color: #ffffff;

    width: 100%;
    height: 60px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-top: 1px solid rgba(154, 160, 166, 0.3);

}

.bottom_panel img {
    height: 18px;
}

.bottom_panel__list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 10px;
    padding-right: 10px;
}

.links-list {
    display: flex;
    gap: 24px;
    align-items: center;

    margin-top: 10px;
}

.bottom_panel__list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(95, 99, 104, 1);
}