* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #0a0a0f;
    --dark-gray: #1a1a24;
    --purple-1: #9333ea;
    --purple-2: #7c3aed;
    --purple-3: #6d28d9;
    --purple-4: #5b21b6;
    --text-white: #ffffff;
    --text-gray: #a8a8b3;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--black);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Announcement Banner */
.announcement-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.15), rgba(91, 33, 182, 0.15));
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(147, 51, 234, 0.3);
    padding: 0.65rem 2rem;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.announcement-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.announcement-icon {
    font-size: 1.1rem;
}

.announcement-content p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-white);
    line-height: 1.4;
}

.announcement-content strong {
    color: var(--purple-1);
    font-weight: 700;
}

.free-text {
    background: linear-gradient(135deg, var(--purple-1), var(--purple-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    font-size: 1.1em;
    letter-spacing: 0.5px;
}

.announcement-close {
    background: transparent;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border-radius: 4px;
}

.announcement-close:hover {
    background: rgba(147, 51, 234, 0.1);
    color: var(--text-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 4rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 4rem);
    max-width: 1400px;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 16px;
    padding: 0.875rem 2rem;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-logo img {
    height: 40px;
    width: 40px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--purple-1);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10rem 2rem 4rem;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1200px;
    width: 100%;
}

/* Status Section */
.status-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

.hero-logo img {
    height: 180px;
    width: 180px;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(147, 51, 234, 0.5));
}

.status-info {
    text-align: left;
}

.status-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.status-operational {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.status-dot {
    width: 12px;
    height: 12px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.status-text {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: 1px;
}

.status-version {
    font-size: 1rem;
    color: var(--text-gray);
    letter-spacing: 1px;
}

.status-version span {
    color: var(--purple-1);
    font-weight: 600;
}

/* Terminal Container */
.terminal-container {
    margin-bottom: 3rem;
    perspective: 1000px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.terminal-video {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(147, 51, 234, 0.3);
    transition: transform 0.15s ease-out;
    display: block;
    object-fit: cover;
}

/* Hero CTA */
.hero-cta {
    margin-top: 2rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--purple-1), var(--purple-2), var(--purple-3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    padding: 1rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--purple-1), var(--purple-3));
    color: var(--text-white);
    box-shadow: 0 4px 20px rgba(147, 51, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(147, 51, 234, 0.6);
}

.btn-secondary {
    background: rgba(147, 51, 234, 0.1);
    color: var(--purple-1);
    border: 2px solid var(--purple-1);
}

.btn-secondary:hover {
    background: rgba(147, 51, 234, 0.2);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
}

.btn-explore {
    background: rgba(147, 51, 234, 0.1);
    color: var(--text-white);
    border: 2px solid rgba(147, 51, 234, 0.3);
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-explore:hover {
    background: rgba(147, 51, 234, 0.2);
    border-color: var(--purple-1);
    transform: translateY(-2px);
}

/* Hero Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: pulse 4s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--purple-1);
    top: 10%;
    right: 10%;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--purple-3);
    bottom: 20%;
    left: 10%;
    animation-delay: 1s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--purple-2);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 2s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

/* Features Tabs Section */
.features-tabs {
    padding: 6rem 2rem;
    background: var(--black);
}

.tab-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    background: rgba(26, 26, 36, 0.5);
    padding: 0.5rem;
    border-radius: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(147, 51, 234, 0.2);
}

.tab-btn {
    padding: 1rem 2rem;
    background: transparent;
    color: var(--text-gray);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.tab-btn:hover {
    color: var(--text-white);
    background: rgba(147, 51, 234, 0.1);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--purple-1), var(--purple-3));
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.4);
}

.tab-content-wrapper {
    position: relative;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(147, 51, 234, 0.3);
}

.feature-details h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.feature-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.feature-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    justify-content: flex-start;
}

.stat-card {
    background: rgba(147, 51, 234, 0.05);
    border: 1px solid rgba(147, 51, 234, 0.2);
    border-radius: 12px;
    padding: 1.25rem 1rem;
    text-align: center;
    flex: 0 0 auto;
    width: 140px;
}

