body {
    background-color: #22461E;
}

.container-fluid {
    max-width: 90%;
}

.main-block{
    background-image: url("../images/background.png");
    background-repeat: no-repeat;
    background-size: cover;
    height: 992px;
}

.navbar {
    border-radius: 0 0 40px 40px;
    background-color: #3E654A;
}

.navbar-icon {
    max-height: 100px;
    max-width: 50px;
}

.nav-link {
    font-weight: 700;
    color: azure;
}

.nav-link:hover {
    color: #d1e1e1;
}

.nav-button {
    text-decoration: none;
    color: azure;
    font-weight: 700;
    padding: 10px 20px;
    background: rgb(62,187,96);
    background: linear-gradient(240deg, rgba(62,187,96,1) 0%, rgba(0,171,39,1) 100%);
    border-radius: 20px;
}
.nav-button:hover {
    cursor: pointer;
}
.nav-button:active {
    background: rgb(18,73,32);
    background: linear-gradient(240deg, rgba(18,73,32,1) 0%, rgba(0,83,19,1) 100%);
}

.nav-button-deactive {
    text-decoration: none;
    color: azure;
    font-weight: 700;
    padding: 7px 20px;
    border: 3px solid black ;
    border-radius: 20px;
    margin-right: 5px;
}

.nav-button-deactive:hover {
    cursor: pointer;
}

.nav-button-deactive:active {
    border: 3px solid #353535;
    color: #a1aaaa;
}

.title-block {
    margin-top: 200px;
    max-width: 400px;
    margin-left: 40px;
}

.title {
    font-family: "Krona One", sans-serif;
    font-weight: 700;
    font-size: 60px;
}

.description {
    font-family: "Krona One", sans-serif;
    font-weight: 700;
    font-size: 30px;
}

.link-image {
    max-width: 60px;
}

.link-image:hover {
    cursor: pointer;
}

.profile-image {
    max-width: 50px;
}


.about {
    margin-top: 450px;
    max-width: 100%;
    border-radius: 40px;
    background: rgb(10,33,17);
    background: linear-gradient(180deg, rgba(10,33,17,1) 0%, rgba(8,50,21,1) 100%);
}

.about-title {
    margin-top: 10px;
    font-size: 20px;
    color: azure;
    text-align: center;
    font-weight: 600;
}

.about-text {
    color: azure;
    font-weight: 500;
}
.underground {
    margin-top: 300px;
}

.discord-block {
    background: rgb(64,154,92);
    background: linear-gradient(180deg, rgba(64,154,92,1) 0%, rgba(19,147,59,1) 100%);
    border-radius: 20px;
    width: 100%;
    height: 90%;
    margin-bottom: 100px;
}

.discord {
    margin-left: 5%;
}

.discord-title {
    margin-top: 10px;
    font-size: 20px;
    color: azure;
    text-align: center;
    font-weight: 600;
}

footer {
    background-color: #346343;
}

.footer-title {
    margin-top: 10px;
    font-size: 20px;
    color: azure;
    text-align: center;
    font-weight: 600;
}

.footer-description {
    margin-top: 10px;
    font-size: 15px;
    color: azure;
    font-weight: 500;
}

.under {
    background-color: #404c40;
    max-width: 100%;
    height: 30px;
}

.footer-under {
    text-align: center;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 10px;
}

.js-effect {
    max-width: 100%;
}

.blog-block {
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}

.post-card {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(50, 60, 40, 0.2);
    background: #f4f5eb; /* очень светлый оливковый */
    transition: transform 0.2s;
}
.post-card:hover {
    transform: translateY(-4px);
}
.post-card__image-wrapper {
    width: 100%;
    height: 180px;
    overflow: hidden;
}
.post-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.post-card__body {
    padding: 16px;
}
.post-card__title {
    font-size: 1.25rem;
    margin: 0 0 8px;
    color: #2e3d2e; /* темный болотный */
}
.post-card__desc {
    font-size: 1rem;
    color: #556b2f; /* мохово-зеленый */
    line-height: 1.4;
}
.post-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-top: 1px solid #dde1d6;
}
.post-card__actions {
    display: flex;
    gap: 8px;
}
.post-card__form {
    margin: 0;
}
.btn {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.2s;
}
.btn__count {
    margin-left: 4px;
}
.btn--like {
    background: #556b2f; /* глубокий оливковый */
    color: #eef0e6; /* светлый оттенок текста */
}
.btn--like:hover {
    background: #6b8e23; /* оливково-зеленый */
}
.btn--dislike {
    background: #8b5a2b; /* грязно-коричневый */
    color: #f2e8dc; /* бежевый текст */
}
.btn--dislike:hover {
    background: #a5694f; /* светлее коричневый */
}
.post-card__readmore {
    font-size: 0.9rem;
    color: #4a7023; /* темно-зеленый */
    text-decoration: none;
    font-weight: 500;
}
.post-card__readmore:hover {
    text-decoration: underline;
}

.discord-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: #2f3136;
    border-radius: 0.5rem;
}
.discord-title {
    color: #fff;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    text-align: center;
}
/* Контейнер для iframe с сохранением пропорций 16:9 */
.embed-responsive {
    position: relative;
    width: 100%;
    /* высота = ширина * 9/16 */
    padding-top: 56.25%;
    overflow: hidden;
}
.embed-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}