@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Bengali:wght@400;600;700;800;900&family=Inter:wght@400;600;700;800;900&display=swap');

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

:root {
    --theme-color-accent: #ff2400;
    --theme-color-secondary: #006a4e;
    --theme-body-bg: #0d1017;
    --theme-body-color: #ffffff;
    --theme-section-bg: #1a1e28;
    --theme-section-border: #00cfa6;
    --theme-card-bg: #242833;
}

body {
    font-family: 'Noto Sans Bengali', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--theme-body-bg);
    color: var(--theme-body-color);
    line-height: 1.7;
    font-size: 16px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: var(--theme-body-bg);
    padding: 15px 0;
    border-bottom: 1px solid var(--theme-card-bg);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo img {
    height: 48px;
}

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

.btn {
    padding: 12px 28px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: inherit;
}

.btn.accent {
    background-color: var(--theme-color-accent);
    color: white;
}

.btn.accent:hover {
    background-color: #ff543a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 36, 0, 0.4);
}

.btn.secondary {
    background-color: var(--theme-color-secondary);
    color: white;
}

.btn.secondary:hover {
    background-color: #008a63;
    transform: translateY(-2px);
}

.btn.outline {
    background: transparent;
    border: 2px solid var(--theme-color-secondary);
    color: white;
}

.btn.outline:hover {
    background-color: var(--theme-color-secondary);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--theme-card-bg);
    border-radius: 50px;
    padding: 4px;
    font-size: 13px;
}

.lang-switcher a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 50px;
    transition: all 0.3s;
    font-weight: 600;
}

.lang-switcher a.active {
    background: var(--theme-color-secondary);
    color: #fff;
}

.lang-switcher a:hover {
    color: #fff;
}

/* Mobile Menu Button */
.mobile_menu_button {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile_menu_button span {
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: 0.3s;
}

/* Navigation */
.primary_menu_desktop_ver ul {
    display: flex;
    list-style: none;
    gap: 24px;
    padding: 12px 0;
    flex-wrap: wrap;
}

.primary_menu_desktop_ver a {
    color: var(--theme-body-color);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    font-weight: 600;
}

.primary_menu_desktop_ver a:hover,
.primary_menu_desktop_ver a.active {
    color: var(--theme-color-accent);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1001;
    flex-direction: column;
    padding: 80px 30px 30px;
}

.mobile-menu-overlay.active {
    display: flex;
}

.mobile-menu-overlay ul {
    list-style: none;
}

.mobile-menu-overlay li {
    margin-bottom: 16px;
}

.mobile-menu-overlay a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    transition: color 0.3s;
}

.mobile-menu-overlay a:hover {
    color: var(--theme-color-accent);
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
}

/* Welcome Section */
.welcome-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #00695c 0%, #004d40 50%, #00352c 100%);
    border-radius: 16px;
    margin: 20px auto;
    max-width: 1100px;
    overflow: hidden;
}

.welcome-section__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 0 40px;
}

.welcome-section .title h1 {
    font-size: 34px;
    margin-bottom: 16px;
    line-height: 1.2;
    font-weight: 900;
    text-transform: uppercase;
}

.welcome-section .description {
    font-size: 16px;
    margin-bottom: 24px;
    opacity: 0.95;
    line-height: 1.6;
}

.welcome-section .image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Services Grid */
.services {
    padding: 30px 0;
}

.services__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr) auto;
    gap: 16px;
    list-style: none;
}

.services .item {
    background: var(--theme-card-bg);
    padding: 24px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
}

.services .item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 36, 0, 0.2);
}

.services .item .title {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 6px;
    color: #fff;
    text-transform: uppercase;
}

.services .item .description {
    font-size: 13px;
    opacity: 0.7;
}

.services .item .arrow-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--theme-color-accent);
    border-radius: 50%;
    margin-top: 12px;
    font-size: 14px;
}

.services .item-app {
    background: var(--theme-card-bg);
    padding: 24px;
    border-radius: 12px;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.services .item-app .app-icon {
    font-size: 36px;
    margin-bottom: 10px;
    background: var(--theme-card-bg);
    border: 2px solid rgba(255, 255, 255, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.services .item-app .title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.services .item-app .description {
    font-size: 13px;
    opacity: 0.7;
    margin-bottom: 16px;
}

.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.app-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 50px;
    border: none;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    color: white;
    transition: all 0.3s;
    text-decoration: none;
    background: var(--theme-color-accent);
    font-family: inherit;
}

.app-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 36, 0, 0.3);
}

/* Content Sections */
.content-section {
    background: var(--theme-section-bg);
    border: 1px solid var(--theme-section-border);
    border-radius: 16px;
    padding: 40px;
    margin: 24px 0;
}

