@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #000000;
    color: #FFFFFF;
}

.glow-effect {
    box-shadow: 0 0 15px rgba(185, 90, 255, 0.3);
}

.gradient-text {
    background: linear-gradient(90deg, #B95AFF, #FF5AEF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.service-card {
    transition: all 0.3s ease;
    background: rgba(15, 15, 15, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(185, 90, 255, 0.2);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #B95AFF;
    box-shadow: 0 10px 25px rgba(185, 90, 255, 0.15);
}

.highlight-item {
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(5px);
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #B95AFF;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.trust-badge {
    background: linear-gradient(135deg, rgba(185, 90, 255, 0.1), rgba(185, 90, 255, 0.05));
    backdrop-filter: blur(5px);
}

.countdown-timer {
    font-feature-settings: "tnum";
}

.faq-item.active {
    background: linear-gradient(to right, rgba(185, 90, 255, 0.2), rgba(185, 90, 255, 0.15));
    box-shadow: 0 4px 15px rgba(185, 90, 255, 0.15);
}

.faq-item svg {
    transition: transform 0.3s ease;
}

.rotate-180 {
    transform: rotate(180deg);
}

.faq-content {
    transition: max-height 0.4s ease, opacity 0.3s ease;
}

.faq-item:focus-within {
    outline: 2px solid rgba(185, 90, 255, 0.4);
    outline-offset: 2px;
}


.StripeElement {
    box-sizing: border-box;
    height: 40px;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: box-shadow 150ms ease;
    width: 100%;
}

.StripeElement--focus {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2);
    border-color: #3b82f6;
}

.StripeElement--invalid {
    border-color: #ef4444;
}

.StripeElement--webkit-autofill {
    background-color: #ef4444 !important;
}

#card-errors {
    min-height: 20px;
    margin-top: 8px;
    font-size: 14px;
}

.card-field-container {
    margin-bottom: 16px;
}

.card-field-label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #f1f1f1;
}

.card-row {
    display: flex;
    gap: 16px;
}

.card-expiry {
    flex: 2;
}

.card-cvc {
    flex: 1;
}

.card-field-container input {
    background-color: red !important;
}






.payment-method-btn {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(185, 90, 255, 0.3);
    color: #B95AFF;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-method-btn.active {
    background-color: rgba(185, 90, 255, 0.2);
    border-color: #B95AFF;
    color: white;
}

.payment-method-btn:hover {
    border-color: #B95AFF;
}

.payment-fields {
    transition: all 0.3s ease;
}