:root {
    --primary-gold: #d4af37;
    --primary-gold-hover: #f9d970;
    --bg-dark: #0a0e17;
    --bg-card: #151a25;
    --text-light: #f0f0f0;
    --text-muted: #a0a0a0;
    --accent-blue: #1e3a8a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: radial-gradient(circle at 50% 0%, #1e2535 0%, var(--bg-dark) 70%);
}

/* ... existing styles ... */

.main-container {
    width: 100%;
    max-width: 600px;
    background-color: var(--bg-card);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    margin: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    animation: fadeIn 0.8s ease-out;
}

h1,
h2 {
    font-family: 'Cinzel', serif;
    color: var(--primary-gold);
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

h1 {
    font-size: 1.8rem;
}

h2 {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-top: 1.5rem;
}

.subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.highlight {
    color: var(--primary-gold);
    font-weight: 700;
}

/* Progress Bar */
.progress-container {
    background-color: rgba(255, 255, 255, 0.1);
    height: 8px;
    border-radius: 4px;
    margin: 0 auto 2rem;
    width: 100%;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-gold), #fff);
    border-radius: 4px;
    transition: width 0.5s ease;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Images */
.angel-images {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 2rem;
}

.angel-images img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--primary-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
    transition: transform 0.3s ease;
}

.angel-images img:hover {
    transform: scale(1.1);
}

/* Input Group */
.input-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

input {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(0, 0, 0, 0.3);
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    text-align: center;
}

input:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

/* Buttons */
.cta-button {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #b8860b 100%);
    color: #000;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    font-family: 'Cinzel', serif;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, var(--primary-gold-hover) 0%, #d4af37 100%);
}

.cta-button:active {
    transform: translateY(1px);
}



/* Result Step */
.result-content {
    text-align: center;
    animation: fadeIn 1s ease-out;
}

.result-header {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    text-transform: uppercase;
}

.main-angel-image img {
    width: 100%;
    max-width: 320px;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    margin: 1rem auto 2rem;
    display: block;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #e0e0e0;
}

.cta-text {
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.final-button {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
    color: white;
}

.final-button:hover {
    background: linear-gradient(135deg, #40d47e 0%, #2ecc71 100%);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.5);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
    .main-container {
        padding: 1.5rem;
        margin: 10px;
        width: calc(100% - 20px);
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    .angel-images img {
        width: 60px;
        height: 60px;
    }

    .cta-button {
        padding: 14px 24px;
        font-size: 1rem;
    }
}

/* Content Sections */
.content-section {
    width: 100%;
    max-width: 800px;
    padding: 2rem 1rem;
    margin-top: 2rem;
    animation: fadeIn 1s ease-out;
}

.section-title {
    font-family: 'Cinzel', serif;
    color: var(--primary-gold);
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-gold);
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: rgba(21, 26, 37, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(212, 175, 55, 0.3);
}

.blog-image {
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, #1e3a8a, #0a0e17);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 2rem;
}

.blog-content {
    padding: 1.5rem;
}

.blog-tag {
    color: var(--primary-gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: block;
}

.blog-title {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.blog-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-title a:hover {
    color: var(--primary-gold);
}

.blog-preview {
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.5;
}

/* FAQ */
.faq-container {
    background: rgba(21, 26, 37, 0.6);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1.5rem;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-question {
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-question::before {
    content: 'Q.';
    color: var(--primary-gold);
    font-family: 'Cinzel', serif;
}

.faq-answer {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
    padding-left: 2rem;
}

/* Footer */
.site-footer {
    width: 100%;
    background: #05070a;
    padding: 3rem 1rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    font-family: 'Cinzel', serif;
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: justify;
}

.copyright {
    color: #444;
    font-size: 0.8rem;
    margin-top: 2rem;
}