* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'PT Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #323234;
    color: #f0f0f0;
    line-height: 1.7;
    overflow-x: hidden;
}

.site-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    color: #00fbc8;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #00d4ad;
    text-decoration: none;
}

.container-fluid {
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.k7x9m2p {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.px8zy4q {
    padding: 0 20px;
}

.g5t2w1n {
    margin: 0 -10px;
}

.v2n8k4m, .x4p9n7t, .h2k9m4x {
    padding: 0 10px;
}

.logo-img {
    max-width: 100%;
    height: auto;
}

.main-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 25px;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #f0f0f0;
    font-size: 15px;
    font-weight: 400;
    padding: 8px 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #00fbc8;
    background: rgba(0, 251, 200, 0.1);
}

.header-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
}

.btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-login {
    background: linear-gradient(135deg, #00fbc8 0%, #00d4ad 100%);
    color: #000;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 251, 200, 0.4);
}

.btn-register {
    background: linear-gradient(135deg, #ff2e09 0%, #e02708 100%);
    color: #fff;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 46, 9, 0.4);
}

.burger-menu {
    background: transparent;
    border: none;
    width: 30px;
    height: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    padding: 0;
}

.burger-line {
    width: 100%;
    height: 3px;
    background: #00fbc8;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, #1a1a1a 0%, #000000 100%);
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.mobile-menu.active {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-item {
    margin-bottom: 15px;
}

.mobile-nav-link {
    color: #f0f0f0;
    font-size: 16px;
    display: block;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background: rgba(0, 251, 200, 0.1);
    color: #00fbc8;
}

.online-counter {
    background: rgba(0, 251, 200, 0.1);
    padding: 10px 20px;
    border-radius: 20px;
    display: inline-block;
}

.counter-icon {
    font-size: 12px;
    margin-right: 5px;
}

.counter-text {
    color: #f0f0f0;
    font-size: 14px;
}

.counter-num {
    color: #00fbc8;
}

.hero-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2c 50%, #1a1a1a 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/up-banner.jpg') center/cover no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 20px;
    color: #e0e0e0;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #ff2e09 0%, #e02708 100%);
    color: #fff;
    padding: 15px 35px;
    font-size: 18px;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 46, 9, 0.5);
}

.btn-hero-secondary {
    background: linear-gradient(135deg, #00fbc8 0%, #00d4ad 100%);
    color: #000;
    padding: 15px 35px;
    font-size: 18px;
}

.btn-hero-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 251, 200, 0.5);
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.main-content {
    flex: 1;
    padding: 40px 0;
}

.content-container {
    margin-top: 40px;
}

.content-wrapper {
    background: #2a2a2c;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.content-wrapper h2 {
    color: #00fbc8;
    font-size: 32px;
    margin-bottom: 20px;
    margin-top: 40px;
}

.content-wrapper h2:first-child {
    margin-top: 0;
}

.content-wrapper h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 15px;
    margin-top: 30px;
}

.content-wrapper p {
    color: #e0e0e0;
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.8;
}

.content-wrapper ul,
.content-wrapper ol {
    color: #e0e0e0;
    margin-bottom: 20px;
    padding-left: 30px;
}

.content-wrapper li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.content-wrapper table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px auto;
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.content-wrapper th {
    background: linear-gradient(135deg, #ff2e09 0%, #e02708 100%);
    color: #fff;
    padding: 15px;
    text-align: left;
    font-weight: 700;
    border: 1px solid #ff2e09;
}

.content-wrapper td {
    padding: 15px;
    border: 1px solid #333;
    color: #e0e0e0;
    text-align: left;
}

.content-wrapper tr:nth-child(even) {
    background: #242426;
}

.content-wrapper tr:hover {
    background: rgba(0, 251, 200, 0.05);
}

.content-wrapper a {
    color: #00fbc8;
    text-decoration: underline;
}

.content-wrapper a:hover {
    color: #00d4ad;
}

.content-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
}

.pros-cons-block {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.pros-column,
.cons-column {
    flex: 1;
    background: #1a1a1a;
    padding: 25px;
    border-radius: 12px;
}

.pros-column {
    border-left: 4px solid #00fbc8;
}

.cons-column {
    border-left: 4px solid #ff2e09;
}

.pros-column h3 {
    color: #00fbc8;
}

.cons-column h3 {
    color: #ff2e09;
}

.winners-block {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
}

.winners-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    list-style: none;
    padding: 0;
}

.winner-item {
    background: #2a2a2c;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.winner-item:hover {
    transform: translateX(5px);
    background: rgba(0, 251, 200, 0.1);
}

.winner-name {
    color: #f0f0f0;
    font-weight: 700;
}

.winner-amount {
    color: #00fbc8;
    font-weight: 700;
    font-size: 18px;
}

.app-info-block {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2c 100%);
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
}

