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

:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --text-dark: #2d3748;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --white: #ffffff;
    --accent: #f6ad55;
    --shadow: rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 60vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 2rem;
}

.hero-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.3) 0%, transparent 50%);
}

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

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    text-transform: lowercase;
    letter-spacing: -0.02em;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-subtext {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    font-style: italic;
}

/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Blog Post */
.blog-post {
    background: var(--white);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 40px var(--shadow);
    animation: fadeIn 1s ease-out 0.3s both;
}

.post-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--bg-light);
}

.post-date {
    color: var(--text-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.post-content h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin: 2rem 0 1rem;
    font-weight: 700;
}

.post-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.post-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.post-content li {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

/* Option Cards */
.options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.option-card {
    background: linear-gradient(135deg, #f6f8fb 0%, #ffffff 100%);
    border: 2px solid var(--bg-light);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow);
    border-color: var(--primary-color);
}

.option-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.option-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* Call to Action */
.call-to-action {
    background: linear-gradient(135deg, var(--accent) 0%, #f6ad55 100%);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin: 3rem 0 1rem;
    box-shadow: 0 4px 15px rgba(246, 173, 85, 0.3);
}

.call-to-action p {
    color: var(--white);
    font-size: 1.2rem;
    margin: 0;
}

.call-to-action strong {
    font-weight: 700;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .blog-post {
        padding: 2rem 1.5rem;
    }

    .container {
        padding: 2rem 1rem;
    }

    .options {
        grid-template-columns: 1fr;
    }
}
