.subscribe-main {
    min-height: calc(100vh - 200px);
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.subscribe-container {
    max-width: 600px;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 20px;
    padding: 40px;
}

.subscribe-container h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 30px;
    font-size: 28px;
}

.selected-plan-info {
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid #ff6b00;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.selected-plan-info h3 {
    color: #ff6b00;
    margin-bottom: 10px;
}

.selected-plan-info .price {
    font-size: 32px;
    color: #fff;
    font-weight: bold;
}

.payment-form {
    margin-bottom: 30px;
}

.payment-form h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #aaa;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #ff6b00;
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.terms-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.terms-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    cursor: pointer;
}

.terms-checkbox label {
    color: #ccc;
    font-size: 14px;
    cursor: pointer;
}

.subscribe-btn {
    width: 100%;
    padding: 16px;
    background: #ff6b00;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.subscribe-btn:hover {
    background: #ff8500;
}

.subscribe-btn:disabled {
    background: #666;
    cursor: not-allowed;
}

.subscription-info {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 20px;
}

.subscription-info h4 {
    color: #ff6b00;
    margin-bottom: 15px;
}

.subscription-info ul {
    list-style: none;
    padding: 0;
}

.subscription-info li {
    color: #aaa;
    font-size: 14px;
    line-height: 1.8;
    padding-left: 20px;
    position: relative;
}

.subscription-info li:before {
    content: "•";
    color: #ff6b00;
    position: absolute;
    left: 0;
}

.error-message {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #ff6666;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}

.success-message {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    color: #66ff66;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}

.billing-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.billing-info p {
    margin: 0;
    color: #ccc;
}

/* Promotion Code Section */
.promo-code-section {
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.promo-toggle-btn {
    width: 100%;
    padding: 15px 20px;
    background: transparent;
    border: none;
    color: #aaa;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.promo-toggle-btn:hover {
    background: rgba(255, 107, 0, 0.1);
    color: #ff6b00;
}

.promo-toggle-btn.active {
    color: #ff6b00;
}

.promo-toggle-icon {
    font-size: 18px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.promo-toggle-btn.active .promo-toggle-icon {
    transform: rotate(45deg);
}

.promo-input-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
}

.promo-input-wrapper.open {
    max-height: 120px;
    padding: 0 20px 20px;
}

.promo-input-container {
    display: flex;
    gap: 10px;
}

.promo-input-container input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
}

.promo-input-container input:focus {
    outline: none;
    border-color: #ff6b00;
}

.promo-input-container input::placeholder {
    text-transform: none;
}

.apply-promo-btn {
    padding: 12px 24px;
    background: #ff6b00;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.apply-promo-btn:hover {
    background: #ff8500;
}

.promo-message {
    margin-top: 10px;
    font-size: 13px;
    font-weight: bold;
}

.promo-message.success {
    color: #28a745;
}

.promo-message.error {
    color: #dc3545;
}

/* Loading animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}