.content-section h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
}

.content-section h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 14px;
    line-height: 1.3;
}

.content-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 12px;
}

.content-section p {
    margin-bottom: 14px;
    opacity: 0.92;
    line-height: 1.75;
}

.content-section a {
    color: var(--theme-section-border);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.content-section a:hover {
    color: var(--theme-color-accent);
}

.content-section>img,
.content-section>img[width],
.content-section>img[height] {
    display: block;
    max-width: 100% !important;
    width: auto !important;
    height: auto !important;
    border-radius: 12px;
    margin-bottom: 20px;
}

/* Media block */
.media-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.media-block img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.media-block.reverse {
    direction: rtl;
}

.media-block.reverse>* {
    direction: ltr;
}

/* Numbered Steps */
.numbered-steps {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.numbered-steps li {
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--theme-color-accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    margin-top: 2px;
}

.step-content {
    flex: 1;
}

.step-content strong {
    color: #fff;
}

/* Check list */
.check-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.check-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
    align-items: flex-start;
}

.check-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--theme-color-accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-top: 3px;
}

/* Tables */
.wp-block-table {
    margin: 20px 0;
    overflow-x: auto;
}

.wp-block-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--theme-card-bg);
    border-radius: 10px;
    overflow: hidden;
}

.wp-block-table th,
.wp-block-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 14px;
}

.wp-block-table th {
    background: rgba(255, 255, 255, 0.04);
    font-weight: 700;
    color: #fff;
}

.wp-block-table td:first-child {
    font-weight: 600;
    color: #fff;
    border-left: none;
}

.wp-block-table td {
    border-left: 3px solid var(--theme-color-accent);
}

.wp-block-table td:first-child {
    border-left: none;
}

.wp-block-table tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

/* Infobox */
.infobox {
    background: var(--theme-card-bg);
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
    border-left: 4px solid var(--theme-color-secondary);
}

.infobox table {
    width: 100%;
    border-collapse: collapse;
}

.infobox td {
    padding: 10px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 14px;
}

.infobox td:first-child {
    font-weight: 700;
    color: #fff;
    width: 40%;
}

.infobox .update-date {
    margin-top: 12px;
    font-size: 13px;
    color: var(--theme-section-border);
    font-weight: 600;
}

/* TOC */
.lwptoc {
    background: var(--theme-card-bg);
    padding: 20px 24px;
    border-radius: 12px;
    margin: 24px 0;
}

.lwptoc_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    cursor: pointer;
}

.lwptoc_title {
    font-size: 16px;
    font-weight: 600;
}

.lwptoc_toggle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.5);
    transition: transform 0.3s;
}

.lwptoc.collapsed .lwptoc_items {
    display: none;
}

.lwptoc.collapsed .lwptoc_toggle {
    transform: rotate(-90deg);
}

.lwptoc_items ol {
    list-style: none;
    counter-reset: item;
}

.lwptoc_items li {
    counter-increment: item;
    margin-bottom: 8px;
}

.lwptoc_items li:before {
    content: counter(item) ". ";
    color: var(--theme-color-accent);
    font-weight: bold;
    margin-right: 5px;
}

.lwptoc_items a {
    color: var(--theme-body-color);
    text-decoration: none;
    opacity: 0.85;
    transition: 0.3s;
}

.lwptoc_items a:hover {
    color: var(--theme-color-accent);
    opacity: 1;
}

/* FAQ */
.faq-section {
    padding: 10px 0;
}

.faq-section .item {
    background: var(--theme-card-bg);
    margin-bottom: 12px;
    border-radius: 10px;
    overflow: hidden;
}

.faq_question {
    padding: 18px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 15px;
    transition: background 0.3s;
}

.faq_question:hover {
    background: rgba(255, 36, 0, 0.08);
}

.faq_arrow {
    transition: transform 0.3s;
    font-size: 12px;
    opacity: 0.5;
}

.faq-section .item.active .faq_arrow {
    transform: rotate(180deg);
}

