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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Language Selector */
.language-selector {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 8px 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.language-select {
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    color: #2563eb;
    cursor: pointer;
    outline: none;
}

.language-select option {
    background: white;
    color: #1a1a1a;
}

/* Hero Section with Community Video */
.hero {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #7c3aed 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.community-video-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.community-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.8) 0%, rgba(29, 78, 216, 0.8) 50%, rgba(124, 58, 237, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.biblical-quote {
    margin-bottom: 2rem;
    position: relative;
}

.biblical-quote h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 600;
    font-style: italic;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #ffffff, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.verse-reference {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
    color: #fbbf24;
    margin-bottom: 1.5rem;
}

.hero h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.hero p#hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ef4444, #dc2626);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
    border: none;
    cursor: pointer;
    animation: pulse 2s infinite;
}

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

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(239, 68, 68, 0.4);
    animation: none;
}

.steps {
   padding: 120px 0 80px 0; 
    background: linear-gradient(to bottom, #f8fafc, #e0f2fe);
}

.steps h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem; /* Increased from 2rem */
    margin-top: 5rem; /* Increased from 3rem */
    padding-top: 3rem; /* ADD THIS - crucial for step numbers */
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #2563eb, #7c3aed);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    transform: scale(1.1);
    background: linear-gradient(45deg, #1d4ed8, #7c3aed);
}

.step-number {
    background: #2563eb;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.step-verse {
    font-style: italic;
    color: #2563eb;
    margin-bottom: 1rem;
    font-weight: 500;
}

.step-description {
    color: #64748b;
    line-height: 1.6;
}

/* Decision Section */
.decision {
    padding: 80px 0;
    background: white;
}

.decision-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.decision h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1e293b;
}

.decision p {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 3rem;
}

.decision-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-button {
    background: linear-gradient(45deg, #2563eb, #1d4ed8);
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
    border: none;
    cursor: pointer;
}

.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.4);
}

.secondary-button {
    background: transparent;
    color: #2563eb;
    padding: 18px 36px;
    border: 2px solid #2563eb;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.secondary-button:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
}

