* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        Segoe UI,
        Roboto,
        sans-serif;
    background: #000;
    min-height: 100vh;
    color: #fff;
    overflow-x: hidden;
    position: relative;
    line-height: 1.4;
    font-size: 13px;
}
body:before {
    content: "";
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 20%, rgba(147, 51, 234, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.12) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}
body:after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 0;
    pointer-events: none;
}
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #000c;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #9333ea, #ec4899);
    border-radius: 6px;
}
.page-container {
    position: relative;
    z-index: 1;
    max-width: 1600px;
    margin: 0 auto;
    padding: 15px;
}
.main-wrapper {
    opacity: 1;
    pointer-events: auto;
}
body:not(.is-loaded) .main-wrapper {
    opacity: 0;
    transform: translateY(16px);
    filter: blur(8px);
    pointer-events: none;
}
body.is-loaded .main-wrapper {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.8s ease;
}
@keyframes bfdFadeUp {
    0% {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
body:not(.is-loaded) .header-section,
body:not(.is-loaded) .navigation,
body:not(.is-loaded) .main-layout {
    opacity: 0;
}
body.is-loaded .header-section {
    animation: bfdFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
body.is-loaded .navigation {
    animation: bfdFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.08s;
}
body.is-loaded .main-layout {
    animation: bfdFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.16s;
}
.glass-card {
    background: #111111d9;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px #0006;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    position: relative;
}
.main-wrapper > .glass-card {
    padding: 12px;
}
.header-section {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 15px;
    margin-bottom: 12px;
}
.avatar-container {
    width: 180px;
    height: 120px;
}
.avatar-wrapper {
    width: 180px;
    height: 120px;
    border-radius: 14px;
    overflow: hidden;
    background: #11111100;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.avatar-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    display: block;
    object-fit: contain;
}
.header-info h1 {
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, #a855f733, #ec489933);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    margin-bottom: 6px;
    line-height: 1;
}
.header-badges {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    flex-wrap: wrap;
}
.badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #9333ea33;
    border: 1px solid rgba(147, 51, 234, 0.4);
    color: #d8b4fe;
}
.badge i {
    font-size: 10px;
}
.badge.verified {
    background: #3b82f633;
    border-color: #3b82f666;
    color: #93c5fd;
}
.badge.partner {
    background: linear-gradient(135deg, #a855f733, #ec489933);
    border-color: #a855f766;
    color: #e9d5ff;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.language-selector {
    position: relative;
}
.lang-btn {
    padding: 8px 12px;
    background: #27272acc;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
}
.lang-btn:hover {
    background: #9333ea33;
    border-color: #a855f7;
}
.lang-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    background: #111111f2;
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 10px;
    padding: 5px;
    min-width: 140px;
    display: none;
    z-index: 1000;
    box-shadow: 0 8px 24px #00000080;
}
.lang-dropdown.show {
    display: block;
}
.lang-option {
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 12px;
    color: #d4d4d8;
    display: flex;
    align-items: center;
    gap: 8px;
}
.lang-option:hover {
    background: #9333ea33;
    color: #fff;
}
.login-btn {
    padding: 10px 18px;
    background: linear-gradient(135deg, #9333ea, #7e22ce);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
    text-decoration: none;
}
.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px #9333ea66;
}
.navigation {
    display: flex;
    gap: 8px;
    padding: 10px 12px;
    background: #11111100;
    border-radius: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.nav-btn {
    padding: 8px 14px;
    background: #27272a99;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #d4d4d8;
    font-weight: 600;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.nav-btn:hover {
    background: #9333ea33;
    border-color: #a855f7;
    color: #fff;
}
.nav-btn.active {
    background: linear-gradient(135deg, #a855f733, #ec489933);
    border-color: transparent;
    color: #fff;
}
.main-layout {
    display: grid;
    grid-template-columns: 220px 1fr 240px;
    gap: 15px;
    margin-bottom: 20px;
    align-items: start;
}
.sidebar-left,
.sidebar-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.sidebar-card {
    padding: 15px;
}
.sidebar-title {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
}
.sidebar-title i {
    color: #a855f7;
    font-size: 13px;
}
.stat-item {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.stat-item:last-child {
    border-bottom: none;
}
.stat-label {
    font-size: 11px;
    color: #a1a1aa;
}
.stat-value {
    font-size: 16px;
    font-weight: 800;
    background: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.quick-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    background: #27272a99;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: #d4d4d8;
    text-decoration: none;
    transition: all 0.3s;
    margin-bottom: 6px;
    font-size: 11px;
}
.quick-link:hover {
    background: #9333ea33;
    border-color: #a855f7;
    color: #fff;
}
.quick-link i {
    color: #a855f7;
    font-size: 11px;
}
.main-content {
    position: relative;
    min-height: 400px;
}
.page-content {
    display: none;
}
.page-content.active {
    display: block;
}
.hero-section {
    text-align: center;
    padding: 30px 20px;
    background: #1116;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 20px;
}
.hero-title {
    font-size: 28px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 12px;
    color: #fff;
}
.hero-description {
    font-size: 13px;
    color: #a1a1aa;
    max-width: 600px;
    margin: 0 auto 20px;
    line-height: 1.5;
}
.hero-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-btn {
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s;
}
.hero-btn.primary {
    background: linear-gradient(135deg, #a855f733, #ec489933);
    border: none;
    color: #fff;
}
.hero-btn.primary:hover {
    transform: translateY(-2px);
}
.hero-btn.secondary {
    background: #27272acc;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}
.section-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
}
.section-title i {
    color: #a855f7;
    font-size: 16px;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 12px;
    margin-top: 15px;
}
.feature-box {
    background: #11111100;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 15px;
    transition: all 0.3s;
}
.feature-box:hover {
    background: #9333ea1a;
    border-color: #a855f7;
}
.feature-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.feature-icon-small {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #a855f733, #ec489933);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    flex-shrink: 0;
}
.feature-box h4 {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}
.feature-box p {
    font-size: 11px;
    color: #a1a1aa;
    line-height: 1.4;
}
.page-title {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}
.page-title i {
    color: #a855f7;
    font-size: 20px;
}
.page-subtitle {
    font-size: 12px;
    color: #a1a1aa;
    margin-bottom: 20px;
}
.features-detail-grid {
    display: grid;
    gap: 15px;
    margin-top: 15px;
}
.feature-detail-card {
    background: #11111100;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s;
}
.feature-detail-card:hover {
    background: #9333ea14;
    border-color: #9333ea4d;
}
.feature-detail-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}
.feature-detail-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #a855f733, #ec489933);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    flex-shrink: 0;
}
.feature-detail-card h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 6px;
    color: #fff;
}
.feature-detail-card p {
    font-size: 12px;
    color: #d4d4d8;
    line-height: 1.5;
}
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.feature-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 11px;
    color: #a1a1aa;
}
.feature-list li i {
    color: #10b981;
    font-size: 12px;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}
.pricing-card {
    background: #11111100;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 18px;
    position: relative;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}
.pricing-card:hover {
    background: #9333ea14;
    border-color: #9333ea4d;
}
.pricing-card.popular,
.pricing-card.best {
    border-color: #9333ea66;
}
.popular-badge,
.best-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 10px;
    background: linear-gradient(135deg, #a855f733, #ec489933);
    border-radius: 12px;
    font-size: 9px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.plan-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #a855f733, #ec489933);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    flex-shrink: 0;
}
.plan-info {
    flex: 1;
}
.pricing-card h3 {
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 4px;
    color: #fff;
}
.plan-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}
.plan-price .price {
    font-size: 22px;
    font-weight: 900;
    background: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.plan-price .period {
    font-size: 11px;
    color: #a1a1aa;
}
.plan-savings {
    font-size: 10px;
    color: #10b981;
    font-weight: 600;
}
.plan-features-compact {
    list-style: none;
    margin: 12px 0;
    padding: 0;
}
.plan-features-compact li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 11px;
    color: #d4d4d8;
}
.plan-features-compact li:last-child {
    border-bottom: none;
}
.plan-features-compact li i {
    color: #10b981;
    font-size: 11px;
}
.plan-btn {
    width: 100%;
    padding: 10px 16px;
    background: linear-gradient(135deg, #a855f733, #ec489933);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s;
    margin-top: auto;
    text-decoration: none;
}
.plan-btn:hover {
    transform: translateY(-2px);
}
.pricing-note {
    text-align: center;
    font-size: 11px;
    color: #a1a1aa;
    margin-top: 15px;
}
.download-card {
    background: #11111100;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    margin-top: 20px;
}
.download-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #a855f733, #ec489933);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 28px;
    color: #fff;
}
.download-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #fff;
}
.download-card > p {
    font-size: 12px;
    color: #a1a1aa;
    margin-bottom: 20px;
}
.download-features {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.download-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: #27272a99;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 11px;
    color: #d4d4d8;
}
.download-feature i {
    color: #a855f7;
    font-size: 12px;
}
.download-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, #a855f733, #ec489933);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    margin-bottom: 12px;
    text-decoration: none;
}
.download-btn:hover {
    transform: translateY(-2px);
}
.download-req {
    font-size: 10px;
    color: #71717a;
}
.step-item {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.step-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.step-number {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #a855f733, #ec489933);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
    color: #fff;
    flex-shrink: 0;
}
.step-content h4 {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #fff;
}
.step-content p {
    font-size: 11px;
    color: #a1a1aa;
    line-height: 1.4;
}
.support-btn {
    width: 100%;
    padding: 10px 14px;
    background: #27272acc;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s;
    text-decoration: none;
}
.support-btn:hover {
    background: #9333ea33;
    border-color: #a855f7;
}
.faq-container,
.docs-container,
.legal-container {
    margin-top: 20px;
}
.faq-item,
.doc-section,
.legal-section {
    background: #11111100;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 12px;
}
.faq-question,
.doc-section h3,
.legal-section h3 {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.faq-answer,
.doc-section p,
.legal-section p {
    font-size: 11px;
    color: #d4d4d8;
    line-height: 1.5;
}
.legal-section ul {
    margin: 10px 0;
    padding-left: 20px;
}
.legal-section li {
    font-size: 11px;
    color: #d4d4d8;
    line-height: 1.5;
    margin-bottom: 6px;
}
.footer {
    margin-top: 30px;
    padding: 25px 20px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: #1116;
    border-radius: 12px;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    margin-bottom: 20px;
}
.footer-content h3 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}
.footer-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #a1a1aa;
    text-decoration: none;
    font-size: 11px;
    transition: all 0.3s;
    padding: 4px 0;
}
.footer-link:hover {
    color: #fff;
}
.footer-link i {
    color: #a855f7;
    font-size: 11px;
}
.cookie-banner {
    position: fixed;
    bottom: 12px;
    right: 12px;
    max-width: 420px;
    width: min(420px, calc(100vw - 24px));
    background: #111111fa;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 12px;
    padding: 14px 14px 12px;
    box-shadow: 0 8px 24px #0009;
    z-index: 10000;
    transition:
        opacity 0.35s ease,
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
}
.cookie-banner.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(100px);
}
.cookie-icon {
    color: #f59e0b;
    font-size: 18px;
}
.cookie-content {
    width: 100%;
    text-align: center;
}
.cookie-title {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}
.cookie-text {
    font-size: 12px;
    color: #d4d4d8;
    line-height: 1.45;
    margin-bottom: 0;
}
.cookie-buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
    justify-content: center;
}
.cookie-btn {
    padding: 8px 14px;
    border: none;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}