.faq_answer {
    padding: 0 20px 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-section .item.active .faq_answer {
    max-height: 500px;
    padding: 0 20px 20px;
}

.faq_answer p {
    opacity: 0.85;
    line-height: 1.7;
}

/* CTA center */
.cta-center {
    text-align: center;
    margin: 30px 0;
}

/* Highlight box */
.highlight-box {
    background: rgba(255, 36, 0, 0.08);
    border-left: 4px solid var(--theme-color-accent);
    padding: 16px 20px;
    border-radius: 0 8px 8px 0;
    margin: 16px 0;
    font-size: 14px;
    line-height: 1.6;
}

.highlight-box.green {
    background: rgba(0, 207, 166, 0.08);
    border-left-color: var(--theme-section-border);
}

/* Promo code block */
.promo-code-block {
    background: linear-gradient(135deg, rgba(255, 36, 0, 0.15), rgba(255, 36, 0, 0.05));
    border: 2px dashed var(--theme-color-accent);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    margin: 20px 0;
}

.promo-code-block .code {
    font-size: 28px;
    font-weight: 900;
    color: var(--theme-color-accent);
    letter-spacing: 2px;
    margin: 12px 0;
    cursor: pointer;
    user-select: all;
}

.promo-code-block .code-label {
    font-size: 13px;
    opacity: 0.7;
    text-transform: uppercase;
}

/* PAA block */
.paa-block {
    background: var(--theme-card-bg);
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
}

.paa-block h2 {
    font-size: 22px;
    margin-bottom: 16px;
}

.paa-block a {
    display: block;
    color: var(--theme-section-border);
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-weight: 600;
    transition: color 0.3s;
}

.paa-block a:last-child {
    border-bottom: none;
}

.paa-block a:hover {
    color: var(--theme-color-accent);
}

.paa-block a::before {
    content: "→ ";
}

/* Footer */
.footer {
    background: var(--theme-body-bg);
    padding: 50px 0 25px;
    margin-top: 50px;
}

.footer__grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer a {
    color: var(--theme-body-color);
    text-decoration: none;
    opacity: 0.7;
    font-size: 14px;
    transition: opacity 0.3s;
}

.footer a:hover {
    opacity: 1;
}

.footer-email {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    opacity: 0.9;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-payments {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.payment-badge {
    background: #2a2f3a;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

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

.badges-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.badge-item {
    background: #2a2f3a;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    padding-top: 24px;
    flex-wrap: wrap;
}

.footer-legal {
    font-size: 11px;
    opacity: 0.45;
    line-height: 1.7;
    max-width: 750px;
}

.footer-copyright {
    font-size: 12px;
    opacity: 0.45;
    white-space: nowrap;
}

/* Bottom Panel */
.bottom_panel {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--theme-card-bg);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
    z-index: 999;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.bottom_panel .content {
    flex: 1;
    padding: 0 16px;
}

.bottom_panel .title {
    font-size: 12px;
    font-weight: 600;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bottom_panel .description {
    font-size: 16px;
    color: var(--theme-color-accent);
    font-weight: 700;
}

.bottom_panel .icon {
    font-size: 28px;
}

/* Bottom spacer */
.bottom-spacer {
    height: 70px;
}

/* Text utilities */
.text-accent {
    color: var(--theme-color-accent);
}

.text-green {
    color: var(--theme-section-border);
}

strong {
    color: #fff;
}

/* Wager Calculator */
.wager-calculator {
    background: var(--theme-card-bg);
    border-radius: 12px;
    padding: 30px;
    margin: 24px 0;
    border: 1px solid rgba(0, 207, 166, 0.3);
}

.wager-calculator h3 {
    margin-bottom: 20px;
}

.calc-input-group {
    margin-bottom: 16px;
}

.calc-input-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
    opacity: 0.8;
}

.calc-input-group input {
    width: 100%;
    padding: 12px 16px;
    background: var(--theme-body-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s;
}

.calc-input-group input:focus {
    border-color: var(--theme-section-border);
}

.calc-results {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.calc-result-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
}

.calc-result-row .value {
    font-weight: 700;
    color: var(--theme-section-border);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease-out both;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile_menu_button {
        display: flex;
    }

    .buttons {
        display: none;
    }

    .primary_menu_desktop_ver {
        display: none;
    }

    .welcome-section {
        margin: 10px;
        border-radius: 12px;
    }

    .welcome-section__container {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .welcome-section .title h1 {
        font-size: 24px;
    }

    .services__container {
        grid-template-columns: 1fr;
    }

    .services .item-app {
        grid-row: auto;
    }

    .content-section {
        padding: 24px 18px;
        margin: 16px 0;
    }

    .content-section h2 {
        font-size: 22px;
    }

    .media-block {
        grid-template-columns: 1fr;
    }

    .media-block.reverse {
        direction: ltr;
    }

    .bottom_panel {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 10px 16px;
    }

    .bottom_panel .content {
        padding: 4px 0;
    }

    .footer__grid {
        flex-direction: column;
    }

    .footer-badges {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .lang-switcher {
        font-size: 12px;
    }

    .lang-switcher a {
        padding: 4px 10px;
    }
}