.stat-card h3 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-card p {
    font-size: 0.8rem;
    color: var(--text-gray);
    line-height: 1.3;
    word-wrap: break-word;
}

.feature-benefits {
    margin-bottom: 2.5rem;
}

.feature-benefits h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-white);
    font-size: 0.95rem;
}

.check-icon {
    color: var(--purple-1);
    font-weight: 900;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--black) 0%, var(--dark-gray) 100%);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 3rem;
}

/* Benefits Tab Navigation */
.benefits-tab-navigation {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 4rem;
    background: rgba(26, 26, 36, 0.5);
    padding: 0.5rem;
    border-radius: 16px;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(147, 51, 234, 0.2);
}

.benefits-tab-btn {
    padding: 0.75rem 1.25rem;
    background: transparent;
    color: var(--text-gray);
    border: none;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.benefits-tab-btn:hover {
    color: var(--text-white);
    background: rgba(147, 51, 234, 0.05);
}

.benefits-tab-btn.active {
    background: linear-gradient(135deg, var(--purple-1), var(--purple-3));
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.4);
}

.benefits-tab-content-wrapper {
    position: relative;
}

.benefits-tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in;
}

.benefits-tab-content.active {
    display: block;
}

/* Benefits Grid Cards */
.benefits-grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-info-card {
    background: rgba(26, 26, 36, 0.6);
    border: 1px solid rgba(147, 51, 234, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: left;
    transition: all 0.3s ease;
    cursor: pointer;
}

.benefit-info-card:hover {
    transform: translateY(-5px);
    background: rgba(147, 51, 234, 0.1);
    border-color: var(--purple-1);
    box-shadow: 0 10px 40px rgba(147, 51, 234, 0.3);
}

.benefit-info-icon {
    width: 48px;
    height: 48px;
    background: rgba(147, 51, 234, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--purple-1);
    transition: all 0.3s;
}

.benefit-info-card:hover .benefit-info-icon {
    background: rgba(147, 51, 234, 0.2);
    transform: scale(1.1);
}

.benefit-info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-white);
    font-weight: 700;
}

.benefit-info-card p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 2rem;
    background: var(--black);
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(147, 51, 234, 0.1);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--purple-1);
    font-weight: 600;
    margin-bottom: 1rem;
}

.faq-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.faq-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
}