.download-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.btn-download {
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 700;
    background: linear-gradient(135deg, #ff2e09 0%, #e02708 100%);
    color: #fff;
    transition: all 0.3s ease;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 46, 9, 0.4);
}

.video-block {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.slot-game-block {
    background: linear-gradient(135deg, #2a2a2c 0%, #1a1a1a 100%);
    padding: 40px;
    border-radius: 12px;
    margin: 30px 0;
    text-align: center;
}

.slot-machine {
    background: #000;
    padding: 30px;
    border-radius: 15px;
    max-width: 500px;
    margin: 20px auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.slot-reels {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.slot-reel {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2c 100%);
    padding: 20px;
    border-radius: 10px;
    font-size: 48px;
    width: 80px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #00fbc8;
    box-shadow: inset 0 0 20px rgba(0, 251, 200, 0.2);
}

.slot-reel.spinning {
    animation: spin 0.1s linear infinite;
}

@keyframes spin {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-20px);
    }
}

.btn-spin {
    background: linear-gradient(135deg, #ff2e09 0%, #e02708 100%);
    color: #fff;
    padding: 15px 40px;
    font-size: 20px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-spin:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 46, 9, 0.5);
}

.btn-spin:active {
    transform: scale(0.95);
}

.slot-result {
    margin-top: 20px;
    font-size: 24px;
    font-weight: 700;
    color: #00fbc8;
    min-height: 30px;
}

.win-message {
    animation: bounce 0.5s ease;
}

@keyframes bounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.btn-claim-bonus {
    background: linear-gradient(135deg, #00fbc8 0%, #00d4ad 100%);
    color: #000;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 700;
    margin-top: 15px;
    display: inline-block;
}

.btn-claim-bonus:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 251, 200, 0.5);
}

.author-block {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    display: flex;
    gap: 25px;
    align-items: center;
}

.author-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #00fbc8;
}

.author-info h4 {
    color: #00fbc8;
    font-size: 24px;
    margin-bottom: 10px;
}

.author-bio {
    color: #e0e0e0;
    margin-bottom: 15px;
    line-height: 1.6;
}

.author-social {
    display: flex;
    gap: 10px;
}

.social-link {
    color: #00fbc8;
    padding: 8px 15px;
    border: 1px solid #00fbc8;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #00fbc8;
    color: #000;
}

.footer-main {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 50px 0 20px;
    margin-top: 60px;
}

.footer-top {
    margin-bottom: 40px;
}

.footer-title {
    color: #00fbc8;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-desc {
    color: #b0b0b0;
    font-size: 14px;
    line-height: 1.6;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
}

.footer-nav-item {
    margin-bottom: 10px;
}

