.subscription-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Simple Card */
.subscription-card {
    max-width: 420px;
    width: 100%;
    background: white;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.card-content {
    padding: 30px 24px;
}

/* Logo */
.logo-wrapper {
    text-align: center;
    margin-bottom: 20px;
}

.logo-wrapper img {
    height: 40px;
    width: auto;
}

/* Title */
.title {
    text-align: center;
    margin-bottom: 20px;
}

.title h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 6px;
}

.title p {
    color: #64748b;
    font-size: 14px;
}

/* Video */
.video-container {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
    background: #f1f5f9;
}

/* Price Box */
.price-box {
    background: #f8fafc;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    margin-bottom: 24px;
    border: 1px solid #eef2f6;
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
}

.price small {
    font-size: 14px;
    font-weight: 400;
    color: #64748b;
}

.duration {
    display: inline-block;
    background: white;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 12px;
    color: #3b82f6;
    margin-top: 8px;
}

/* Simple Form */
.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #334155;
    margin-bottom: 6px;
}

.phone-input {
    display: flex;
    gap: 8px;
}

.country-code {
    width: 80px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #334155;
}

.input-field {
    flex: 1;
    padding: 14px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.2s;
}

.input-field:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.input-field:disabled {
    background: #f8fafc;
    color: #64748b;
}

/* OTP Section */
.otp-section {
    margin-top: 20px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #eef2f6;
}

.otp-inputs {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin: 15px 0;
}

.otp-box {
    width: 50px;
    height: 60px;
    background: white;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
}

.otp-box:focus {
    outline: none;
    border-color: #3b82f6;
}

.timer-text {
    text-align: center;
    font-size: 14px;
    color: #3b82f6;
    font-weight: 500;
    margin: 10px 0;
}

.resend-link {
    text-align: center;
}

.resend-link button {
    background: none;
    border: none;
    color: #64748b;
    font-size: 13px;
    text-decoration: underline;
    cursor: pointer;
}

.resend-link button:disabled {
    color: #cbd5e1;
    cursor: not-allowed;
    text-decoration: none;
}

/* Main Button */
.main-btn {
    width: 100%;
    padding: 16px;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin: 20px 0 10px;
}

.main-btn:hover {
    background: #2563eb;
}

.main-btn:disabled {
    background: #94a3b8;
    cursor: not-allowed;
}

.main-btn.loading {
    opacity: 0.8;
    cursor: wait;
}

/* Change Number Link */
.change-link {
    text-align: center;
    margin: 10px 0;
}

.change-link button {
    background: none;
    border: none;
    color: #64748b;
    font-size: 13px;
    text-decoration: underline;
    cursor: pointer;
}

.message {
    font-size: 13px;
    margin-top: 6px;
}

.error {
    color: #ef4444;
}

.success {
    color: #10b981;
}

.info {
    color: #3b82f6;
}

/* Cancellation */
.cancellation {
    text-align: center;
    font-size: 12px;
    color: #94a3b8;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px dashed #e2e8f0;
}
    </style>