.faq-accordion {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-accordion-item {
    background: rgba(26, 26, 36, 0.6);
    border: 1px solid rgba(147, 51, 234, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-accordion-item:hover {
    border-color: rgba(147, 51, 234, 0.5);
    background: rgba(26, 26, 36, 0.8);
    box-shadow: 0 4px 20px rgba(147, 51, 234, 0.2);
}

.faq-accordion-item.active {
    border-color: var(--purple-1);
    background: rgba(26, 26, 36, 0.8);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--purple-1);
}

.faq-icon {
    color: var(--text-gray);
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-accordion-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--purple-1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-accordion-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 2rem;
    background: var(--black);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(147, 51, 234, 0.1);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--purple-1);
    font-weight: 600;
    margin-bottom: 1rem;
}

.pricing-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.pricing-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.secure-notice {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    max-width: 500px;
    margin: 2rem auto 3rem;
    padding: 1rem 1.5rem;
    background: rgba(147, 51, 234, 0.05);
    border: 1px solid rgba(147, 51, 234, 0.2);
    border-radius: 12px;
}

.secure-notice svg {
    color: var(--purple-1);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.secure-title {
    display: block;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.secure-desc {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.5;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.pricing-card {
    background: rgba(26, 26, 36, 0.6);
    border: 1px solid rgba(147, 51, 234, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--purple-1);
    background: rgba(26, 26, 36, 0.8);
    box-shadow: 0 20px 60px rgba(147, 51, 234, 0.4), 0 0 0 1px rgba(147, 51, 234, 0.5);
}

.pricing-card-featured {
    border: 2px solid var(--purple-1);
    position: relative;
    background: rgba(26, 26, 36, 0.7);
}

.pricing-card-featured:hover {
    box-shadow: 0 20px 60px rgba(147, 51, 234, 0.6), 0 0 0 2px var(--purple-1);
    background: rgba(26, 26, 36, 0.9);
}

.pricing-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.pricing-card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
}

.pricing-badge-small {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #000;
    padding: 0.35rem 0.75rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.pricing-card:hover .pricing-badge-small {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

.pricing-badge-popular {
    background: linear-gradient(135deg, var(--purple-1), var(--purple-3));
    color: var(--text-white);
    padding: 0.35rem 0.75rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.pricing-card:hover .pricing-badge-popular {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(147, 51, 234, 0.6);
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.price-original {
    font-size: 1rem;
    color: var(--text-gray);
    text-decoration: line-through;
}

.price-discount {
    font-size: 0.85rem;
    color: #10b981;
    font-weight: 600;
}

.price-crossed {
    font-size: 1.5rem;
    color: var(--text-gray);
    text-decoration: line-through;
    font-weight: 700;
}

.price-free {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--purple-1), var(--purple-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.pricing-card:hover .price-free {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.price-period {
    font-size: 1rem;
    color: var(--text-gray);
}

.pricing-desc {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.pricing-value {
    font-size: 0.9rem;
    color: var(--purple-1);
    font-weight: 600;
    margin-bottom: auto;
}

.pricing-btn {
    width: 100%;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(147, 51, 234, 0.5);
}

.pricing-btn:active {
    transform: translateY(0);
}

.pricing-features {
    border-top: 1px solid rgba(147, 51, 234, 0.2);
    padding-top: 1.5rem;
}

.features-title {
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-white);
}

.features-list li svg {
    color: var(--purple-1);
    flex-shrink: 0;
}

.secure-payment {
    font-size: 0.85rem;
    color: var(--text-gray);
    text-align: center;
}

.pricing-footer {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-footer h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.pricing-footer p {
    font-size: 1.1rem;
    color: var(--text-gray);
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: -100px;
    right: 2rem;
    background: linear-gradient(135deg, rgba(26, 26, 36, 0.95), rgba(10, 10, 15, 0.95));
    border: 1px solid var(--purple-1);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 40px rgba(147, 51, 234, 0.4);
    z-index: 10002;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    max-width: 400px;
}

.toast-notification.show {
    bottom: 2rem;
}

.toast-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--purple-1), var(--purple-3));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    flex-shrink: 0;
}

.toast-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
}

.toast-content p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0;
}

/* Download Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    padding: 2rem;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: linear-gradient(135deg, rgba(26, 26, 36, 0.95), rgba(10, 10, 15, 0.95));
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 24px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(147, 51, 234, 0.1);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 8px;
    padding: 0.5rem;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(147, 51, 234, 0.2);
    color: var(--text-white);
}

.modal-header {
    text-align: center;
    padding: 3rem 2rem 2rem;
    border-bottom: 1px solid rgba(147, 51, 234, 0.2);
}

.modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.2), rgba(91, 33, 182, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-1);
}

.modal-header h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.modal-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
}

.modal-body {
    padding: 2rem;
}

.modal-info-box {
    background: rgba(147, 51, 234, 0.1);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.modal-info-box h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-white);
}

.modal-info-box p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.modal-info-box strong {
    color: var(--purple-1);
    font-weight: 700;
}

.modal-terms {
    margin-bottom: 1.5rem;
}

.modal-terms h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.modal-terms ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-terms li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.modal-agreement {
    background: rgba(147, 51, 234, 0.05);
    border: 1px solid rgba(147, 51, 234, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    position: relative;
}

.checkbox-container input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(147, 51, 234, 0.5);
    border-radius: 6px;
    background: transparent;
    flex-shrink: 0;
    transition: all 0.3s;
    position: relative;
    margin-top: 2px;
}

.checkbox-container:hover .checkmark {
    border-color: var(--purple-1);
    background: rgba(147, 51, 234, 0.1);
}

.checkbox-container input[type="checkbox"]:checked ~ .checkmark {
    background: linear-gradient(135deg, var(--purple-1), var(--purple-3));
    border-color: var(--purple-1);
}

.checkbox-container input[type="checkbox"]:checked ~ .checkmark::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    user-select: none;
}

.modal-footer {
    padding: 2rem;
    border-top: 1px solid rgba(147, 51, 234, 0.2);
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.modal-footer .btn {
    padding: 0.875rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-footer .btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.modal-footer .btn:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Footer */
.footer {
    background: var(--black);
    border-top: 1px solid rgba(147, 51, 234, 0.2);
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-logo img {
    height: 30px;
    width: 30px;
    object-fit: contain;
}

.footer-text {
    color: var(--text-gray);
}

/* Responsive */
@media (max-width: 768px) {
    .announcement-banner {
        padding: 0.6rem 1rem;
        gap: 1rem;
    }

    .announcement-content {
        gap: 0.5rem;
    }

    .announcement-content p {
        font-size: 0.8rem;
    }

    .announcement-icon {
        font-size: 1rem;
    }

    .announcement-close {
        flex-shrink: 0;
    }

    .navbar {
        top: 3.5rem;
        width: calc(100% - 2rem);
        padding: 0.75rem 1rem;
        border-radius: 12px;
    }

    .nav-links {
        gap: 0.5rem;
        font-size: 0.8rem;
    }

    .nav-logo span {
        font-size: 1.1rem;
    }

    .nav-logo img {
        height: 32px;
        width: 32px;
    }

    .status-section {
        flex-direction: column;
        gap: 2rem;
    }

    .status-info {
        text-align: center;
    }

    .status-operational {
        justify-content: center;
    }

    .hero-logo img {
        height: 120px;
        width: 120px;
    }

    .status-text {
        font-size: 1.5rem;
    }

    .terminal-video {
        max-width: 100%;
        border-radius: 8px;
    }

    .terminal-container {
        max-width: 100%;
    }

    .tab-navigation {
        flex-direction: column;
        gap: 0.5rem;
        max-width: 100%;
    }

    .tab-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    .feature-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-details h2 {
        font-size: 1.8rem;
    }

    .feature-description {
        font-size: 1rem;
    }

    .feature-stats {
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-card {
        width: 120px;
        padding: 1rem 0.75rem;
    }

    .stat-card h3 {
        font-size: 1.8rem;
    }

    .stat-card p {
        font-size: 0.75rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-item {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .benefits-tab-navigation {
        max-width: 100%;
        gap: 0.5rem;
    }

    .benefits-tab-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }

    .benefits-grid-cards {
        grid-template-columns: 1fr;
    }

    .faq-title {
        font-size: 2rem;
    }

    .faq-subtitle {
        font-size: 1rem;
    }

    .faq-accordion {
        max-width: 100%;
    }

    .faq-question {
        padding: 1.25rem 1rem;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 1rem;
    }

    .faq-accordion-item.active .faq-answer {
        padding: 0 1rem 1.25rem;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .pricing-title {
        font-size: 2rem;
    }

    .price-free {
        font-size: 2.5rem;
    }

    .pricing-footer h3 {
        font-size: 1.5rem;
    }

    .modal-overlay {
        padding: 1rem;
    }

    .modal-content {
        max-height: 95vh;
    }

    .modal-header {
        padding: 2.5rem 1.5rem 1.5rem;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .modal-footer {
        padding: 1.5rem;
        flex-direction: column;
    }

    .modal-footer .btn {
        width: 100%;
        justify-content: center;
    }

    .toast-notification {
        right: 1rem;
        left: 1rem;
        max-width: calc(100% - 2rem);
    }

    .toast-notification.show {
        bottom: 1rem;
    }

    .toast-icon {
        width: 40px;
        height: 40px;
    }

    .toast-content h4 {
        font-size: 1rem;
    }

    .toast-content p {
        font-size: 0.85rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}


