/* Support Page Styles */

.subscribe-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 120px);
    padding: 1.5rem;
}

.subscribe-container {
    display: grid;
    grid-template-columns: 360px auto;
    gap: 2rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, var(--bg-secondary) 50%, rgba(99, 102, 241, 0.05) 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    padding: 2rem;
    max-width: 700px;
}

/* Center Content */
.subscribe-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
}

.subscribe-header {
    text-align: center;
    margin-bottom: 0.5rem;
}

.subscribe-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.4rem 0;
}

.subscribe-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Amount Selector */
.amount-selector {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.amount-presets {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.amount-preset {
    padding: 0.6rem 1.1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.amount-preset:hover {
    border-color: rgba(99, 102, 241, 0.5);
    background: rgba(99, 102, 241, 0.05);
}

.amount-preset-selected {
    border-color: var(--accent-pink);
    background: rgba(99, 102, 241, 0.12);
}

.amount-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.amount-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.amount-input {
    width: 60px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    font-family: inherit;
    -moz-appearance: textfield;
}

.amount-input::-webkit-outer-spin-button,
.amount-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.amount-input:focus {
    outline: none;
}

.amount-period {
    font-size: 1rem;
    color: var(--text-secondary);
}

.amount-slider {
    width: 100%;
    height: 6px;
    background: var(--bg-tertiary);
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.amount-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: var(--accent-pink);
    border-radius: 50%;
    cursor: pointer;
}

.amount-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: var(--accent-pink);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

/* Credits Display */
.amount-credits {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.amount-credits strong {
    color: var(--accent-pink);
}

/* Support Message */
.support-message {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    color: var(--text-secondary);
    width: 100%;
    margin-top: 0.25rem;
}

.support-message svg {
    width: 12px;
    height: 12px;
    stroke: var(--accent-pink);
    flex-shrink: 0;
}

/* Subscribe Button */
.subscribe-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    width: 100%;
    padding: 0.85rem 1.5rem;
    background: var(--accent-pink);
    border: none;
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 0.5rem;
    font-family: inherit;
}

.subscribe-btn:hover:not(:disabled) {
    background: var(--accent-pink-hover);
}

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

/* Benefits Sidebar */
.subscribe-benefits {
    align-self: start;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1rem;
}

.benefits-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.benefit-item svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    stroke: var(--accent-pink);
}

/* Mobile */
@media (max-width: 791px) {
    .subscribe-page {
        padding: 1rem;
        min-height: auto;
    }

    .subscribe-container {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
        max-width: 100%;
    }

    .subscribe-title {
        font-size: 1.2rem;
    }

    .subscribe-subtitle {
        font-size: 0.85rem;
    }

    .amount-presets {
        flex-wrap: wrap;
    }

    .amount-preset {
        padding: 0.5rem 0.9rem;
        font-size: 0.85rem;
    }

    .amount-input {
        font-size: 1.5rem;
    }

    .amount-currency {
        font-size: 1.25rem;
    }

    .subscribe-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
}
