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

body {
    font-family: 'Comic Sans MS', 'Chalkboard SE', 'Comic Neue', cursive;
    background: linear-gradient(180deg, #FFF8E7 0%, #F5E6C8 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: #C8102E;
    text-shadow: 2px 2px 0px #DAA520;
    margin-bottom: 10px;
}

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

.tagline {
    font-size: 18px;
    color: #006400;
    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: #C8102E;
    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, #006400 0%, #004D00 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: #C8102E;
    color: white;
    border: none;
    padding: 20px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 8px 0 #8B0A1F;
    transition: all 0.2s;
}

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

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

.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 #C8102E;
    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: #DAA520;
    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: #006400;
    text-decoration: none;
}

.phone-number {
    font-size: 18px;
    font-weight: bold;
    color: #006400;
    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: #C8102E;
    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: #006400;
    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: #C8102E;
    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;
    }
}

/* Add to existing styles.css */

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-warning {
    background: #FFF3CD;
    border: 2px solid #FFB830;
    color: #856404;
}

.alert-icon {
    font-size: 24px;
}

.important-notice {
    background: #E8F5E9;
    border-left: 4px solid #006400;
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
}

.important-notice p {
    margin: 0;
    color: #1B5E20;
    font-size: 14px;
}

/* Unsubscribe page specific styles */
.warning-text {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 20px;
}

.unsubscribe-info {
    margin: 30px 0;
    background: #F9F9F9;
    border-radius: 10px;
    padding: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #E0E0E0;
}

.info-item:last-child {
    border-bottom: none;
}

.info-icon {
    font-size: 24px;
    margin-right: 15px;
    min-width: 30px;
}

.info-item p {
    font-size: 15px;
    color: #333;
    margin: 0;
}

.danger-btn {
    background: linear-gradient(135deg, #FF6B6B 0%, #EE5A6F 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 107, 74, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    font-family: 'Comic Sans MS', 'Chalkboard SE', 'Comic Neue', cursive;
}

.danger-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 74, 0.4);
}

.danger-btn:active {
    transform: translateY(0);
}

.secondary-btn {
    background: #E0E0E0;
    color: #333;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s;
    font-family: 'Comic Sans MS', 'Chalkboard SE', 'Comic Neue', cursive;
}

.secondary-btn:hover {
    background: #D0D0D0;
}

.action-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.success-message {
    color: #4CAF50;
    font-size: 16px;
    text-align: center;
    margin-bottom: 15px;
    font-weight: bold;
}

.info-text {
    color: #666;
    font-size: 15px;
    text-align: center;
    margin-bottom: 10px;
}

.primary-btn {
    background: linear-gradient(135deg, #006400 0%, #004D00 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 100, 0, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    font-family: 'Comic Sans MS', 'Chalkboard SE', 'Comic Neue', cursive;
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 100, 0, 0.4);
}

.retry-btn {
    background: linear-gradient(135deg, #FFB830 0%, #FF9F1C 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 184, 48, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    font-family: 'Comic Sans MS', 'Chalkboard SE', 'Comic Neue', cursive;
}

.retry-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 184, 48, 0.4);
}
