body {
    margin: 0;
    padding: 0;
}

#page-content,
main.page-container {
    display: block !important;
    padding: 0 !important;
    margin: 0 auto !important;
    width: 100%;
    box-sizing: border-box;
}

/* This is the core fix */
.pricing-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 120px);    
    width: 100%;
    box-sizing: border-box;
    padding: 40px 20px;
}

.pricing-card {
    background-color: #1e1e1e;
    border-radius: 16px;
    padding: 40px 32px;
    margin-top: 20px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
    color: #f0f0f0;
}

.pricing-header {
    font-size: 32px;
    margin-bottom: 12px;
}

.highlight {
    color: var(--brand);
}

.pricing-subtitle {
    font-size: 16px;
    color: #aaa;
    margin-bottom: 32px;
}

.pricing-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.pricing-btn {
    background-color: var(--brand); 
    border: none;
    border-radius: 8px;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.pricing-btn:hover {
    background-color: var(--brand-strong); 
}

.pricing-btn.yearly {
    background-color: #00c7a8;
}

.pricing-btn.yearly:hover {
    background-color: #00b09e;
}

.btn-spinner {
    font-size: 16px;
    margin-left: 8px;
}

.pricing-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    text-align: left;
    font-size: 15px;
    line-height: 1.6;
    color: #ccc;
}

.features-list li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.secure-note {
    font-size: 13px;
    color: #888;
}

@media (max-width: 500px) {
    .pricing-card {
        padding: 32px 20px;
        margin-top: 20px;
    }

    .pricing-header {
        font-size: 24px;
    }

    .pricing-subtitle {
        font-size: 14px;
    }

    .pricing-btn {
        font-size: 15px;
        padding: 14px;
    }

    .features-list {
        font-size: 14px;
    }
}