.footer-nav-link {
    color: #b0b0b0;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-nav-link:hover {
    color: #00fbc8;
    padding-left: 5px;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.payment-logo {
    background: #fff;
    padding: 5px;
    border-radius: 5px;
}

.game-providers {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.provider-badge {
    background: rgba(0, 251, 200, 0.1);
    color: #00fbc8;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid rgba(0, 251, 200, 0.3);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
}

.license-info,
.copyright-info {
    margin-bottom: 15px;
}

.license-text,
.age-restrict,
.copyright-text,
.legal-text {
    color: #888;
    font-size: 13px;
    margin-bottom: 5px;
}

.fixed-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ff2e09 0%, #e02708 100%);
    padding: 15px 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.widget-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.widget-text {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.widget-btn {
    background: linear-gradient(135deg, #00fbc8 0%, #00d4ad 100%);
    color: #000;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
}

.widget-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 251, 200, 0.5);
    color: #000;
}

.k9m4x7p {
    position: relative;
}

.m7x4p2k {
    background: transparent;
}

.p8x2m5k {
    min-height: 200px;
}

.x4m9p7k {
    overflow: hidden;
}

.k2m8x5p {
    z-index: 2;
}

.p7m4x9k {
    position: relative;
}

.m9x4p2k {
    padding-right: 30px;
}

.x7p2m8k {
    animation: fadeInLeft 0.8s ease;
}

.k4m9x7p {
    animation: fadeInUp 0.6s ease;
}

.p8m2x5k {
    animation: fadeInUp 0.8s ease;
}

.m7x4p9k {
    animation: fadeInUp 1s ease;
}

.k9m2x7p {
    margin-right: 10px;
}

.x2m7k4p {
    position: relative;
}

.p9m4x7k {
    animation: fadeInRight 0.8s ease;
}

.m7x2k9p {
    animation: pulse 2s infinite;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wp-block-button__link {
    display: none;
}

.wp-element-caption {
    display: none;
}

.has-text-align-center {
    text-align: center;
}

.aligncenter {
    margin: 0 auto;
    display: block;
}

.cgtsc {
    max-width: 980px;
    margin: 32px auto;
    padding: 40px 32px 56px;
    background: linear-gradient(180deg, #2f2f31 0%, #262628 100%);
    border: 1px solid #444448;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
    color: #e8e8e8;
    font-family: 'PT Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.75;
}

.cgtsc > * {
    min-width: 0;
}

.cgtsc h1,
.cgtsc h2,
.cgtsc h3 {
    color: #ffffff;
    font-weight: 700;
    line-height: 1.22;
}

.cgtsc h1 {
    font-size: clamp(32px, 4vw, 48px);
    margin: 0 0 24px;
}

.cgtsc h2 {
    font-size: clamp(24px, 3vw, 34px);
    margin: 40px 0 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid #4a4a4d;
}

.cgtsc h3 {
    font-size: clamp(20px, 2.4vw, 24px);
    margin: 28px 0 12px;
}

.cgtsc p {
    margin: 0 0 18px;
    color: #d8d8d8;
}

.cgtsc a {
    color: #00fbc8;
    text-decoration: none;
    word-break: break-word;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.cgtsc a:hover {
    color: #00d7ac;
}

.cgtsc ul,
.cgtsc ol {
    margin: 0 0 24px;
    padding-left: 24px;
}

.cgtsc li {
    margin-bottom: 12px;
    color: #d8d8d8;
}

.cgtsc li::marker {
    color: #00fbc8;
}

.cgtsc strong {
    color: #ffffff;
}

.cgtsc em {
    color: #b9b9bd;
}

.cgtsc blockquote {
    margin: 24px 0;
    padding: 18px 20px;
    background: rgba(0, 251, 200, 0.06);
    border-left: 4px solid #00fbc8;
    border-radius: 0 14px 14px 0;
}

.cgtsc blockquote p:last-child {
    margin-bottom: 0;
}

.cgtsc table {
    width: 100%;
    margin: 24px 0;
    border-collapse: collapse;
    border-spacing: 0;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    background: #222224;
    border: 1px solid #444448;
    border-radius: 16px;
}

.cgtsc thead th {
    background: rgba(0, 251, 200, 0.12);
    color: #00fbc8;
    font-size: 15px;
    font-weight: 700;
    text-align: left;
    padding: 14px 16px;
    border-bottom: 1px solid #444448;
    white-space: nowrap;
}

.cgtsc tbody td {
    padding: 14px 16px;
    border-top: 1px solid #39393d;
    vertical-align: top;
    color: #e8e8e8;
    min-width: 180px;
}

.cgtsc tbody tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.02);
}

.cgtsc hr {
    margin: 32px 0;
    border: 0;
    border-top: 1px solid #4a4a4d;
}

.cgtsc img,
.cgtsc iframe {
    max-width: 100%;
    border-radius: 14px;
}

.cgtsc table::-webkit-scrollbar {
    height: 8px;
}

.cgtsc table::-webkit-scrollbar-thumb {
    background: #4a4a4d;
    border-radius: 999px;
}

.cgtsc table::-webkit-scrollbar-track {
    background: #2a2a2c;
}

@media (max-width: 991px) {
    .cgtsc {
        margin: 24px auto;
        padding: 32px 24px 48px;
        border-radius: 20px;
    }

    .cgtsc h2 {
        margin-top: 34px;
    }

    .cgtsc thead th,
    .cgtsc tbody td {
        padding: 12px 14px;
    }
}

@media (max-width: 767px) {
    .cgtsc {
        margin: 20px auto;
        padding: 24px 16px 40px;
        font-size: 15px;
        line-height: 1.7;
        border-radius: 18px;
    }

    .cgtsc h1 {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .cgtsc h2 {
        font-size: 24px;
        margin: 28px 0 16px;
        padding-bottom: 8px;
    }

    .cgtsc h3 {
        font-size: 20px;
        margin: 22px 0 10px;
    }

    .cgtsc p {
        margin-bottom: 16px;
    }

    .cgtsc ul,
    .cgtsc ol {
        padding-left: 20px;
        margin-bottom: 20px;
    }

    .cgtsc li {
        margin-bottom: 10px;
    }

    .cgtsc blockquote {
        margin: 20px 0;
        padding: 16px 18px;
    }

    .cgtsc thead th,
    .cgtsc tbody td {
        min-width: 160px;
        padding: 11px 12px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .cgtsc {
        margin: 16px auto;
        padding: 20px 14px 32px;
        font-size: 14px;
        border-radius: 16px;
    }

    .cgtsc h1 {
        font-size: 26px;
    }

    .cgtsc h2 {
        font-size: 22px;
    }

    .cgtsc h3 {
        font-size: 18px;
    }

    .cgtsc table {
        margin: 20px 0;
        border-radius: 14px;
    }

    .cgtsc thead th,
    .cgtsc tbody td {
        min-width: 150px;
        padding: 10px 11px;
        font-size: 13px;
    }

    .cgtsc blockquote {
        padding: 14px 16px;
        border-left-width: 3px;
    }
}

.app-info-section {
    margin: 40px 0;
}

.app-info-section .app-info-block {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 32px;
    background: linear-gradient(180deg, #2f2f31 0%, #262628 100%);
    border: 1px solid #444448;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
    color: #e8e8e8;
}

.app-info-section .app-info-block h2,
.app-info-section .app-info-block h3 {
    margin: 0;
    color: #ffffff;
    font-family: 'PT Sans', sans-serif;
    font-weight: 700;
    line-height: 1.22;
}

.app-info-section .app-info-block h2 {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 20px;
}

.app-info-section .app-info-block h3 {
    font-size: clamp(20px, 2.4vw, 26px);
    margin-top: 30px;
    margin-bottom: 16px;
}

.app-info-section .app-info-block p {
    margin: 0 0 18px;
    color: #d8d8d8;
    font-size: 16px;
    line-height: 1.75;
}

.app-info-section .app-info-block table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
    border-spacing: 0;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    background: #222224;
    border: 1px solid #444448;
    border-radius: 18px;
}

.app-info-section .app-info-block thead th {
    background: rgba(0, 251, 200, 0.12);
    color: #00fbc8;
    font-size: 15px;
    font-weight: 700;
    text-align: left;
    padding: 14px 16px;
    border-bottom: 1px solid #444448;
    white-space: nowrap;
}

.app-info-section .app-info-block tbody td {
    padding: 14px 16px;
    border-top: 1px solid #39393d;
    vertical-align: top;
    color: #e8e8e8;
    min-width: 180px;
}

.app-info-section .app-info-block tbody tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.02);
}

.app-info-section .download-buttons {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 12px;
}

.app-info-section .btn-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 14px 18px;
    background: linear-gradient(135deg, #ff2e09 0%, #ff5b23 100%);
    border: 1px solid #ff2e09;
    border-radius: 16px;
    color: #ffffff;
    font-family: 'PT Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.app-info-section .btn-download:hover {
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(255, 46, 9, 0.22);
}

.app-info-section .app-info-block ol {
    margin: 0;
    padding-left: 24px;
}

.app-info-section .app-info-block li {
    margin-bottom: 12px;
    color: #d8d8d8;
    font-size: 16px;
    line-height: 1.7;
}

.app-info-section .app-info-block li::marker {
    color: #00fbc8;
    font-weight: 700;
}

.app-info-section .app-info-block table::-webkit-scrollbar {
    height: 8px;
}

.app-info-section .app-info-block table::-webkit-scrollbar-thumb {
    background: #4a4a4d;
    border-radius: 999px;
}

.app-info-section .app-info-block table::-webkit-scrollbar-track {
    background: #2a2a2c;
}

@media (max-width: 991px) {
    .app-info-section {
        margin: 32px 0;
    }

    .app-info-section .app-info-block {
        padding: 32px 24px;
        border-radius: 20px;
    }

    .app-info-section .download-buttons {
        grid-template-columns: 1fr 1fr;
    }

    .app-info-section .app-info-block thead th,
    .app-info-section .app-info-block tbody td {
        padding: 12px 14px;
    }
}

@media (max-width: 767px) {
    .app-info-section {
        margin: 24px 0;
    }

    .app-info-section .app-info-block {
        padding: 24px 16px;
        border-radius: 18px;
    }

    .app-info-section .app-info-block h2 {
        margin-bottom: 16px;
    }

    .app-info-section .app-info-block h3 {
        margin-top: 24px;
        margin-bottom: 14px;
    }

    .app-info-section .app-info-block p,
    .app-info-section .app-info-block li {
        font-size: 15px;
        line-height: 1.7;
    }

    .app-info-section .download-buttons {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .app-info-section .btn-download {
        min-height: 52px;
        padding: 13px 16px;
        font-size: 14px;
        border-radius: 14px;
    }

    .app-info-section .app-info-block thead th,
    .app-info-section .app-info-block tbody td {
        min-width: 160px;
        padding: 11px 12px;
        font-size: 14px;
    }

    .app-info-section .app-info-block ol {
        padding-left: 20px;
    }
}

@media (max-width: 480px) {
    .app-info-section .app-info-block {
        padding: 20px 14px;
        border-radius: 16px;
    }

    .app-info-section .app-info-block p,
    .app-info-section .app-info-block li {
        font-size: 14px;
    }

    .app-info-section .app-info-block thead th,
    .app-info-section .app-info-block tbody td {
        min-width: 150px;
        padding: 10px 11px;
        font-size: 13px;
    }

    .app-info-section .btn-download {
        font-size: 13px;
    }
}

.faq-section {
    max-width: 980px;
    margin: 40px auto;
    padding: 40px 32px;
    background: linear-gradient(180deg, #2f2f31 0%, #262628 100%);
    border: 1px solid #444448;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
    color: #e8e8e8;
}

.faq-section h2 {
    margin: 0 0 28px;
    color: #ffffff;
    font-family: 'PT Sans', sans-serif;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.2;
    font-weight: 700;
    text-align: center;
}

.faq-section h3 {
    margin: 0;
    padding: 22px 56px 22px 24px;
    position: relative;
    background: linear-gradient(180deg, #363638 0%, #2c2c2e 100%);
    border: 1px solid #4a4a4d;
    border-radius: 18px;
    color: #ffffff;
    font-family: 'PT Sans', sans-serif;
    font-size: clamp(18px, 2.2vw, 22px);
    line-height: 1.35;
    font-weight: 700;
}

.faq-section h3::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 22px;
    width: 12px;
    height: 12px;
    border-right: 2px solid #00fbc8;
    border-bottom: 2px solid #00fbc8;
    transform: translateY(-60%) rotate(45deg);
}

.faq-section p {
    margin: 0 0 16px;
    padding: 16px 24px 0;
    color: #d8d8d8;
    font-family: 'PT Sans', sans-serif;
    font-size: 16px;
    line-height: 1.75;
}

.faq-section h3 + p {
    margin-bottom: 18px;
    padding-bottom: 22px;
    background: rgba(255, 255, 255, 0.02);
    border-left: 1px solid #4a4a4d;
    border-right: 1px solid #4a4a4d;
    border-bottom: 1px solid #4a4a4d;
    border-radius: 0 0 18px 18px;
}

.faq-section h3:not(:first-of-type) {
    margin-top: 16px;
}

@media (max-width: 991px) {
    .faq-section {
        margin: 32px auto;
        padding: 32px 24px;
        border-radius: 20px;
    }

    .faq-section h2 {
        margin-bottom: 24px;
    }

    .faq-section h3 {
        padding: 20px 52px 20px 20px;
    }

    .faq-section p {
        padding: 14px 20px 0;
        font-size: 15px;
    }

    .faq-section h3 + p {
        padding-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .faq-section {
        margin: 24px auto;
        padding: 24px 16px;
        border-radius: 18px;
    }

    .faq-section h2 {
        margin-bottom: 20px;
    }

    .faq-section h3 {
        padding: 18px 46px 18px 16px;
        border-radius: 16px;
        font-size: 18px;
    }

    .faq-section h3::before {
        right: 18px;
        width: 10px;
        height: 10px;
    }

    .faq-section p {
        padding: 14px 16px 0;
        font-size: 14px;
        line-height: 1.7;
    }

    .faq-section h3 + p {
        padding-bottom: 18px;
        border-radius: 0 0 16px 16px;
    }

    .faq-section h3:not(:first-of-type) {
        margin-top: 14px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        margin: 20px auto;
        padding: 20px 14px;
        border-radius: 16px;
    }

    .faq-section h2 {
        font-size: 26px;
    }

    .faq-section h3 {
        padding: 16px 42px 16px 14px;
        font-size: 17px;
    }

    .faq-section p {
        padding: 12px 14px 0;
        font-size: 13px;
    }

    .faq-section h3 + p {
        padding-bottom: 16px;
    }
}