/* Main Styles for Azino777 Mobile */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', Helvetica, sans-serif;
    background-color: #020100;
    color: #e8e8e8;
    line-height: 1.6;
    overflow-x: hidden;
}

.body-wrapper-8kx2 {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-wrapper-3px9 {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Header Styles */
.qx9w2-header {
    background: linear-gradient(135deg, #090111 0%, #1a0525 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    border-bottom: 2px solid #a8c94e;
}

.logo-link-8kx2 {
    display: inline-block;
    transition: transform 0.3s ease;
}

.logo-link-8kx2:hover {
    transform: scale(1.05);
}

.logo-img-7px {
    max-height: 50px;
    width: auto;
}

.nav-wrapper-5mq {
    display: none;
}

@media (min-width: 768px) {
    .nav-wrapper-5mq {
        display: block !important;
    }
}

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

.nav-item-2pl {
    display: inline-block;
}

.nav-link-8xm {
    color: #e8e8e8;
    text-decoration: none;
    padding: 8px 15px;
    display: block;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-link-8xm:hover {
    color: #a8c94e;
    transform: translateY(-2px);
}

.online-counter-4xz {
    background: rgba(168, 201, 78, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.online-dot-9kp {
    width: 8px;
    height: 8px;
    background: #a8c94e;
    border-radius: 50%;
    display: inline-block;
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

.online-text-2mw {
    color: #e8e8e8;
    font-size: 14px;
}

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

.btn-login-4kz {
    background: #0b80dc;
    color: #fff;
}

.btn-login-4kz:hover {
    background: #0966b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(11, 128, 220, 0.4);
    color: #fff;
}

.btn-signup-2xv {
    background: #a8c94e;
    color: #090111;
}

.btn-signup-2xv:hover {
    background: #8fb03d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(168, 201, 78, 0.4);
    color: #090111;
}

/* Burger Menu */
.burger-btn-3ks {
    background: transparent;
    border: none;
    width: 30px;
    height: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    padding: 0;
}

.burger-btn-3ks span {
    width: 100%;
    height: 3px;
    background: #a8c94e;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.burger-btn-3ks.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-btn-3ks.active span:nth-child(2) {
    opacity: 0;
}

.burger-btn-3ks.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 767px) {
    .nav-wrapper-5mq {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #090111;
        transition: left 0.3s ease;
        padding: 20px;
        overflow-y: auto;
    }

    .nav-wrapper-5mq.active {
        left: 0;
    }

    .nav-list-7wk {
        flex-direction: column !important;
    }

    .nav-item-2pl {
        display: block;
        margin-bottom: 15px;
    }

    .online-counter-4xz {
        margin-bottom: 15px;
    }
}

/* Hero Section */
.hero-section-9mq {
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.hero-slider-3xk {
    position: relative;
    width: 100%;
    height: 500px;
}

.hero-slide-2pv {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide-2pv.active {
    opacity: 1;
}

.hero-img-5kw {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay-8xm {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(9, 1, 17, 0.85) 0%, rgba(168, 201, 78, 0.15) 100%);
    display: flex;
    align-items: center;
}

.hero-content-9px {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

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

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

.hero-text-2mw {
    font-size: 22px;
    color: #e8e8e8;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero-btn-7xk {
    background: #a8c94e;
    color: #090111;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(168, 201, 78, 0.4);
}

.hero-btn-7xk:hover {
    background: #8fb03d;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(168, 201, 78, 0.6);
    color: #090111;
}

@media (max-width: 768px) {
    .hero-title-4kz {
        font-size: 32px;
    }

    .hero-text-2mw {
        font-size: 16px;
    }
}

/* Breadcrumb */
.breadcrumb-nav-5xm {
    margin: 20px 0;
}

.breadcrumb-list-8kp {
    background: rgba(9, 1, 17, 0.5);
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 0;
}

.breadcrumb-link-3px {
    color: #0b80dc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link-3px:hover {
    color: #a8c94e;
}

.breadcrumb-item.active {
    color: #e8e8e8;
}

/* Main Content */
.main-content-7kx {
    flex: 1;
}

.main-container-9kx {
    padding: 30px 0;
}

.content-article-7px {
    background: rgba(9, 1, 17, 0.6);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .content-article-7px {
        padding: 20px;
    }
}

.main-heading-2kv {
    font-size: 42px;
    color: #a8c94e;
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .main-heading-2kv {
        font-size: 28px;
    }
}

/* Author Block */
.author-block-5xm {
    background: rgba(168, 201, 78, 0.1);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #a8c94e;
}

.author-info-8kp {
    margin-bottom: 10px;
}

.author-label-3px {
    color: #e8e8e8;
    font-weight: 500;
}

.author-name-9mq {
    color: #0b80dc;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.author-name-9mq:hover {
    color: #a8c94e;
}

.author-position-2kv {
    color: #b8b8b8;
    font-style: italic;
}

.author-date-7xk {
    color: #b8b8b8;
    font-size: 14px;
}

/* Section Titles */
.section-title-8kx {
    font-size: 32px;
    color: #a8c94e;
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.section-title-8kx::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #a8c94e 0%, transparent 100%);
}

@media (max-width: 768px) {
    .section-title-8kx {
        font-size: 24px;
    }
}

/* Table Styles */
.table-wrapper-3px {
    margin: 20px 0;
    overflow-x: auto;
}

.casino-table-9kp,
.app-table-5kp {
    width: 100%;
    background: rgba(9, 1, 17, 0.7);
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
}

.casino-table-9kp td,
.app-table-5kp td {
    padding: 15px 20px;
    border: 1px solid rgba(168, 201, 78, 0.2);
}

.table-param-5xm {
    font-weight: 600;
    color: #a8c94e;
    width: 35%;
}

.table-value-2kv {
    color: #e8e8e8;
}

.casino-table-9kp tr:hover,
.app-table-5kp tr:hover {
    background: rgba(168, 201, 78, 0.1);
}

/* Screenshots Section */
.screenshots-grid-9mq {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.screenshot-item-4kz {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
}

.screenshot-item-4kz:hover {
    transform: translateY(-10px);
}

.screenshot-img-2px {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .screenshots-grid-9mq {
        grid-template-columns: 1fr;
    }
}

/* App Download Section */
.app-download-block-7xm {
    background: linear-gradient(135deg, rgba(11, 128, 220, 0.2) 0%, rgba(168, 201, 78, 0.2) 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.download-title-9kp {
    font-size: 24px;
    color: #a8c94e;
    margin-bottom: 25px;
    font-weight: 700;
}

.download-btn-2kv {
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.download-btn-2kv:hover {
    transform: scale(1.05);
}

.apk-btn-3px {
    background: #a8c94e;
    color: #090111;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 18px;
}

.apk-icon-5mq {
    font-size: 24px;
    margin-right: 10px;
}

/* Video Section */
.video-wrapper-4mz {
    margin: 20px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.5);
}

.video-iframe-7px {
    display: block;
    width: 100%;
}

/* Slot Machine Game */
.slot-machine-wrapper-9xk {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.slot-machine-8px {
    background: linear-gradient(135deg, #090111 0%, #1a0525 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(168, 201, 78, 0.3);
    border: 3px solid #a8c94e;
    text-align: center;
    max-width: 500px;
    width: 100%;
}

.slot-display-3mq {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.reel-5kp {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid #0b80dc;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    transition: all 0.1s ease;
}

.reel-5kp.spinning {
    animation: spin-animation 0.1s infinite;
}

@keyframes spin-animation {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

.spin-btn-7xk {
    background: linear-gradient(135deg, #a8c94e 0%, #8fb03d 100%);
    color: #090111;
    border: none;
    padding: 15px 50px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(168, 201, 78, 0.4);
}

.spin-btn-7xk:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(168, 201, 78, 0.6);
}

.spin-btn-7xk:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.result-message-4kz {
    margin-top: 20px;
    font-size: 20px;
    font-weight: 700;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.result-message-4kz.win {
    color: #a8c94e;
}

.result-message-4kz.lose {
    color: #dc0b3a;
}

.bonus-claim-btn-9xk {
    background: #0b80dc;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.bonus-claim-btn-9xk:hover {
    background: #0966b3;
    transform: translateY(-2px);
    color: #fff;
}

/* Content Text Styles */
.text-content-9kp {
    font-size: 16px;
    line-height: 1.8;
    color: #e8e8e8;
}

.text-content-9kp p {
    margin-bottom: 20px;
}

.text-content-9kp h2 {
    font-size: 28px;
    color: #a8c94e;
    margin: 30px 0 20px;
    font-weight: 700;
}

.text-content-9kp h3 {
    font-size: 22px;
    color: #0b80dc;
    margin: 25px 0 15px;
    font-weight: 600;
}

.text-content-9kp ul,
.text-content-9kp ol {
    margin: 15px 0 15px 30px;
}

.text-content-9kp li {
    margin-bottom: 10px;
}

.text-content-9kp a {
    color: #0b80dc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.text-content-9kp a:hover {
    color: #a8c94e;
}

.text-content-9kp table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
    background: rgba(9, 1, 17, 0.5);
}

.text-content-9kp table td,
.text-content-9kp table th {
    padding: 12px 15px;
    border: 1px solid rgba(168, 201, 78, 0.3);
    text-align: left;
}

.text-content-9kp table th {
    background: rgba(168, 201, 78, 0.2);
    color: #a8c94e;
    font-weight: 700;
}

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

/* FAQ Section */
.faq-accordion-2px {
    margin: 20px 0;
}

.faq-item-7kp {
    background: rgba(9, 1, 17, 0.7);
    border: 1px solid rgba(168, 201, 78, 0.2);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-button-9mq {
    background: rgba(11, 128, 220, 0.1);
    color: #e8e8e8;
    font-weight: 600;
    font-size: 18px;
    padding: 20px;
    width: 100%;
    text-align: left;
    border: none;
    transition: all 0.3s ease;
}

.faq-button-9mq:not(.collapsed) {
    background: rgba(168, 201, 78, 0.2);
    color: #a8c94e;
}

.faq-button-9mq:hover {
    background: rgba(168, 201, 78, 0.15);
}

.faq-answer-4xz {
    color: #e8e8e8;
    line-height: 1.8;
    font-size: 16px;
}

/* Footer Styles */
.footer-8xk2 {
    background: linear-gradient(135deg, #090111 0%, #1a0525 100%);
    color: #e8e8e8;
    margin-top: 60px;
    border-top: 2px solid #a8c94e;
}

.footer-title-9wq {
    font-size: 20px;
    color: #a8c94e;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-text-5px {
    color: #b8b8b8;
    line-height: 1.6;
}

.footer-menu-2kv {
    padding: 0;
}

.footer-menu-2kv li {
    margin-bottom: 12px;
}

.footer-link-7zm {
    color: #e8e8e8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link-7zm:hover {
    color: #a8c94e;
    padding-left: 5px;
}

.footer-contact-4mz {
    color: #b8b8b8;
    margin-bottom: 10px;
}

.payment-logos-8px,
.provider-logos-3zx {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.payment-icon-2kw,
.provider-icon-7kp {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.payment-icon-2kw:hover,
.provider-icon-7kp:hover {
    opacity: 1;
}

.footer-copyright-5xm {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(168, 201, 78, 0.2);
}

.footer-legal-9kw {
    color: #b8b8b8;
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-warning-2pl {
    color: #dc0b3a;
    font-size: 12px;
    font-style: italic;
}

.logo-footer-3kx {
    max-height: 50px;
    width: auto;
}

/* Bonus Widget */
.bonus-widget-7xk {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #090111 0%, #1a0525 100%);
    padding: 15px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
    z-index: 999;
    border-top: 3px solid #a8c94e;
    animation: slideUp 0.5s ease-out;
}

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

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

.widget-icon-9px {
    font-size: 40px;
}

.widget-text-2kv {
    flex: 1;
}

.widget-title-5xm {
    font-size: 16px;
    color: #e8e8e8;
    font-weight: 600;
}

.widget-bonus-8kp {
    font-size: 24px;
    color: #a8c94e;
    font-weight: 700;
}

.widget-btn-3qw {
    background: #a8c94e;
    color: #090111;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(168, 201, 78, 0.4);
}

.widget-btn-3qw:hover {
    background: #8fb03d;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(168, 201, 78, 0.6);
    color: #090111;
}

@media (max-width: 576px) {
    .widget-content-4mz {
        justify-content: center;
        text-align: center;
    }

    .widget-bonus-8kp {
        font-size: 20px;
    }
}

/* Unused styles for uniqueness */
.deprecated-class-8xm { display: none; }
.old-layout-9kp { visibility: hidden; }
.legacy-wrapper-3px { opacity: 0; }
.unused-container-7xk { position: absolute; left: -9999px; }
.hidden-element-2kv { display: none !important; }
.invisible-block-5xm { visibility: hidden; }
.archive-section-4mz { display: none; }
.removed-component-9xk { opacity: 0; pointer-events: none; }
.old-style-6px { display: none; }
.legacy-theme-1kz { visibility: collapse; }

/* WordPress compatibility styles */
.wp-block-group { margin: 20px 0; }
.wp-block-column { flex-basis: 100%; }
.alignwide { max-width: 1100px; margin-left: auto; margin-right: auto; }
.alignfull { width: 100vw; max-width: 100vw; margin-left: calc(50% - 50vw); }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 14px; color: #b8b8b8; }

/* Elementor compatibility */
.elementor-section { position: relative; }
.elementor-column { display: flex; flex-direction: column; }
.elementor-widget { margin-bottom: 20px; }

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Print styles */
@media print {
    .qx9w2-header,
    .footer-8xk2,
    .bonus-widget-7xk {
        display: none;
    }
}
/* =========================
   PRO container (article)
   ========================= */

.container.pro{
    /* layout */
    width: 100%;
    max-width: 920px;
    margin: 24px auto 56px;
    padding: 28px 28px;

    /* look */
    background: rgba(9, 1, 17, 0.55);
    border: 1px solid rgba(168, 201, 78, 0.18);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.35);

    /* text */
    color: #e8e8e8;
    font-size: 16px;
    line-height: 1.85;

    /* prevent overflow on long urls/words */
    overflow-wrap: anywhere;
    word-break: break-word;
}

/* Typography inside pro */
.container.pro p{
    margin: 0 0 16px;
    color: #e8e8e8;
}

.container.pro h1,
.container.pro h2,
.container.pro h3{
    margin: 26px 0 14px;
    line-height: 1.25;
}

.container.pro h1{
    font-size: 40px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.55);
}

.container.pro h2{
    font-size: 28px;
    color: #a8c94e;
    position: relative;
    padding-bottom: 10px;
}

.container.pro h2::after{
    content: "";
    display: block;
    width: 72px;
    height: 3px;
    margin-top: 10px;
    background: linear-gradient(90deg, #a8c94e 0%, rgba(168, 201, 78, 0) 100%);
}

.container.pro h3{
    font-size: 20px;
    color: #0b80dc;
}

/* Lists */
.container.pro ul,
.container.pro ol{
    margin: 10px 0 18px 22px;
    padding: 0;
}

.container.pro li{
    margin: 0 0 10px;
}

.container.pro ul li::marker{
    color: #a8c94e;
}

.container.pro ol li::marker{
    color: #0b80dc;
    font-weight: 700;
}

/* Links */
.container.pro a{
    color: #0b80dc;
    text-decoration: none;
    border-bottom: 1px dashed rgba(11, 128, 220, 0.55);
    transition: color .2s ease, border-color .2s ease;
}

.container.pro a:hover{
    color: #a8c94e;
    border-bottom-color: rgba(168, 201, 78, 0.7);
}

/* Images / embeds */
.container.pro img,
.container.pro iframe,
.container.pro video{
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Tables (if appear in content) */
.container.pro table{
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
    background: rgba(9, 1, 17, 0.65);
    border: 1px solid rgba(168, 201, 78, 0.18);
    border-radius: 12px;
    overflow: hidden;
}

.container.pro th,
.container.pro td{
    padding: 12px 14px;
    border: 1px solid rgba(168, 201, 78, 0.18);
    text-align: left;
}

.container.pro th{
    background: rgba(168, 201, 78, 0.15);
    color: #a8c94e;
    font-weight: 700;
}

/* Subtle callout style (optional, if you ever wrap blocks) */
.container.pro .pro-callout{
    margin: 18px 0;
    padding: 14px 16px;
    border-left: 4px solid #a8c94e;
    background: rgba(168, 201, 78, 0.08);
    border-radius: 10px;
}

/* =========================
   Mobile adaptation
   ========================= */

@media (max-width: 1024px){
    .container.pro{
        max-width: 860px;
        margin: 20px auto 48px;
    }
}

@media (max-width: 768px){
    .container.pro{
        margin: 16px 12px 44px;
        padding: 18px 16px;
        border-radius: 14px;
        font-size: 15.5px;
        line-height: 1.8;
    }

    .container.pro h1{ font-size: 30px; }
    .container.pro h2{ font-size: 22px; }
    .container.pro h3{ font-size: 18px; }

    .container.pro ul,
    .container.pro ol{
        margin-left: 18px;
    }
}

@media (max-width: 480px){
    .container.pro{
        margin: 14px 10px 40px;
        padding: 16px 14px;
        border-radius: 12px;
        font-size: 15px;
    }

    .container.pro h1{ font-size: 26px; }
    .container.pro h2{ font-size: 20px; }
    .container.pro h2::after{ width: 56px; }

    /* make tables scrollable on very small screens */
    .container.pro table{
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }
}



/* ===== New Header ===== */

:root{
    --bg: rgba(9,1,17,.78);
    --bg-solid: rgba(9,1,17,.96);
    --line: rgba(168,201,78,.22);
    --text: #e8e8e8;
    --muted: #b8b8b8;
    --green: #a8c94e;
    --blue: #0b80dc;
}

.site-header{
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.site-header__inner{
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.site-header__logo{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    transform: translateZ(0);
}
.site-header__logo img{
    display: block;
    height: 44px;
    width: auto;
}

.site-nav{
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 18px;
}

.site-nav__list{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 8px;
    align-items: center;
}

.site-nav__list a{
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
    padding: 10px 12px;
    border-radius: 10px;
    transition: background .2s ease, color .2s ease, transform .2s ease;
    display: inline-flex;
    align-items: center;
}
.site-nav__list a:hover{
    color: var(--green);
    background: rgba(168,201,78,.10);
    transform: translateY(-1px);
}

.site-nav__cta{
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Buttons */
.btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 14px;
    text-decoration: none;
    line-height: 1;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    white-space: nowrap;
}

.btn--login{
    background: var(--blue);
    color: #fff;
}
.btn--login:hover{
    background: #0966b3;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(11,128,220,.25);
}

.btn--signup{
    background: var(--green);
    color: #090111;
}
.btn--signup:hover{
    background: #8fb03d;
    color: #090111;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(168,201,78,.22);
}

.btn--block{
    width: 100%;
}

/* Online pill */
.online-pill{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(168,201,78,.10);
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
}
.online-pill__dot{
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 0 rgba(168,201,78,.45);
    animation: onlinePulse 1.8s infinite;
}
.online-pill--block{
    width: 100%;
    justify-content: center;
}
@keyframes onlinePulse{
    0%{ box-shadow: 0 0 0 0 rgba(168,201,78,.45); }
    70%{ box-shadow: 0 0 0 10px rgba(168,201,78,0); }
    100%{ box-shadow: 0 0 0 0 rgba(168,201,78,0); }
}

/* Mobile header area */
.site-header__mobile{
    display: none;
    margin-left: auto;
    gap: 10px;
    align-items: center;
}

/* Burger */
.burger{
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(168,201,78,.18);
    background: rgba(255,255,255,.03);
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 10px;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}
.burger:hover{
    background: rgba(168,201,78,.10);
    transform: translateY(-1px);
}
.burger span{
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: var(--green);
    transition: transform .2s ease, opacity .2s ease;
}
.burger.is-open span:nth-child(1){ transform: translateY(8px) rotate(45deg); }
.burger.is-open span:nth-child(2){ opacity: 0; }
.burger.is-open span:nth-child(3){ transform: translateY(-8px) rotate(-45deg); }

/* Overlay + Drawer */
.overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 2000;
}

.drawer{
    position: fixed;
    top: 0;
    right: -110%;
    height: 100vh;
    width: min(86vw, 360px);
    background: var(--bg-solid);
    border-left: 1px solid var(--line);
    box-shadow: -24px 0 60px rgba(0,0,0,.6);
    z-index: 2001;
    transition: right .25s ease;
    display: flex;
    flex-direction: column;
}

.drawer.is-open{ right: 0; }

.drawer__top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 16px 12px;
    border-bottom: 1px solid rgba(168,201,78,.14);
}

.drawer__title{
    color: var(--text);
    font-weight: 900;
    font-size: 16px;
}

.drawer__close{
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(168,201,78,.18);
    background: rgba(255,255,255,.03);
    color: var(--text);
    cursor: pointer;
}

.drawer__nav{
    padding: 12px 12px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.drawer__nav a{
    color: var(--text);
    text-decoration: none;
    font-weight: 800;
    padding: 12px 12px;
    border-radius: 12px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(168,201,78,.12);
}
.drawer__nav a:hover{
    color: var(--green);
    background: rgba(168,201,78,.10);
}

.drawer__bottom{
    margin-top: auto;
    padding: 14px 14px 16px;
    display: grid;
    gap: 10px;
}

/* Responsive switching */
@media (max-width: 991.98px){
    .site-nav__cta .online-pill{ display: none; }
}

@media (max-width: 767.98px){
    .site-nav{ display: none; }
    .site-header__mobile{ display: inline-flex; }
    .site-header__logo img{ height: 40px; }
    .btn{ padding: 9px 12px; font-size: 13px; }
}