/* Stats Section */
.stats {
    padding: 60px 0;
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #60a5fa;
    display: block;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 2rem;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.modal h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.prayer-progress {
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    margin: 1rem 0;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(45deg, #2563eb, #7c3aed);
    border-radius: 4px;
    transition: width 0.3s ease;
    width: 0%;
}

.prayer-segment {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    border-left: 4px solid #2563eb;
}

.prayer-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #1e293b;
    margin-bottom: 1rem;
}

.prayer-controls {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.mic-button {
    background: linear-gradient(45deg, #ef4444, #dc2626);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
}

.mic-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(239, 68, 68, 0.4);
}

.mic-button.listening {
    background: linear-gradient(45deg, #10b981, #059669);
    animation: pulse-mic 1.5s infinite;
}

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

.text-fallback {
    width: 100%;
    margin-top: 1rem;
}

.text-fallback textarea {
    width: 100%;
    min-height: 80px;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    resize: vertical;
}

.completed-segments {
    margin-top: 1rem;
}

.segment-complete {
background: #dcfce7;
color: #166534;
padding: 8px 16px;
border-radius: 20px;
margin: 4px;
display: inline-block;
font-size: 0.9rem;
}
.close-modal {
position: absolute;
top: 1rem;
right: 1rem;
background: #f1f5f9;
border: none;
font-size: 1.5rem;
cursor: pointer;
color: #64748b;
width: 35px;
height: 35px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
z-index: 10;
}
.close-modal:hover {
background: #e2e8f0;
color: #1e293b;
}

.share-buttons {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1rem;
margin: 2rem 0;
}
.share-btn {
background: white;
border: 2px solid #e2e8f0;
border-radius: 12px;
padding: 12px 16px;
cursor: pointer;
transition: all 0.3s ease;
display: flex;
align-items: center;
gap: 8px;
justify-content: center;
}
.share-btn:hover {
border-color: #2563eb;
background: #f8fafc;
transform: translateY(-2px);
}
.share-btn.popular {
border-color: #2563eb;
background: linear-gradient(45deg, #2563eb, #1d4ed8);
color: white;
}
/* Confetti Animation */
.confetti {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 999;
}
.confetti-piece {
position: absolute;
width: 10px;
height: 10px;
background: #2563eb;
animation: confetti-fall 3s linear infinite;
}
@keyframes confetti-fall {
0% {
transform: translateY(-100vh) rotate(0deg);
opacity: 1;
}
100% {
transform: translateY(100vh) rotate(720deg);
opacity: 0;
}
}
/* Responsive Design */
@media (max-width: 768px) {
.hero h1 {
font-size: 2.5rem;
}
.decision-buttons {
    flex-direction: column;
    align-items: center;
}

.primary-button, .secondary-button {
    width: 100%;
    max-width: 300px;
}

.share-buttons {
    grid-template-columns: 1fr;
}

.language-selector {
    top: 10px;
    right: 10px;
    padding: 6px 12px;
}
}
/* Floating Action Elements */
.floating {
animation: float 3s ease-in-out infinite;
}
@keyframes float {
0%, 100% { transform: translateY(0px); }
50% { transform: translateY(-10px); }
}
/* Loading State */
.loading {
opacity: 0.7;
pointer-events: none;
}
.spinner {
border: 2px solid #f3f3f3;
border-top: 2px solid #2563eb;
border-radius: 50%;
width: 20px;
height: 20px;
animation: spin 1s linear infinite;
display: inline-block;
margin-right: 8px;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
/* Retry Messages */
.retry-message, .success-message, .next-prompt {
animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(-10px); }
to { opacity: 1; transform: translateY(0); }
}
/* Biblical Journey Styling */
.biblical-journey {
    background: #f0f9ff;
    border: 1px solid #7dd3fc;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: left;
}

.scripture-quote {
    font-style: italic;
    color: #0c4a6e;
    margin-bottom: 1rem;
    font-weight: 500;
}

.journey-explanation {
    color: #0f172a;
    line-height: 1.6;
}

.journey-explanation p {
    margin-bottom: 0.75rem;
}

/* Personalized Message */
.personalized-message {
    background: #f0f9ff;
    border: 1px solid #7dd3fc;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: left;
}

/* Enhanced Text Fallback */
.text-fallback {
    width: 100%;
    margin-top: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1rem;
    background: white;
}

.text-fallback textarea {
    width: 100%;
    min-height: 80px;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    resize: vertical;
    font-family: inherit;
}

.text-fallback textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Retry and Success Messages */
.retry-message, .success-message, .next-prompt {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Prayer Text Enhancement */
.prayer-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 500;
}
/* Add this to the bottom of your css/styles.css file */

/* Footer Styles */
.footer {
    background: #1e293b;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    gap: 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: start;
}

.footer-logo h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.footer-logo p {
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #60a5fa;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
}

.footer-disclaimer {
    background: #374151;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.footer-disclaimer p {
    margin: 0;
    font-size: 0.9rem;
    color: #d1d5db;
}

.footer-verse {
    margin: 1rem 0;
}

.footer-verse p {
    font-style: italic;
    color: #60a5fa;
    margin: 0;
}

.footer-copyright {
    margin-top: 1rem;
}

.footer-copyright p {
    margin: 0;
    color: #94a3b8;
    font-size: 0.875rem;
}

/* Biblical Journey Styling */
.biblical-journey {
    background: #f0f9ff;
    border: 1px solid #7dd3fc;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: left;
}

.scripture-quote {
    font-style: italic;
    color: #0c4a6e;
    margin-bottom: 1rem;
    font-weight: 500;
}

.journey-explanation {
    color: #0f172a;
    line-height: 1.6;
}

.journey-explanation p {
    margin-bottom: 0.75rem;
}

/* Personalized Message */
.personalized-message {
    background: #f0f9ff;
    border: 1px solid #7dd3fc;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: left;
}

/* Enhanced Text Fallback */
.text-fallback {
    width: 100%;
    margin-top: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1rem;
    background: white;
}

.text-fallback textarea {
    width: 100%;
    min-height: 80px;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    resize: vertical;
    font-family: inherit;
}

.text-fallback textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.text-fallback p {
    margin-bottom: 0.5rem;
    color: #6b7280;
    font-size: 0.9rem;
}

/* Prayer Text Enhancement */
.prayer-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 500;
}

/* Button Enhancements */
.primary-button, .secondary-button {
    display: inline-block;
    text-align: center;
}

/* Mobile Footer Responsive */
@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
}

/* Add this to your css/styles.css - Step Numbers Fix */

.step-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative; /* This is crucial for step numbers */
    overflow: visible;
    margin-top: 40px; /* Give space for the step number */
}

.step-number {
    background: #2563eb;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    border: 4px solid white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.step-card:hover .step-number {
    background: #1d4ed8;
    transform: translateX(-50%) scale(1.1);
}



/* Step icon positioning adjustment */
.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto 1.5rem; /* Adjusted margin */
    font-size: 2rem;
    transition: all 0.3s ease;
}

