a {text-decoration: none;}
body { max-width:1120px; margin: 0 auto; background-color: #0b0d0c; font-family: Roboto, sans-serif; text-align: left; line-height: 1.4;}
/* Шапка — компактный навбар */
header {
    background: linear-gradient(180deg, #0a0b0c 0%, #000 50%, #0d0e0f 100%);
    height: 72px;
    padding: 0;
    position: relative;
    margin: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.header-content {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-content .logo {
    display: flex;
    align-items: center;
}
.header-content .logo svg {
    display: block;
    transition: opacity 0.2s ease;
}
.header-content .logo:hover svg {
    opacity: 0.9;
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hbutton-reg {
    background: transparent;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    color: #e8e9ea;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.hbutton-reg:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
}

.hbutton {
    background: #bbeb00;
    padding: 12px 22px;
    font-size: 15px;
    font-weight: 700;
    color: #000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: none;
    box-shadow: 0 0 20px -4px rgba(187, 235, 0, 0.4);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.hbutton:hover {
    background: #c8f01a;
    transform: translateY(-1px);
    box-shadow: 0 0 28px -2px rgba(187, 235, 0, 0.5);
}

article {margin:30px 0; background-color:#141517; padding: 30px; border-radius: 10px; border: 1px solid #2c2c2c; color: #fff; box-shadow: 0 12px 19.2px .8px #26374d0d;}

/* Баннер в шапке — фиксированная высота, стабильная вёрстка */
.flextop {
    display: block;
    position: relative;
    margin-top: -16px;
    width: 100%;
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.banner1 {
    margin: 30px 0;
    border: 1px solid rgba(187, 235, 0, 0.2);
    background: linear-gradient(90deg, rgba(20, 21, 23, 0.95) 0%, rgba(20, 21, 23, 0.7) 42%, transparent 55%),
                url(/img/bnnrr.webp) no-repeat right top;
    background-size: 100% 100%, auto 100%;
    background-color: #141517;
    height: 280px;
    max-width: 100%;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    padding: 0 32px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(187, 235, 0, 0.06);
}
.banner1 .banner-content {
    position: relative;
    z-index: 2;
    max-width: 420px;
}
.banner1 .banner-badge {
    display: inline-block;
    background: rgba(187, 235, 0, 0.15);
    color: #bbeb00;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
    border: 1px solid rgba(187, 235, 0, 0.35);
}
.banner1 p {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 14px 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}
.banner-btn {
    background: #bbeb00;
    box-shadow: 0 0 28px -6px rgba(187, 235, 0, 0.5), 0 4px 12px rgba(0, 0, 0, 0.2);
    padding: 15px 32px;
    font-size: 18px;
    color: #000;
    font-weight: 700;
    border-radius: 10px;
    margin: 0;
    z-index: 2;
    position: relative;
    display: inline-block;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    cursor: pointer;
}
.banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 36px -4px rgba(187, 235, 0, 0.6), 0 6px 16px rgba(0, 0, 0, 0.25);
}

@keyframes pulseBorder {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); opacity: 1; }
}




.tabletop { width: 38%; height:230px; color:#fff; background:#1f2021; border-radius: 10px; padding:20px; box-sizing: border-box;}
.tabletop > div {
    margin-bottom:15px;
    display:flex; align-items: center; gap: 10px;
}
.daxil {background-color:#2765a7; padding:10px 30px; border-radius:18px;}
.app {background:linear-gradient(to top,#0a9e4f,#41b175); padding:13px 20px; border-radius:18px;}

img {width:80%; margin:auto; display:table; border-radius:10px;}

/* Таблицы — обновлённый стиль в тех же цветах */
table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 24px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

thead {
    background: #464d2b;
    color: #bbeb00;
}

thead th {
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 15px;
    border-bottom: 2px solid rgba(187, 235, 0, 0.25);
}
thead th:first-child {
    border-right: 1px solid rgba(187, 235, 0, 0.15);
}

th, td {
    padding: 14px 20px;
    border: none;
}

tbody tr {
    background-color: #1a1c1d;
    transition: background-color 0.15s ease;
}
tbody tr:nth-child(even) {
    background-color: #1f2021;
}
tbody tr:hover {
    background-color: #252829;
}

tbody td {
    color: #e8e9ea;
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
tbody td:first-child {
    color: #b8babc;
    font-weight: 500;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

tbody tr:last-child td {
    border-bottom: none;
}

.table-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 100%;
    margin-top:15px;
}

.table-item {
    flex: 1 1 calc(50% - 10px);
    background: #f9f9f9;
    padding: 15px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
}

.table-item.green {
    background: #d4edda;
}

.login-block {background-color: #003c7c; padding:20px; border-radius:15px; color:#Fff;}

.author img{width: 30px; height: 30px; border-radius: 50%; display: inline-table; margin-bottom:-9px}
.author p {margin: 0; font-size: 18px; font-weight: bold;}
.author span {font-size: 16px; font-weight: normal;}

.author-block {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    margin-top: 40px;
}

.author-image {
    flex-shrink: 0;
}

.author-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #003c7c;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.author-info {
    flex-grow: 1;
}

.author-info h3 {
    margin: 0 0 10px 0;
    color: #003c7c;
    font-size: 1.8rem;
}

.author-title {
    color: #666;
    font-size: 1.1rem;
    margin: 0 0 15px 0;
    font-weight: 500;
}

.author-bio {
    color: #444;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    body {margin: 0 10px;}
    header {height: 64px;}
    .header-content {height: 64px; padding: 0 16px;}
    .header-content .logo svg {width: 120px; height: auto;}
    .hbutton {padding: 10px 16px; font-size: 14px;}
    .hbutton-reg {padding: 10px 16px; font-size: 14px;}
    .header-buttons {gap: 8px;}
    .flextop {margin-top: 0; padding: 0 15px;}
    .banner1 {height: 240px; margin: 15px 0; padding: 0 20px;}
    .banner1 .banner-content {max-width: 100%;}
    .banner1 .banner-badge {font-size: 11px; padding: 5px 10px; margin-bottom: 8px;}
    .banner1 p {font-size: 18px; margin: 0 0 10px 0;}
    .banner-btn {padding: 10px 18px; font-size: 14px;}
    .tabletop {display:flex; padding:12px; width:100%; height:auto; justify-content:space-between; gap:10px;}
    .tabletop > div {flex-direction: column; font-size:15px; max-width: 100%; margin-bottom:0; padding:10px; }
    article {margin:20px 0; padding:16px;}
    img {width:100%;}
    .table-container {flex-direction: column; gap:10px;}
    .table-item {flex: 1 1 100%; padding:12px;}
    .author-block {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    .author-image img {
        width: 100px;
        height: 100px;
    }

    .author-info h3 {
        font-size: 1.5rem;
    }
}

.button {
    position: relative;
    padding: 10px 20px;
    background-color: red;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    outline: none;
    box-sizing: border-box;
}

.button::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 5px;
    animation: pulseBorder 1.5s infinite ease-in-out;
    pointer-events: none; /* Обводка не мешает взаимодействию с кнопкой */
}


/* Футер — в стиле шапки и article */
.footer {
    background: linear-gradient(180deg, #0d0e0f 0%, #0a0b0c 100%);
    color: #e8e9ea;
    padding: 48px 0 32px;
    margin-top: 48px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
}

.footer-content {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    flex-wrap: wrap;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top .footer-logo .logo {
    display: flex;
    align-items: center;
}
.footer-top .footer-logo .logo svg {
    height: 20px;
    width: auto;
}

.age-restriction {
    background: rgba(187, 235, 0, 0.12);
    color: #bbeb00;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid rgba(187, 235, 0, 0.3);
}

.footer-middle {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 24px;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.payment-methods > * {
    display: inline-block;
    width: 28px;
    height: 28px;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}
.payment-methods > *:hover {
    opacity: 1;
}

.payment-methods img {
    height: 28px;
    width: auto;
}

.footer-disclaimer {
    text-align: center;
    font-size: 12px;
    line-height: 1.6;
    color: #9ca0a4;
    max-width: 720px;
    margin: 0 auto 24px;
    padding: 0 16px;
}

.footer-legal {
    margin-bottom: 0;
    text-align: center;
}

.license-info {
    margin-bottom: 0;
}

.gcb-logo {
    height: 28px;
    width: auto;
    display: inline-block;
    opacity: 0.8;
}

.license-info p {
    font-size: 11px;
    color: #7a7e82;
    line-height: 1.4;
    margin: 8px 0 0;
}

.policy-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.policy-links a {
    color: #b8babc;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
}

.policy-links a:hover {
    color: #bbeb00;
}


@media (max-width: 768px) {
    .footer {
        padding: 32px 0 24px;
    }

    .footer-content {
        padding: 0 16px;
    }

    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        margin-bottom: 24px;
        padding-bottom: 20px;
    }

    .footer-middle {
        margin-bottom: 20px;
        gap: 16px;
    }

    .payment-methods {
        gap: 12px;
    }

    .payment-methods > * {
        width: 24px;
        height: 24px;
    }

    .footer-disclaimer {
        font-size: 11px;
        padding: 0 8px;
        margin-bottom: 20px;
    }

    .policy-links {
        justify-content: center;
        gap: 16px;
    }
}
