@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&display=swap');

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #080d1e;
    color: #ffffff;
    font-family: 'Space Grotesk', sans-serif;
    -webkit-font-smoothing: antialiased;
}

*, *:before, *:after {
    box-sizing: inherit;
}

a {
    color: #00e5ff;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

a:hover {
    color: #00ff87;
}

.xb-app-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.xb-app-header {
    background: rgba(16, 31, 66, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 229, 255, 0.3);
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.xb-app-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.xb-app-logo a {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
}

.xb-app-logo span {
    color: #00e5ff;
    position: relative;
}

.xb-app-burger-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 229, 255, 0.2);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    height: 44px;
    padding: 13px;
    border-radius: 10px;
    z-index: 1001;
    transition: all 0.3s ease;
}

.xb-app-burger-btn:hover {
    background: rgba(0, 229, 255, 0.1);
    border-color: #00e5ff;
}

.xb-app-burger-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #00e5ff;
    transition: all 0.3s ease;
}

.xb-app-burger-btn.is-active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
    background-color: #00ff87;
}

.xb-app-burger-btn.is-active span:nth-child(2) {
    opacity: 0;
}

.xb-app-burger-btn.is-active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
    background-color: #00ff87;
}

.xb-app-menu-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 9, 22, 0.9);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.xb-app-menu-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.xb-app-menu-popup {
    background: linear-gradient(135deg, #101f42 0%, #0a122c 100%);
    border: 1px solid rgba(0, 229, 255, 0.4);
    box-shadow: 0 20px 50px rgba(0, 229, 255, 0.15);
    width: 92%;
    max-width: 480px;
    max-height: 80vh;
    border-radius: 24px;
    padding: 40px 30px;
    overflow-y: auto;
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.xb-app-menu-lightbox.is-open .xb-app-menu-popup {
    transform: scale(1) translateY(0);
}

.xb-app-search-form {
    margin-bottom: 30px;
    position: relative;
}

.xb-app-search-input {
    width: 100%;
    background: #050916;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 15px 20px;
    color: #ffffff;
    font-size: 16px;
    font-family: inherit;
    outline: none;
    transition: all 0.3s ease;
}

.xb-app-search-input:focus {
    border-color: #00e5ff;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
}

.xb-app-search-submit {
    position: absolute;
    right: 8px;
    top: 8px;
    background: linear-gradient(90deg, #00e5ff, #00ff87);
    border: none;
    color: #0a1128;
    padding: 8px 18px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: transform 0.2s ease;
}

.xb-app-search-submit:hover {
    transform: scale(1.05);
}

.xb-app-nav-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.xb-app-nav-menu li {
    position: relative;
    margin-bottom: 12px;
}

.xb-app-nav-menu li a {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    display: block;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.xb-app-nav-menu li a:hover {
    color: #00ff87;
    background: rgba(0, 255, 135, 0.05);
    border-color: rgba(0, 255, 135, 0.3);
}

.xb-app-nav-menu ul ul {
    padding-left: 15px;
    margin-top: 8px;
}

.xb-app-nav-menu ul ul li a {
    font-size: 15px;
    color: #a0aec0;
    background: none;
    border: none;
    padding: 6px 10px;
}

.xb-app-main {
    padding: 50px 0;
    min-height: 75vh;
}

.xb-app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.xb-app-card {
    background: #101f42;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.xb-app-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 229, 255, 0.5);
    box-shadow: 0 15px 35px rgba(0, 229, 255, 0.15);
}

.xb-app-card-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.xb-app-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.xb-app-card:hover .xb-app-card-img img {
    transform: scale(1.08);
}

.xb-app-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.xb-app-card-title {
    margin: 0 0 12px 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.xb-app-card-title a {
    color: #ffffff;
}

.xb-app-card-title a:hover {
    color: #00e5ff;
}

.xb-app-card-excerpt {
    font-size: 14px;
    color: #a0aec0;
    line-height: 1.6;
    margin-bottom: 20px;
}

.xb-app-card-meta {
    font-size: 13px;
    color: #637ba8;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
}

.xb-app-footer {
    background: #050916;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 0 30px 0;
    font-size: 14px;
    color: #a0aec0;
}

.xb-app-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.xb-app-footer-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-left: 3px solid #00ff87;
    padding-left: 10px;
}

.xb-app-info-block p {
    margin: 0 0 14px 0;
    line-height: 1.6;
}

.xb-app-info-block a {
    color: #a0aec0;
}

.xb-app-info-block a:hover {
    color: #00ff87;
}

.xb-app-footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.xb-app-footer-menu li a {
    color: #a0aec0;
    display: inline-block;
    transition: all 0.2s ease;
}

.xb-app-footer-menu li a:hover {
    color: #00e5ff;
    transform: translateX(4px);
}

.xb-app-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
    text-align: center;
    font-size: 13px;
    color: #637ba8;
}

.xb-app-post-header {
    margin-bottom: 40px;
}

.xb-app-post-thumb {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 24px;
    margin-bottom: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.xb-app-post-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media(min-width: 992px) {
    .xb-app-post-layout {
        grid-template-columns: 3fr 1fr;
    }
}

.xb-app-toc-box {
    background: #101f42;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 24px;
    position: sticky;
    top: 100px;
    height: fit-content;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.xb-app-toc-title {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.xb-app-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.xb-app-toc-item {
    margin-bottom: 12px;
    line-height: 1.4;
    transition: all 0.2s ease;
}

.xb-app-toc-item a {
    color: #a0aec0;
    font-size: 14px;
    display: block;
}

.xb-app-toc-item a:hover,
.xb-app-toc-item.is-active a {
    color: #00e5ff;
    padding-left: 8px;
    border-left: 2px solid #00e5ff;
    font-weight: 500;
}

.xb-app-entry-content {
    width: 100%;
}

.xb-app-entry-content p {
    margin: 0 0 22px 0;
    line-height: 1.8;
    color: #cbd5e0;
}

.xb-app-entry-content h2 {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin: 45px 0 20px 0;
    border-left: 4px solid #00e5ff;
    padding-left: 12px;
}

.xb-app-entry-content h3 {
    font-size: 21px;
    font-weight: 700;
    color: #ffffff;
    margin: 40px 0 20px 0;
}

.xb-app-entry-content ul, .xb-app-entry-content ol {
    margin: 0 0 22px 0;
    padding-left: 24px;
    color: #cbd5e0;
}

.xb-app-entry-content li {
    margin-bottom: 10px;
}

.xb-app-entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 25px 0;
    display: block;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.xb-app-entry-content blockquote {
    margin: 30px 0;
    padding: 20px 25px;
    background: rgba(255,255,255,0.02);
    border-left: 4px solid #00ff87;
    border-radius: 0 16px 16px 0;
    font-style: italic;
    color: #ffffff;
}

.xb-app-entry-content blockquote p {
    margin: 0;
}

.xb-app-author-box {
    background: #101f42;
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    margin-top: 60px;
    display: flex;
    gap: 25px;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

@media(max-width: 576px) {
    .xb-app-author-box {
        flex-direction: column;
        text-align: center;
    }
}

.xb-app-author-avatar img {
    border-radius: 50%;
    border: 3px solid #00ff87;
    box-shadow: 0 0 15px rgba(0, 255, 135, 0.3);
}

.xb-app-author-name {
    margin: 0 0 8px 0;
    font-size: 20px;
    font-weight: 700;
}

.xb-app-author-desc {
    font-size: 14px;
    color: #a0aec0;
    margin: 0;
    line-height: 1.5;
}

.xb-app-pagination {
    margin-top: 50px;
    display: flex;
    gap: 12px;
}

.xb-app-pagination .page-numbers {
    background: #101f42;
    color: #ffffff;
    padding: 12px 18px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-weight: 500;
    transition: all 0.3s ease;
}

.xb-app-pagination .page-numbers:hover {
    border-color: #00e5ff;
    color: #00e5ff;
}

.xb-app-pagination .page-numbers.current {
    background: linear-gradient(90deg, #00e5ff, #00ff87);
    color: #0a1128;
    font-weight: 700;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(0, 229, 255, 0.3);
}

.xb-app-no-results {
    background: #101f42;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.xb-premium-page-wrapper {
    background-color: #080d1e;
    color: #ffffff;
    font-family: 'Space Grotesk', sans-serif;
    padding: 40px 0;
}

.xb-p-hero-section {
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #101f42 0%, #0a122c 100%);
    border: 1px solid rgba(0, 229, 255, 0.2);
    padding: 60px 30px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.xb-p-main-title {
    font-size: 38px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 35px 0;
    letter-spacing: 1px;
    line-height: 1.2;
    background: linear-gradient(90deg, #ffffff, #00e5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.xb-p-hero-cta-box {
    display: flex;
    justify-content: center;
}

.xb-p-cta-button {
    display: inline-block;
    background: linear-gradient(90deg, #00e5ff, #00ff87);
    color: #0a1128 !important;
    font-weight: 700;
    font-size: 18px;
    padding: 18px 36px;
    border-radius: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(0, 229, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.xb-p-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 255, 135, 0.5);
    color: #0a1128 !important;
}

@keyframes xb-p-pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(0, 229, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 229, 255, 0); }
}

.xb-p-pulse-anim {
    animation: xb-p-pulse 2s infinite;
}

.xb-p-card-section {
    background: #101f42;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.xb-p-heading-h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 25px 0;
    border-left: 4px solid #00e5ff;
    padding-left: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.xb-p-heading-h3 {
    font-size: 19px;
    font-weight: 700;
    color: #00ff87;
    margin: 30px 0 15px 0;
}

.xb-p-card-section > .xb-p-heading-h3:first-of-type {
    margin-top: 0;
}

.xb-p-text-paragraph {
    font-size: 15px;
    line-height: 1.7;
    color: #cbd5e0;
    margin: 0 0 20px 0;
}

.xb-p-text-paragraph:last-child {
    margin-bottom: 0;
}

.xb-p-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.xb-p-features-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #ffffff;
}

.xb-p-features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00ff87;
    font-weight: 700;
}

.xb-p-table-responsive {
    overflow-x: auto;
    margin: 25px 0;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.xb-p-comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 14px;
}

.xb-p-comparison-table th {
    background: #050916;
    color: #ffffff;
    padding: 16px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.xb-p-comparison-table td {
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #cbd5e0;
}

.xb-p-comparison-table tr:last-child td {
    border-bottom: none;
}

.xb-p-badge-green {
    background: rgba(0, 255, 135, 0.1);
    color: #00ff87;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
}

.xb-p-badge-blue {
    background: rgba(0, 229, 255, 0.1);
    color: #00e5ff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
}

.xb-p-styled-steps {
    list-style: none;
    counter-reset: xb-counter;
    padding: 0;
    margin: 0 0 25px 0;
}

.xb-p-styled-steps li {
    counter-increment: xb-counter;
    position: relative;
    padding-left: 50px;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
    color: #cbd5e0;
}

.xb-p-styled-steps li::before {
    content: counter(xb-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    background: #050916;
    border: 1px solid #00e5ff;
    border-radius: 8px;
    color: #00e5ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.xb-p-inline-cta-box {
    margin: 30px 0;
    background: rgba(0, 229, 255, 0.05);
    border: 1px dashed #00e5ff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.xb-p-inline-cta-box a {
    color: #00e5ff;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
}

.xb-p-inline-cta-box a:hover {
    color: #00ff87;
}

.xb-p-highlight-bonus-box {
    border: 1px solid rgba(0, 255, 135, 0.3);
    background: linear-gradient(135deg, #102a42 0%, #0a122c 100%);
    box-shadow: 0 15px 35px rgba(0, 255, 135, 0.05);
}

.xb-p-faq-accordion {
    margin-top: 20px;
}

.xb-p-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 0;
}

.xb-p-faq-item:last-child {
    border-bottom: none;
}

.xb-p-faq-trigger {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.xb-p-faq-trigger::after {
    content: "+";
    color: #00e5ff;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.xb-p-faq-trigger.is-active::after {
    transform: rotate(45deg);
    color: #00ff87;
}

.xb-p-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), padding 0.3s ease;
}

.xb-p-final-cta-section {
    background: #050916;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-top: 40px;
}

.xb-p-slider-section-embed {
    margin-bottom: 35px;
    background: #050916;
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.xb-p-slider-embed-title {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #637ba8;
    margin: 0 0 20px 0;
}

.xb-p-slider-container-outer {
    overflow-x: auto;
    width: 100%;
    scrollbar-width: none;
}

.xb-p-slider-container-outer::-webkit-scrollbar {
    display: none;
}

.xb-p-slider-track-inner {
    display: flex;
    gap: 20px;
    width: max-content;
    padding-bottom: 5px;
}

.xb-p-slider-card-item {
    width: 240px;
    background: #101f42;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.xb-p-slider-card-thumb {
    height: 120px;
    overflow: hidden;
}

.xb-p-slider-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.xb-p-slider-card-body {
    padding: 15px;
}

.xb-p-slider-card-body h4 {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
}

.xb-p-slider-card-body h4 a {
    color: #ffffff;
}

@media(max-width: 768px) {
    .xb-p-main-title { font-size: 28px; }
    .xb-p-card-section { padding: 25px; }
    .xb-p-cta-button { font-size: 15px; padding: 15px 25px; width: 100%; text-align: center; }
}

.xb-p-media-aspect-container {
    width: 100%;
    margin: 0 auto 35px auto;
}

.xb-p-media-aspect-ratio-16-9 {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #050916;
    border: 1px solid rgba(0, 229, 255, 0.15);
    border-radius: 16px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

.xb-p-media-aspect-ratio-16-9::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 229, 255, 0.02) 0%, rgba(0, 0, 0, 0.2) 100%);
    pointer-events: none;
}