/* Ensure proper z-index stacking */
.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #2563eb, #7c3aed);
    z-index: 1;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        top: -17px;
    }
    
    .steps-grid {
        gap: 2rem;
        padding-top: 1.5rem;
    }
    
    .step-card {
        margin-top: 15px;
    }
}
.sharing-section {
    display: none;
}

/* Center the FAQ title */
#faq-title {
    text-align: center;
    margin-bottom: 2rem;
}

.faq {
    text-align: center;
}

.faq-container {
    text-align: left;
    margin: 0 auto;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.faq-item:hover {
    border-color: #2563eb;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.faq-item.faq-open {
    border-color: #2563eb;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: white;
    transition: background-color 0.3s ease;
}

.faq-item.faq-open .faq-question {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    flex-grow: 1;
    padding-right: 1rem;
}

.faq-item.faq-open .faq-question h3 {
    color: #1e40af;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: bold;
    color: #64748b;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item:hover .faq-toggle {
    background: #2563eb;
    color: white;
}

.faq-item.faq-open .faq-toggle {
    background: #1e40af;
    color: white;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.faq-item.faq-open .faq-answer {
    background: #f8fafc;
}

.faq-answer p {
    padding: 0 1.5rem 1rem 1.5rem;
    margin: 0;
    color: #475569;
    line-height: 1.6;
}

.faq-verse {
    margin: 1rem 1.5rem 1.5rem 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left: 4px solid #f59e0b;
    border-radius: 8px;
}

.faq-verse em {
    color: #92400e;
    font-style: italic;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Enhanced Confetti Styles */
.confetti {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.confetti-piece {
    position: absolute;
    top: -20px;
    width: 10px;
    height: 10px;
    background: #2563eb;
    animation: confetti-fall linear forwards;
    opacity: 0.9;
}

@keyframes confetti-fall {
    0% {
        transform: translateY(-20px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(var(--rotation-speed, 720deg));
        opacity: 0;
    }
}

/* Email Collection Modal Styles */
.email-collection-content {
    text-align: center;
}

.email-collection-form {
    max-width: 400px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
}

.form-group input[type="email"] {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input[type="email"]:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group small {
    display: block;
    margin-top: 0.25rem;
    color: #6b7280;
    font-size: 0.875rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 0.5rem;
    }
    
    .faq-answer p {
        padding: 0 1rem 1rem 1rem;
    }
    
    .faq-verse {
        margin: 1rem;
        padding: 0.75rem;
    }
    
    .faq-toggle {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }
}


.tertiary-button-styled {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    color: #64748b;
    border: 1px solid #e2e8f0;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.tertiary-button-styled:hover {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    color: #475569;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tertiary-button-styled:active {
    transform: translateY(0);
}

.anonymous-option {
    margin: 1.5rem 0 1rem 0;
    text-align: center;
}

.celebration-content {
    max-height: 90vh;
    overflow-y: auto;
}

/* Modern Believer Modal Styles */
.believer-welcome {
    text-align: center;
}

.feature-cards {
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0;
}

.feature-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-card:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
    transform: translateY(-2px);
}

.feature-card.selected {
    border-color: #2563eb;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.feature-card h5 {
    margin: 0 0 0.5rem 0;
    color: #1f2937;
    font-size: 1.1rem;
    font-weight: 600;
}

.feature-card p {
    margin: 0 0 1rem 0;
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.4;
}

.feature-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 500;
    color: #374151;
}

.feature-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #2563eb;
}

.notification-signup {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.notification-signup h4 {
    margin: 0 0 0.5rem 0;
    color: #1f2937;
}

.notification-signup p {
    margin: 0 0 1rem 0;
    color: #6b7280;
}

/* Growth options container */
.growth-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
    align-items: center;
}

/* Override button sizes in modal */
.modal .growth-options .primary-button,
.modal .growth-options .secondary-button {
    padding: 12px 24px;
    font-size: 1rem;
    width: auto;
    max-width: 280px;
}

/* Ensure tertiary button styling takes precedence */
.modal .tertiary-button-styled {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%) !important;
    color: #64748b !important;
    border: 1px solid #e2e8f0 !important;
    padding: 0.5rem 1rem !important;
    border-radius: 6px !important;
    font-size: 0.875rem !important;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 400 !important;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: auto !important;
    max-width: none !important;
}

.modal .tertiary-button-styled:hover {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%) !important;
    color: #475569 !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Mobile responsive for growth options */
@media (max-width: 768px) {
    .growth-options {
        gap: 0.75rem;
    }
    
    .modal .growth-options .primary-button,
    .modal .growth-options .secondary-button {
        padding: 10px 20px;
        font-size: 0.9rem;
        max-width: 250px;
    }
    
    .modal .tertiary-button-styled {
        padding: 0.4rem 0.8rem !important;
        font-size: 0.8rem !important;
    }
}

/* Modern Alert System */
.alert-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
}

