*,*::before,*::after {
    box-sizing:border-box
}
html {
    font-size:15px;
    scroll-behavior:smooth
}
body {
    margin:0;
    padding:0;
    font-family:'Inter',sans-serif;
    color:#222;
    background:#f9fafb;
    line-height:1.4;
    min-height:100vh;
    display:flex;
    flex-direction:column
}
a {
    color:inherit;
    text-decoration:none
}
img {
    max-width:100%;
    height:auto;
    display:block
}
button {
    font-family:inherit;
    cursor:pointer
}
.container {
    max-width:1200px;
    margin:0 auto;
    padding:0 24px;
    width:100%
}
header {
    background:#fff;
    box-shadow:0 2px 8px rgb(0 0 0 / .05);
    position:sticky;
    top:0;
    z-index:1000
}
.header-inner {
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:75px
}
.logo {
    font-weight:700;
    font-size:1.5rem;
    color:#4f46e5;
    user-select:none
}
nav.desktop-nav {
    display:flex;
    gap:32px
}
nav.desktop-nav a {
    font-weight:600;
    font-size:1rem;
    padding:8px 0;
    position:relative;
    color:#374151
}
nav.desktop-nav a:hover,nav.desktop-nav a.active {
    color:#4f46e5
}
nav.desktop-nav a::after {
    content:'';
    height:2px;
    width:0;
    background:#4f46e5;
    position:absolute;
    bottom:0;
    left:0;
    transition:width 0.3s ease
}
nav.desktop-nav a:hover::after,nav.desktop-nav a.active::after {
    width:100%
}
.user-controls {
    display:flex;
    gap:12px;
    align-items:center
}
.btn-login,.btn-register {
    background:transparent;
    border:2px solid #4f46e5;
    color:#4f46e5;
    padding:6px 16px;
    border-radius:12px;
    font-weight:600;
    font-size:1rem;
    transition:background-color 0.3s ease,color 0.3s ease
}
.btn-login:hover,.btn-login:focus {
    background:#4f46e5;
    color:#fff;
    outline:none
}
.btn-register:hover,.btn-register:focus {
    background:#4f46e5;
    color:#fff;
    outline:none
}
.user-info {
    font-weight:600;
    color:#374151;
    display:flex;
    align-items:center;
    gap:12px
}
.user-name {
    color:#4f46e5
}
.btn-logout {
    background:#ef4444;
    color:#fff;
    border:none;
    padding:6px 14px;
    font-weight:600;
    border-radius:12px;
    cursor:pointer;
    transition:background-color 0.3s ease
}
.btn-logout:hover,.btn-logout:focus {
    background:#b91c1c;
    outline:none
}
.mobile-menu-btn {
    display:none;
    border:none;
    background:none;
    font-size:1.75rem;
    color:#4f46e5
}
nav.mobile-nav {
    display:none;
    flex-direction:column;
    gap:20px;
    background:#fff;
    padding:24px;
    box-shadow:0 4px 12px rgb(0 0 0 / .1);
    position:absolute;
    top:64px;
    right:0;
    width:250px;
    border-radius:0 0 0 12px
}
nav.mobile-nav.show {
    display:flex
}
nav.mobile-nav a {
    font-weight:600;
    font-size:1.2rem;
    color:#374151
}
nav.mobile-nav a:hover {
    color:#4f46e5
}
section.hero {
    padding:96px 0 40px;
    background:linear-gradient(135deg,#6366f1 0%,#8b5cf6 100%);
    color:#fff;
    text-align:center;
    position:relative
}
section.hero .container {
    max-width:900px
}
section.hero h1 {
    font-size:3.25rem;
    font-weight:800;
    margin-bottom:16px;
    line-height:1.1
}
section.hero p {
    font-size:1.25rem;
    margin-bottom:32px;
    color:rgba(255 255 255 / .85)
}
.hero-cta-btns {
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:20px
}
.btn-primary {
    background:#8b5cf6;
    color:#fff;
    padding:16px 36px;
    font-weight:700;
    font-size:1.125rem;
    border-radius:12px;
    border:none;
    box-shadow:0 5px 15px rgb(139 92 246 / .4);
    transition:background-color 0.3s ease,box-shadow 0.3s ease
}
.btn-primary:hover,.btn-primary:focus {
    background:#7c3aed;
    box-shadow:0 8px 20px rgb(124 58 237 / .6);
    outline:none
}
.hero-media {
    margin-top:48px;
    max-width:720px;
    margin-left:auto;
    margin-right:auto;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 16px 40px rgb(0 0 0 / .15)
}
.hero-media video,.hero-media img {
    width:100%;
    height:auto;
    display:block
}
.section-title {
    text-align:center;
    font-weight:700;
    font-size:2rem;
    margin-bottom:48px;
    color:#4b5563
}
section.features {
    background:#fff;
    padding:40px 0
}
.features-list {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:40px;
    max-width:1100px;
    margin:0 auto
}
.feature-item {
    background:#f3f4f6;
    border-radius:16px;
    padding:32px 24px;
    box-shadow:0 4px 16px rgb(0 0 0 / .05);
    text-align:center
}
.feature-icon {
    font-size:3rem;
    color:#8b5cf6;
    margin-bottom:16px
}
.feature-title {
    font-weight:700;
    font-size:1.25rem;
    margin-bottom:12px
}
.feature-desc {
    color:#6b7280;
    font-size:1rem
}
section.pricing {
    background:#eef2ff;
    padding:40px 0
}
.pricing-cards {
    display:grid;
    grid-template-columns:1fr;
    gap:36px;
    max-width:400px;
    margin:0 auto
}
.pricing-card {
    background:#fff;
    border-radius:20px;
    padding:32px 24px;
    box-shadow:0 8px 24px rgb(99 102 241 / .2);
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    text-align:center
}
.pricing-name {
    font-weight:700;
    font-size:1.5rem;
    margin-bottom:12px;
    color:#4f46e5
}
.pricing-price {
    font-size:2.5rem;
    color:#4f46e5;
    margin-bottom:20px
}
.pricing-interval {
    font-size:1rem;
    color:#6b7280;
    margin-bottom:20px
}
.pricing-features {
    text-align:left;
    margin-bottom:28px
}
.pricing-features li {
    margin:12px 0;
    font-size:1rem;
    color:#374151
}
.btn-buy {
    background:#4f46e5;
    color:#fff;
    border-radius:30px;
    padding:14px 0;
    font-weight:700;
    font-size:1.1rem;
    border:none;
    box-shadow:0 5px 20px rgb(79 70 229 / .5);
    transition:background-color 0.3s ease;
    cursor:pointer
}
.btn-buy:hover,.btn-buy:focus {
    background:#4338ca;
    outline:none
}
section.account {
    padding:40px 0;
    background:#fff
}
.account-container {
    max-width:600px;
    margin:0 auto;
    background:#f9fafb;
    padding:32px 40px;
    border-radius:20px;
    box-shadow:0 6px 18px rgb(0 0 0 / .07)
}
.account-header {
    margin-bottom:32px;
    text-align:center
}
.account-header h2 {
    font-weight:700;
    font-size:2rem;
    color:#4b5563
}
.account-info {
    margin-top:32px;
    text-align:left;
    font-size:1rem;
    color:#374151
}
.account-info strong {
    font-weight:700
}
.transactions {
    margin-top:24px;
    border-top:1px solid #e5e7eb;
    padding-top:24px
}
.transactions h3 {
    font-weight:700;
    margin-bottom:16px;
    font-size:1.25rem;
    color:#4b5563
}
.transaction-list {
    max-height:200px;
    overflow-y:auto
}
.transaction-item {
    display:flex;
    justify-content:space-between;
    padding:10px 0;
    border-bottom:1px solid #e5e7eb;
    font-size:.9rem;
    color:#4b5563
}
section.payment {
    background:#eef2ff;
    padding:40px 0
}
.payment-container {
    max-width:600px;
    margin:0 auto;
    background:#fff;
    box-shadow:0 8px 24px rgb(99 102 241 / .15);
    border-radius:20px;
    padding:32px 40px
}
.payment-title-group {
    display:flex;
    gap:24px;
    justify-content:center;
    margin-bottom:32px;
    flex-wrap:wrap
}
.payment-tab {
    cursor:pointer;
    padding:10px 24px;
    font-weight:700;
    border-bottom:3px solid transparent;
    color:#4b5563;
    font-size:1.125rem;
    border-radius:8px 8px 0 0;
    user-select:none;
    transition:all 0.3s ease
}
.payment-tab.active {
    color:#4f46e5;
    border-bottom-color:#4f46e5;
    background:#ede9fe
}
.payment-form {
    display:none
}
.payment-form.active {
    display:block
}
.payment-form label {
    font-weight:600;
    margin-top:20px;
    display:block;
    color:#374151
}
.payment-form select,.payment-form input {
    width:100%;
    margin-top:8px;
    padding:12px 16px;
    border-radius:12px;
    border:1.5px solid #d1d5db;
    font-size:1rem;
    transition:border-color 0.3s ease
}
.payment-form select:focus,.payment-form input:focus {
    outline:none;
    border-color:#4f46e5
}
.payment-form button {
    width:100%;
    margin-top:32px;
    background:#4338ca;
    color:#fff;
    padding:14px 0;
    border-radius:12px;
    border:none;
    font-weight:700;
    font-size:1.1rem;
    cursor:pointer;
    box-shadow:0 5px 20px rgb(67 56 202 / .6);
    transition:background-color 0.3s ease
}
.payment-form button:hover,.payment-form button:focus {
    background:#3730a3;
    outline:none
}
.payment-success-message {
    color:#047857;
    font-weight:700;
    text-align:center;
    margin-top:20px
}
.card-payment-section label,.card-payment-section select,.card-payment-section input {
    margin-top:12px
}
.card-payment-section select,.card-payment-section input {
    width:100%;
    padding:12px 16px;
    border-radius:12px;
    border:1.5px solid #d1d5db;
    font-size:1rem;
    transition:border-color 0.3s ease
}
.card-payment-section select:focus,.card-payment-section input:focus {
    outline:none;
    border-color:#4f46e5
}
.bank-transfer-info {
    margin-top:36px;
    padding:20px;
    border:1px solid #d1d5db;
    border-radius:12px;
    background:#f9fafb;
    text-align:center
}
.bank-transfer-info h4 {
    font-weight:700;
    margin-bottom:12px;
    color:#4f46e5
}
.bank-transfer-info img {
    max-width:200px;
    margin-bottom:12px
}
.bank-info-details {
    font-size:1rem;
    color:#374151
}
.bank-info-details p {
    margin:4px 0
}
section.download {
    padding:40px 0;
    background:#fff
}
.download-container {
    max-width:720px;
    margin:0 auto;
    background:#f3f4f6;
    padding:32px 40px;
    border-radius:20px;
    box-shadow:0 6px 18px rgb(0 0 0 / .07);
    text-align:center
}
.download-container h2 {
    font-weight:700;
    font-size:2rem;
    margin-bottom:24px;
    color:#4b5563
}
.download-btn {
    background:#4f46e5;
    color:#fff;
    padding:16px 40px;
    font-weight:700;
    border-radius:16px;
    font-size:1.125rem;
    border:none;
    box-shadow:0 5px 24px rgb(79 70 229 / .5);
    cursor:pointer;
    transition:background-color 0.3s ease;
    margin-bottom:24px
}
.download-btn:hover,.download-btn:focus {
    background:#4338ca;
    outline:none
}
section.support {
    background:#eef2ff;
    padding:40px 0
}
.faq-container {
    max-width:900px;
    margin:0 auto 48px
}
.faq-title {
    text-align:center;
    font-weight:700;
    font-size:2rem;
    margin-bottom:40px;
    color:#4b5563
}
.faq-item {
    background:#fff;
    border-radius:16px;
    padding:24px 32px;
    margin-bottom:16px;
    box-shadow:0 4px 14px rgb(0 0 0 / .05)
}
.faq-question {
    font-weight:600;
    cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center
}
.faq-answer {
    margin-top:12px;
    display:none;
    color:#52525b
}
.faq-item.active .faq-answer {
    display:block
}
.faq-icon {
    font-size:1.2rem;
    color:#4f46e5;
    transition:transform 0.3s ease
}
.faq-item.active .faq-icon {
    transform:rotate(45deg)
}
.support-contact {
    max-width:900px;
    margin:0 auto;
    text-align:center
}
.support-contact a {
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#fff;
    border-radius:12px;
    padding:14px 20px;
    margin:0 8px 12px;
    box-shadow:0 4px 14px rgba(0,0,0,.1);
    font-weight:600;
    color:#4338ca;
    font-size:1rem;
    transition:box-shadow 0.3s ease
}
.support-contact a:hover {
    box-shadow:0 8px 24px rgba(67,56,202,.5)
}
.support-contact .material-symbols-outlined {
    font-size:1.6rem
}
section.policies {
    background:#fff;
    padding:20px 0;
    max-width:900px;
    margin:0 auto 48px
}
.policy-title {
    text-align:center;
    font-weight:700;
    font-size:2rem;
    margin-bottom:48px;
    color:#4b5563
}
.policy-item {
    margin-bottom:36px
}
.policy-item h3 {
    font-weight:700;
    color:#4f46e5;
    font-size:1.3rem;
    margin-bottom:16px
}
.policy-item p {
    font-size:1rem;
    color:#374151;
    line-height:1.6
}
.modal-overlay {
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.4);
    z-index:1500;
    justify-content:center;
    align-items:center;
    overflow:auto;
    padding:24px
}
.modal-overlay.show {
    display:flex
}
.modal {
    background:#fff;
    border-radius:16px;
    max-width:400px;
    width:100%;
    padding:40px 40px 32px;
    box-shadow:0 8px 32px rgb(0 0 0 / .15);
    position:relative
}
.modal-lsn {
    background:#fff;
    border-radius:16px;
    max-width:800px;
    width:100%;
    padding:40px 40px 32px;
    box-shadow:0 8px 32px rgb(0 0 0 / .15);
    position:relative
}
.modal h3 {
    margin-top:0;
    font-weight:700;
    color:#4b5563;
    font-size:1.5rem;
    margin-bottom:24px;
    text-align:center
}
.modal form label {
    display:block;
    font-weight:600;
    margin-bottom:8px;
    margin-top:20px;
    color:#374151
}
.modal form input {
    width:100%;
    padding:12px 16px;
    font-size:1rem;
    border-radius:10px;
    border:1.5px solid #d1d5db;
    transition:border-color 0.3s ease
}
.modal form input:focus {
    outline:none;
    border-color:#4f46e5
}
.modal form button {
    margin-top:32px;
    width:100%;
    background:#4f46e5;
    color:#fff;
    padding:14px 0;
    font-weight:700;
    font-size:1.1rem;
    border-radius:12px;
    border:none;
    box-shadow:0 5px 20px rgb(79 70 229 / .5);
    cursor:pointer;
    transition:background-color 0.3s ease
}
.modal form button:hover,.modal form button:focus {
    background:#4338ca;
    outline:none
}
.modal-close {
    position:absolute;
    top:12px;
    right:14px;
    background:none;
    border:none;
    font-size:1.5rem;
    color:#6b7280;
    cursor:pointer
}
.modal-close:hover,.modal-close:focus {
    color:#4f46e5;
    outline:none
}
footer {
    background:#4f46e5;
    color:#fff;
    padding:32px 0 16px;
    font-size:1rem;
    user-select:none
}
.footer-inner {
    max-width:1200px;
    margin:0 auto;
    padding:0 24px;
    display:flex;
    justify-content:space-between;
    gap:48px;
    flex-wrap:wrap
}
.footer-section {
    min-width:200px;
    flex:1 1 300px
}
.footer-section h3 {
    font-weight:700;
    font-size:1.25rem;
    margin-bottom:16px
}
.footer-section ul {
    list-style:none;
    padding:0;
    margin:0
}
.footer-section ul li {
    margin-bottom:12px
}
.footer-section a {
    color:#d1d5db;
    text-decoration:none;
    transition:color 0.3s ease
}
.footer-section a:hover,.footer-section a:focus {
    color:#fff;
    outline:none
}
.footer-copy {
    max-width:1200px;
    margin:0 auto;
    padding:12px 24px 0;
    font-size:.875rem;
    color:#c7d2fe;
    text-align:center
}
table {
    width:90%;
    font-size:1rem;
    border-collapse:collapse
}
table th,table td {
    padding:16px 12px;
    text-align:center;
    border:1px solid #ddd
}
table th {
    background-color:#f2f2f2
}
@media (max-width:1024px) {
    .hero h1 {
        font-size:2.5rem
    }
    .header-inner {
        height:120px
    }
}
@media (max-width:768px) {
    .header-inner {
        justify-content:space-between
    }
    nav.desktop-nav {
        display:none
    }
    .mobile-menu-btn {
        display:inline-block
    }
    nav.mobile-nav {
        top:56px;
        width:220px;
        border-radius:0 0 0 12px;
        padding:20px
    }
    section.hero {
        padding:40px 0 48px
    }
    section.hero h1 {
        font-size:2rem;
        padding:0 10px
    }
    .hero-cta-btns {
        flex-direction:column
    }
    .btn-primary {
        width:100%;
        padding:14px 0
    }
}
.discord-float-btn {
    position:fixed;
    bottom:28px;
    right:28px;
    z-index:2000;
    background:#0166ff;
    border-radius:50%;
    width:56px;
    height:56px;
    box-shadow:0 4px 16px rgba(88,101,242,.25);
    display:flex;
    align-items:center;
    justify-content:center;
    transition:box-shadow 0.2s,transform 0.2s;
    cursor:pointer;
    border:none;
    outline:none
}
.discord-float-btn:hover,.discord-float-btn:focus {
    box-shadow:0 8px 32px rgba(88,101,242,.35);
    transform:scale(1.08)
}
.discord-float-btn svg {
    width:32px;
    height:32px;
    display:block
}
@media (max-width:600px) {
    .discord-float-btn {
        width:44px;
        height:44px;
        bottom:16px;
        right:16px
    }
    .discord-float-btn svg {
        width:24px;
        height:24px
    }
}