.cookie-accept {
    background: linear-gradient(135deg, #a855f733, #ec489933);
    color: #fff;
}
.cookie-accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px #9333ea66;
}
.cookie-settings {
    background: #27272acc;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #d4d4d8;
}
.cookie-settings:hover {
    background: #9333ea33;
    border-color: #a855f7;
    color: #fff;
}
.cookie-reject {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #a1a1aa;
}
.cookie-reject:hover {
    background: #ef44441a;
    border-color: #ef44444d;
    color: #fca5a5;
}
.cookie-modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.cookie-modal.hidden {
    display: none;
}
.cookie-modal-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #000c;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}
.cookie-modal-content {
    position: relative;
    max-width: 500px;
    width: 100%;
    background: #111111fa;
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 16px;
    box-shadow: 0 20px 60px #000c;
    max-height: 85vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.cookie-modal-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cookie-modal-header h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}
.cookie-modal-close {
    width: 30px;
    height: 30px;
    background: #ef444433;
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    color: #fca5a5;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cookie-modal-close:hover {
    background: #ef44444d;
    transform: rotate(90deg);
}
.cookie-modal-body {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
}
.cookie-modal-body > p {
    font-size: 11px;
    color: #d4d4d8;
    line-height: 1.5;
    margin-bottom: 20px;
}
.cookie-option {
    margin-bottom: 16px;
    padding: 12px;
    background: #27272a66;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}
.cookie-option-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}
.cookie-option-info {
    flex: 1;
}
.cookie-option-info h4 {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}
.cookie-option-info p {
    font-size: 10px;
    color: #a1a1aa;
    line-height: 1.4;
}
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
    flex-shrink: 0;
}
.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}
.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #3f3f46cc;
    transition: 0.3s;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 2px;
    bottom: 2px;
    background-color: #fff;
    transition: 0.3s;
    border-radius: 50%;
}
.cookie-toggle input:checked + .cookie-toggle-slider {
    background: linear-gradient(135deg, #a855f733, #ec489933);
    border-color: transparent;
}
.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translate(20px);
}
.cookie-toggle.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.cookie-toggle.disabled .cookie-toggle-label {
    font-size: 10px;
    color: #a1a1aa;
    white-space: nowrap;
}
.cookie-modal-footer {
    padding: 16px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 8px;
}
.cookie-save {
    flex: 1;
    background: linear-gradient(135deg, #a855f733, #ec489933);
    color: #fff;
    padding: 10px 16px;
}
.cookie-save:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px #9333ea66;
}
.cookie-accept-all {
    flex: 1;
    background: #27272acc;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #d4d4d8;
    padding: 10px 16px;
}
.cookie-accept-all:hover {
    background: #9333ea33;
    border-color: #a855f7;
    color: #fff;
}
@media (max-width: 1200px) {
    .main-layout {
        grid-template-columns: 1fr;
    }
    .sidebar-left,
    .sidebar-right {
        display: none;
    }
}
@media (max-width: 768px) {
    .header-section {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 12px;
    }
    .avatar-container {
        margin: 0 auto;
    }
    .header-info h1 {
        font-size: 22px;
    }
    .header-actions {
        justify-content: center;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}
.included-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
}
.included-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    background: #ffffff0f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 11px;
    color: #ffffffd9;
}
.included-item i {
    color: #10b981;
    font-size: 12px;
}
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    background: #ffffff0f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffffe6;
    font-size: 12px;
    margin: 0 auto 8px;
    justify-content: center;
    width: fit-content;
}
.trust-note {
    margin: 0 auto 12px;
    max-width: 520px;
    font-size: 11px;
    color: #ffffffa6;
    line-height: 1.35;
}
.lang-switcher {
    position: relative;
    z-index: 9999;
}
.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 10000;
}
.navigation {
    position: relative;
    z-index: 1;
    overflow: visible;
}
.sidebar,
.sidebar-content,
.sidebar-card {
    overflow: visible;
}
.header-section {
    position: relative;
    z-index: 50;
}
.navigation {
    position: relative;
    z-index: 10;
}
.language-selector {
    position: relative;
    z-index: 60;
}
.lang-dropdown {
    z-index: 9999;
}
.faq-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item .faq-question {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item .faq-question i {
    transition: transform 0.3s ease;
    color: #a855f7;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    margin-top: 12px;
}

.docs-section {
    background: #111119;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
}

.docs-section h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.docs-section h3 i {
    color: #a855f7;
}

.docs-section p {
    font-size: 12px;
    color: #d4d4d8;
    line-height: 1.6;
}
.pricing-options {
    display: flex;
    gap: 10px;
    margin: 12px 0;
}
.pricing-option {
    flex: 1;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    transition: all 0.3s;
}
.pricing-option:hover {
    background: rgba(168, 85, 247, 0.15);
    border-color: rgba(168, 85, 247, 0.3);
}
.pricing-option .price {
    font-size: 20px;
    font-weight: 900;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}
.pricing-option .price-period {
    font-size: 10px;
    color: #a1a1aa;
    text-transform: uppercase;
    font-weight: 600;
}
.features-list {
    list-style: none;
    margin: 12px 0;
    padding: 0;
}
.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 11px;
    color: #d4d4d8;
    line-height: 1.5;
}
.features-list li:last-child {
    border-bottom: none;
}
.features-list li i {
    color: #10b981;
    font-size: 11px;
    margin-top: 2px;
    flex-shrink: 0;
}
.pricing-btn {
    width: 100%;
    padding: 10px 16px;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s;
    margin-top: auto;
    text-decoration: none;
}
.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.3);
}
.pricing-btn.primary {
    background: linear-gradient(135deg, #a855f7, #ec4899);
}
.pricing-card .badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 10px;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    border-radius: 12px;
    font-size: 9px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.pricing-card.featured {
    border-color: #9333ea;
    background: rgba(147, 51, 234, 0.05);
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .pricing-options {
        flex-direction: column;
    }
}

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

body.is-loaded .page-loader {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(147, 51, 234, 0.2);
    border-top-color: #a855f7;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loader-text {
    font-size: 18px;
    font-weight: 800;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.pricing-custom {
    margin: 12px 0;
    text-align: center;
}
.custom-price {
    font-size: 16px;
    font-weight: 800;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 15px 0;
}
/* Hide scrollbar during page load */
body:not(.is-loaded) {
    overflow: hidden;
}

body.is-loaded {
    overflow: auto;
}
/* Error 404 Page */
.error-404-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 500px;
    padding: 40px 20px;
}

.error-404-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.2), rgba(236, 72, 153, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    animation: pulse404 2s infinite;
}

.error-404-icon i {
    font-size: 60px;
    color: #9333ea;
}

@keyframes pulse404 {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(147, 51, 234, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px 10px rgba(147, 51, 234, 0);
    }
}

.error-404-title {
    font-size: 80px;
    font-weight: 800;
    background: linear-gradient(135deg, #9333ea, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 10px 0;
    line-height: 1;
}

.error-404-subtitle {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 15px 0;
}

.error-404-text {
    font-size: 16px;
    color: #a1a1aa;
    max-width: 500px;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .error-404-title {
        font-size: 60px;
    }
    
    .error-404-subtitle {
        font-size: 22px;
    }
    
    .error-404-icon {
        width: 100px;
        height: 100px;
    }
    
    .error-404-icon i {
        font-size: 50px;
    }
}