.modern-alert {
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    animation: slideInRight 0.3s ease;
}

.alert-success { background: #dcfce7; border: 2px solid #10b981; }
.alert-error { background: #fef2f2; border: 2px solid #ef4444; }
.alert-warning { background: #fef3c7; border: 2px solid #f59e0b; }
.alert-info { background: #dbeafe; border: 2px solid #2563eb; }

.alert-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.alert-message { flex-grow: 1; font-weight: 500; }
.alert-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.7;
}

.alert-close:hover { opacity: 1; }

/* Modern Confirm/Prompt Modals */
.modern-confirm-modal, .modern-prompt-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modern-confirm-content, .modern-prompt-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.confirm-actions, .prompt-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.prompt-input {
    width: 100%;
    margin: 1rem 0;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    resize: vertical;
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Modern Post-Sharing Modal */
.modern-post-sharing {
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.success-message {
    background: #f0f9ff;
    border: 1px solid #7dd3fc;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.success-message p {
    margin: 0;
    color: #0c4a6e;
    font-weight: 500;
}

.next-steps-simple h4 {
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.next-steps-simple p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.modern-post-sharing-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modern-post-sharing-form .form-group {
    margin-bottom: 0;
}

.modern-post-sharing-form input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    box-sizing: border-box;
}

.modern-post-sharing-form input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.privacy-note {
    color: #6b7280;
    font-size: 0.875rem;
    text-align: center;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions button {
        width: 100%;
    }
}