.price-container {
    max-width: 1000px;
    border-radius: 10px;
    padding: 0px;
    margin: 0 auto;
    color: #fff;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.pricing-table {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    width: 100%;
    align-items: stretch;
}

.pricing-tier {
    background-color: #26262C;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #444;
    width: 100%;
    max-width: 300px;
    text-align: center;
    color: #fff;
    position: relative;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-tier:nth-child(2) {
    margin-top: 120px;
}

.pricing-tier h3 {
    margin-bottom: 15px;
    text-align: center;
    font-size: 1.5rem;
    color: white;
}

.pricing-tier .price {
    font-size: 1.2rem;
    color: #ccc;
    margin: 10px 0;
}

.pricing-tier .description {
    font-size: 1rem;
    color: #aaa;
    margin-bottom: 15px;
    flex-grow: 0;
}

.pricing-tier .features-list {
    list-style: none !important;
    padding: 0;
    margin: 15px 0;
    text-align: left;
    flex-grow: 1;
    display: grid;
    grid-template-rows: repeat(6, minmax(32px, auto));
    gap: 0;
    min-height: 192px; /*6 rows × 32px */
}

.pricing-tier .features-list li {
    margin: 0;
    padding: 4px 0 4px 20px;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.4;
    color: #fff;
    list-style-type: none !important;
    text-align: left;
    display: flex;
    align-items: center;
    min-height: 32px;
}

.pricing-tier .features-list li::marker {
    content: none;
}

.pricing-tier strong {
    font-weight: 600;
    text-shadow: 0 0 6px #6A0DAD;
}

.buy-button {
    margin-top: auto;
    padding: 10px 20px;
    background-color: #6A0DAD;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s ease;
    align-self: center;
    width: fit-content;
}

.buy-button:hover {
    box-shadow: 0 4px 8px #6A0DAD;
    transition: 0.3s ease;
    scale: calc(1.05);
}

@media (min-width: 1024px) {
    .pricing-table {
        justify-content: space-between;
        align-items: stretch;
    }

    .pricing-tier {
        flex: 1 1 22%;
        max-width: none;
        margin: 0;
    }
    
    .pricing-tier:nth-child(2) {
        margin-top: 0px;
    }
}

.highlight {
    position: absolute;
    top: -10px;
    right: -10px;
    background: red;
    color: white;
    text-decoration: underline;
    padding: 10px 18px;
    font-size: 0.94rem;
    font-weight: bold;
    border-radius: 5px;
}

.crossout {
    position: relative;
}

.crossout::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 50%;
    width: 100%;
    height: 4px;
    background-color: red;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: center;
}

.comparison-table th {
    background-color: #1B1B1F;
    text-decoration: underline;
}

.comparison-table tr:nth-child(even) {
    background-color: #26262C;
}

.comparison-table tr:nth-child(odd) {
    background-color: #1B1B1F;
}

.comparison-table td {
    color: #ccc;
}
.comparison-table td strong{
    text-decoration: underline;
}

.comparison-table tr:hover {
    background-color: #26262C;
}

.showcase {
    color: white;
    text-align: center;
    margin-top: 40px;
}

.showcase img {
    max-width: 70%;
    height: auto;
    border-radius: 10px;
    border: 1px solid #ccc;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.upgrade-benefits {
    background-color: #26262C;
    padding: 0 20px 20px 0;
    border-radius: 10px;
    border: 1px solid #444;
    width: 100%;
    max-width: 700px;
    color: #fff;
    position: relative;
    margin: 20px auto;
}

.upgrade-benefits h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #fff;
}

.upgrade-benefits strong {
    font-weight: 600;
    text-shadow: 0 0 6px #6A0DAD;
}

.pricing-addons {
    background-color: #26262C;
    padding: 0 20px 20px 0;
    border-radius: 10px;
    border: 1px solid #444;
    width: 100%;
    max-width: 700px;
    text-align: center;
    color: #fff;
    position: relative;
    margin: 5px auto;
}

.pricing-addons h3 {
    margin-bottom: 15px;
    text-align: center;
    font-size: 1.5rem;
    color: #fff;
}

.pricing-addons strong {
    font-weight: 600;
    text-shadow: 0 0 6px #6A0DAD;
}

.showcase .note {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #aaa;
    text-align: center;
}

.price {
    font-size: 1.2rem;
    color: #ccc;
    margin: 10px 0;
}

.description {
    font-size: 1rem;
    color: #aaa;
    text-align: left;
    margin: 0 auto;
}

.additional-info {
    margin-top: 20px;
    text-align: center;
}

#additional-content {
    font-size: 1rem;
    color: #ddd;
}

#additional-content a {
    color: #007bff;
    text-decoration: none;
}

#additional-content a:hover {
    text-decoration: underline;
}

.payment-help {
    color: white;
    background-color: #26262C;
    border: 1px solid #444;
    padding: 15px;
    border-radius: 8px;
    margin: 30px auto;
    max-width: 500px;
    font-size: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: fadeIn 1s ease-in-out;
}

.payment-help a {
    color: #967bb6;
    font-weight: bold;
    text-decoration: underline;
}

.pricing-addon-note{
    color: #9b9ba7;
    font-style: italic;
    padding: 0;
    margin: 0 auto;
}

/* Custom Lists */
.custom-list {
    list-style: none !important;
    padding: 0;
    text-align: left;
    flex-grow: 1;
    display: grid;
    gap: 0;
}

.custom-list li {
    margin: 0;
    scale:calc(1.2);
    position: relative;
    font-size: 0.95rem;
    color: #fff;
    list-style-type: none !important;
    text-align: left;
    display: flex;
    align-items: center;
}

.custom-list li::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.description-list{
    grid-template-rows: repeat(6, minmax(32px, auto));
}
.description-list li{
    padding: 0 0 0 4.5em;
}
.description-list li::before{
    margin-left: 3em;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="white" viewBox="0 0 448 512"><path d="M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z"/></svg>');
}

.addons-list{
    min-height: 70px;
}

.addons-list li{
    padding: 0 0 0 8.5em;
}
.addons-list li::before{
    margin-left: 7em;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="white" viewBox="0 0 448 512"><path d="M256 80c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 144L48 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l144 0 0 144c0 17.7 14.3 32 32 32s32-14.3 32-32l0-144 144 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-144 0 0-144z" /></svg>');
}
.credit-info {
    font-size: 0.9rem;
    color: #aaa;
    font-weight: normal;
}

.price {
    font-size: 1.2rem;
    color: #ccc;
    margin: 10px 0;
    line-height: 1.4;
}
.out-of-stock-banner {
    background: linear-gradient(135deg, rgba(106, 13, 173, 0.15) 0%, rgba(88, 10, 143, 0.15) 100%);
    border: 2px solid rgba(106, 13, 173, 0.4);
    border-radius: 16px;
    padding: 40px 30px;
    margin: 40px auto;
    max-width: 900px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.out-of-stock-banner h2 {
    color: #c084fc;
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
}

.out-of-stock-banner p {
    color: #e5e7eb;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-table.disabled {
    opacity: 0.4;
    pointer-events: none;
    filter: grayscale(50%);
}

.legacy-badge {
    display: inline-block;
    background: rgba(107, 114, 128, 0.3);
    color: #9ca3af;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 10px;
}