.footer__nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer__nav .container ul {
    display: flex;
    align-items: center;
    gap: 20px;
}
.footer__nav .container ul li {
    list-style: none;
    
}
.footer__nav .container a {
    color: #FFF !important;
    text-decoration: none;
}
.footer__nav .container ul li  a {
    color: #FFF !important;
}

.payment-method-grid-7 {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: var(--color-primary-light);

}
.payment-method-grid-7 img {
    width: 60%;
    object-fit: contain;
}
.payment-method-grid-7 .items {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}
.payment-method-grid-7 .items:nth-child(even) {
    background: var(--color-primary-dark);
}
.payment-method-grid-7 + button {
    display: table;
    margin: 30px auto;
}
.payment-method {
    margin: 50px 0;
}
@media (width < 768px) {
    .payment-method-grid-7 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        background: var(--color-primary-light);

    }
}
.providers {
    margin: 50px 0;
}
.providers h2 {
    margin-bottom: 30px;
}
.btn-show {
    background: linear-gradient(0deg,#e73d00,#ffbf00);
    margin: 80px auto 50px !important;
    color: #FFF;
    padding: 9px 40px;
    font-size: 15px;
    border-radius: 10px;
    border: 0;
    display: table;
    cursor: pointer;
}
 .btn-show:hover {
    transition: 0.5s ease;
    opacity: .6;
}

.table-block-standart {
    /* Мобильная адаптация */
    /* Анимации */
}
.table-block-standart .table-container {
    overflow-x: auto;
    padding: 0;
}
.table-block-standart table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}
.table-block-standart th, .table-block-standart td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #e1e8ed;
    vertical-align: top;
}
.table-block-standart th {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    font-weight: 700;
    font-size: 1.1rem;
    color: #2c3e50;
    position: sticky;
    left: 0;
    z-index: 10;
}
.table-block-standart td:first-child {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    font-weight: 600;
    color: #2c3e50;
    position: sticky;
    left: 0;
    z-index: 5;
}
.table-block-standart td {
    font-size: 1rem;
    line-height: 1.6;
    color: #34495e;
}
.table-block-standart tr:hover {
    background: rgba(52, 152, 219, 0.05);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}
.table-block-standart .payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.table-block-standart .payment-tag {
    background: #031838;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}
.table-block-standart .crypto-tag {
    background: linear-gradient(0deg, #e73d00, #ffbf00);
}
.table-block-standart .currency-list {
    line-height: 1.8;
}
.table-block-standart .highlight {
    background: linear-gradient(135deg, #e8f5e8, #d4edda);
    border-left: 4px solid #27ae60;
    padding: 15px;
    border-radius: 8px;
}
.table-block-standart .limit-info {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border-left: 4px solid #f39c12;
    padding: 15px;
    border-radius: 8px;
}
@media (max-width: 768px) {
    .table-block-standart {
        /* Стек-стиль для очень маленьких экранов */
    }
    .table-block-standart body {
        padding: 10px;
    }
    .table-block-standart .header {
        padding: 20px;
    }
    .table-block-standart .header h1 {
        font-size: 1.5rem;
    }
    .table-block-standart .header p {
        font-size: 1rem;
    }
    .table-block-standart th, .table-block-standart td {
        padding: 15px 10px;
        font-size: 0.9rem;
    }
    .table-block-standart .payment-methods {
        gap: 5px;
    }
    .table-block-standart .payment-tag {
        padding: 4px 8px;
        font-size: 0.8rem;
    }
}
@media (max-width: 768px) and (max-width: 480px) {
    .table-block-standart table, .table-block-standart thead, .table-block-standart tbody, .table-block-standart th, .table-block-standart td, .table-block-standart tr {
        display: block;
    }
    .table-block-standart thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    .table-block-standart tr {
        border: 1px solid #ccc;
        margin-bottom: 15px;
        border-radius: 10px;
        background: white;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    .table-block-standart td {
        border: none;
        position: relative;
        padding: 15px 15px 15px 35%;
        text-align: left;
    }
    .table-block-standart td:before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        width: 30%;
        padding-right: 10px;
        white-space: nowrap;
        font-weight: bold;
        color: #2c3e50;
    }
    .table-block-standart td:first-child {
        background: #125099;
        color: white;
        font-weight: bold;
        text-align: center;
        padding: 15px;
        border-radius: 0;
    }
    .table-block-standart td:first-child:before {
        display: none;
    }
}
.table-block-standart .container {
    animation: slideIn 0.8s ease-out;
}
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
body {
    color: #FFF;
}

header ul {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

header ul li {
    list-style: none;
}
header ul li a {
    text-decoration: none;
    color: white;
    opacity : .8;
}
header ul li + li {
    display: flex;
    align-items: center;
    gap: 15px;
}
header ul li + li:before {
    content: "|";


}

.download {
    margin: 50px 0;
}

.download-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    text-align: center;
    background: #031e47;
    border-radius: 10px;
    border: 1px solid #39177b;
    overflow: hidden;

}
.download-box h2 {
    font-size: 41px;
}
.download-box  img {
    max-width: 300px;
    rotate: 15deg;
    filter: drop-shadow(12px 54px 174px #f58605);
}
@media (width < 769px) {
    .download-box {
        display: flex;
        flex-direction: column-reverse;
        padding: 0 10px;
    }
    .download-box h2 {
        font-size: 21px;
    }
    .download-box  img {
        max-width: 150px;
    }
}

.my-btn-app {
    background: #05224c;
    border: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    overflow: hidden;
    border-radius: 10px;
    margin: 50px 0;
    cursor: pointer;
}
.my-btn-app img {
    width: 80px;
    rotate: 15deg;
    filter: drop-shadow(2px 4px 76px #FFF);
}
.my-btn-app strong {
    color: #fff;
    font-size: 40px;
}
.my-btn-app span {
    background: linear-gradient(0deg, #e73d00, #ffbf00);
    color: #FFF;
    padding: 20px 40px;
    font-size: 21px;
    font-weight: 700;
}
@media(width < 769px) {
    .my-btn-app {
        display: grid;
        justify-items: center;
        gap: 20px;
    }
    .my-btn-app img {
        width: 150px;
    }
    .header-not-authorized {
        position: relative;
    }
    header ul {
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
        gap: 15px;
        position: absolute;
        top: 100%;
        padding: 20px 0;
        width: 100%;
        justify-content: center;
    }
    main {
        margin-top: 40px;
    }
}