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

body {
    background: #0a0e27;
    color: #e1e8f0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

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

.content-wrapper {
    width: 100%;
}

/* Navigation Bar */
.navbar {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-logo {
    font-size: 1.5em;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #a0aec0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: white;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.nav-right {
    display: flex;
    align-items: center;
}

.search-bar {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 10px 45px 10px 20px;
    color: white;
    font-size: 0.95em;
    width: 280px;
    transition: all 0.3s;
}

.search-input:focus {
    outline: none;
    border-color: #667eea;
    background: rgba(255, 255, 255, 0.08);
}

.search-input::placeholder {
    color: #6b7280;
}

.search-icon {
    position: absolute;
    right: 15px;
    font-size: 1.2em;
    pointer-events: none;
}

/* Product Section */
.product-section {
    padding: 60px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 40px;
    align-items: start;
}

/* Left Panel - Features */
.features-panel {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.offer-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 12px 25px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
    margin: 0 auto 15px;
    display: inline-block;
    align-self: center;
}

.offer-text {
    font-size: 1em;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Features List */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    cursor: default;
}

.feature-item:hover {
    background: rgba(102, 126, 234, 0.1);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateX(5px);
}

.feature-icon {
    font-size: 2em;
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(102, 126, 234, 0.15);
    border-radius: 10px;
    flex-shrink: 0;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1em;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
    letter-spacing: -0.3px;
}

.feature-desc {
    font-size: 0.85em;
    color: #a0aec0;
    line-height: 1.4;
}

/* Discord Link */
.discord-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 25px;
    background: rgba(88, 101, 242, 0.1);
    border: 1px solid rgba(88, 101, 242, 0.2);
    border-radius: 12px;
    color: #7289da;
    text-decoration: none;
    font-size: 1em;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.discord-link:hover {
    background: rgba(88, 101, 242, 0.2);
    border-color: rgba(88, 101, 242, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(88, 101, 242, 0.2);
    color: #8095e8;
}

.discord-icon-svg {
    width: 28px;
    height: 22px;
    flex-shrink: 0;
}

.discord-link span {
    letter-spacing: -0.2px;
}

/* Right Panel - Pricing */
.pricing-panel {
    position: sticky;
    top: 100px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.product-title {
    font-size: 1.8em;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.2;
}

.product-subtitle {
    font-size: 0.95em;
    color: #a0aec0;
    line-height: 1.6;
    margin-bottom: 25px;
}

.special-offer-badge {
    display: inline-block;
    background: rgba(102, 126, 234, 0.2);
    border: 1px solid rgba(102, 126, 234, 0.4);
    color: #667eea;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 0.85em;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.price-section {
    margin-bottom: 30px;
}

.price-display {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.original-price {
    font-size: 1.4em;
    color: #6b7280;
    text-decoration: line-through;
    font-weight: 500;
}

.current-price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.current-price {
    font-size: 3em;
    font-weight: 800;
    color: #667eea;
    line-height: 1;
}

.price-period {
    font-size: 1.2em;
    color: #a0aec0;
    font-weight: 500;
}

.save-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: #10b981;
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 0.9em;
    font-weight: 700;
}

.quantity-section {
    margin-bottom: 25px;
}

.quantity-label {
    display: block;
    font-size: 1em;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

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

.quantity-input-group {
    display: flex;
    align-items: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
}

.quantity-btn {
    width: 45px;
    height: 45px;
    border: none;
    background: #667eea;
    color: white;
    font-size: 1.5em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: #5568d3;
}

.quantity-value {
    width: 70px;
    height: 45px;
    border: none;
    text-align: center;
    font-size: 1.3em;
    font-weight: 700;
    color: #ffffff;
    background: transparent;
    outline: none;
}

/* Hide spinner buttons */
.quantity-value::-webkit-outer-spin-button,
.quantity-value::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity-value {
    -moz-appearance: textfield;
}

.quantity-hint {
    font-size: 0.9em;
    color: #6b7280;
}

.email-section {
    margin-bottom: 25px;
}

.email-label {
    display: block;
    font-size: 1em;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.email-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 1em;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    transition: all 0.3s;
    outline: none;
}

.email-input:focus {
    border-color: #667eea;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

.email-input::placeholder {
    color: #6b7280;
}

.total-section {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.total-label {
    font-size: 1.1em;
    font-weight: 600;
    color: #a0aec0;
}

.total-amount {
    font-size: 1.8em;
    font-weight: 800;
    color: #667eea;
}

.checkout-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.2em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.5);
}

.checkout-btn:active {
    transform: translateY(0);
}

.security-note {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9em;
    color: #6b7280;
    padding: 12px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 8px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5em;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.2em;
    color: #a0aec0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.faq-icon {
    font-size: 1.5em;
}

.faq-question h3 {
    font-size: 1.2em;
    font-weight: 700;
    color: white;
}

.faq-answer {
    font-size: 0.95em;
    color: #a0aec0;
    line-height: 1.7;
}

/* Footer */
.footer {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    text-align: center;
}

.footer p {
    color: #6b7280;
    font-size: 0.95em;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pricing-panel {
        position: relative;
        top: 0;
    }

    .offer-badge {
        max-width: 100%;
    }

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-left {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .nav-links {
        gap: 20px;
    }

    .search-input {
        width: 100%;
    }

    .product-section {
        padding: 40px 0;
    }

    .pricing-card {
        padding: 25px;
    }

    .product-title {
        font-size: 1.5em;
    }

    .current-price {
        font-size: 2.5em;
    }

    .offer-badge {
        padding: 10px 20px;
        margin-bottom: 12px;
    }

    .offer-text {
        font-size: 0.9em;
    }

    /* Features List Mobile */
    .features-list {
        padding: 15px;
        gap: 12px;
    }

    .feature-item {
        padding: 15px;
        gap: 15px;
    }

    .feature-icon {
        font-size: 1.8em;
        min-width: 45px;
        height: 45px;
    }

    .feature-title {
        font-size: 0.95em;
    }

    .feature-desc {
        font-size: 0.8em;
    }

    .discord-link {
        padding: 15px 20px;
        font-size: 0.95em;
    }

    .discord-icon-svg {
        width: 24px;
        height: 18px;
    }

    .section-title {
        font-size: 2em;
    }

    .faq-section {
        padding: 60px 0;
    }
}
