* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Comic Sans MS', 'Chalkboard SE', 'Comic Neue', cursive;
    background: linear-gradient(180deg, #FFF9E5 0%, #FFE4B5 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    max-width: 600px;
    width: 100%;
}

.header {
    text-align: center;
    margin-bottom: 30px;
}

.logo {
    font-size: 32px;
    font-weight: bold;
    color: #FF6B4A;
    text-shadow: 2px 2px 0px #FFB830;
    margin-bottom: 10px;
}

.logo .star {
    color: #FFD700;
    font-size: 28px;
}

.tagline {
    font-size: 18px;
    color: #4FC3F7;
    font-weight: bold;
}

.subscription-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.subscription-card h1 {
    font-size: 32px;
    color: #FF6B4A;
    margin-bottom: 15px;
    text-align: center;
}

.description {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 30px;
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.feature-item {
    text-align: center;
    padding: 15px;
    background: #F9F9F9;
    border-radius: 10px;
}

.feature-item .icon {
    font-size: 36px;
    display: block;
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 14px;
    color: #333;
    font-weight: bold;
}

.pricing {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #4FC3F7 0%, #6B9BD1 100%);
    border-radius: 15px;
    color: white;
}

.pricing h3 {
    margin-bottom: 10px;
}

.price {
    font-size: 48px;
    font-weight: bold;
    margin: 10px 0;
}

.price span {
    font-size: 24px;
}

.note {
    font-size: 14px;
    opacity: 0.9;
}

.subscribe-btn {
    width: 100%;
    background: #4FC3F7;
    color: white;
    border: none;
    padding: 20px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 8px 0 #3AA0C7;
    transition: all 0.2s;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 0 #3AA0C7;
}

.subscribe-btn:active {
    transform: translateY(4px);
    box-shadow: 0 4px 0 #3AA0C7;
}

.loading-state, .error-state, .processing-state, .success-state {
    text-align: center;
    padding: 20px;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 6px solid #f3f3f3;
    border-top: 6px solid #4FC3F7;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

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

.error-state .error-icon {
    font-size: 64px;
}

.retry-btn {
    background: #FF6B4A;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 15px;
}

.terms {
    text-align: center;
    margin-top: 20px;
    color: #666;
    font-size: 12px;
}

.terms a {
    color: #4FC3F7;
    text-decoration: none;
}

.phone-number {
    font-size: 18px;
    font-weight: bold;
    color: #4FC3F7;
    margin: 15px 0;
}

.progress-steps {
    display: flex;
    justify-content: space-around;
    margin: 30px 0;
}

.step {
    text-align: center;
    opacity: 0.4;
    transition: all 0.3s;
}

.step.active {
    opacity: 1;
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: #ddd;
    color: white;
    font-weight: bold;
    margin-bottom: 8px;
}

.step.active .step-number {
    background: #4FC3F7;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.success-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.continue-btn, .dashboard-btn {
    background: #4FC3F7;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
}

.next-steps {
    margin: 30px 0;
}

.next-steps h3 {
    color: #FF6B4A;
    margin-bottom: 15px;
}

.step-list {
    text-align: left;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 15px;
    background: #F9F9F9;
    border-radius: 10px;
}

.step-icon {
    font-size: 32px;
}

.support-info {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: #666;
    font-size: 14px;
}

.success-animation {
    margin-bottom: 30px;
}

.checkmark-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #4CAF50;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.checkmark {
    width: 30px;
    height: 60px;
    border: solid white;
    border-width: 0 8px 8px 0;
    transform: rotate(45deg);
    animation: checkmark 0.5s ease-out 0.3s backwards;
}

@keyframes checkmark {
    0% { height: 0; }
    100% { height: 60px; }
}

.welcome-text {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

@media (max-width: 600px) {
    .features {
        grid-template-columns: 1fr;
    }
    
    .subscription-card {
        padding: 20px;
    }
    
    .logo {
        font-size: 24px;
    }
}
