* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Georgia", "Times New Roman", serif;
    line-height: 1.8;
    color: #1a1a2e;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: #e94560;
    transition: color 0.3s ease;
}

a:hover {
    color: #d63447;
}

.back-to-home {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: linear-gradient(135deg, #e94560 0%, #d63447 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 20px rgba(233, 69, 96, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "Segoe UI", sans-serif;
}

.back-to-home:hover {
    background: linear-gradient(135deg, #d63447 0%, #c0234a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(233, 69, 96, 0.4);
    color: white;
}

header {
    background: linear-gradient(135deg,
            #0f2027 0%,
            #203a43 50%,
            #2c5364 100%);
    padding: 80px 20px 50px;
    text-align: center;
    margin: 0 -20px 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0 L1200,0 L1200,90 Q900,60 600,90 T0,90 Z" fill="rgba(255,255,255,0.05)"/></svg>') no-repeat bottom;
    background-size: cover;
    pointer-events: none;
}

.blog-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.blog-meta {
    font-size: 16px;
    color: #b8c5d6;
    font-style: italic;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.author-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e94560 0%, #f9a826 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.3);
}

.author-details {
    text-align: left;
}

.author-name {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2px;
    font-family: "Segoe UI", sans-serif;
}

.author-bio {
    font-size: 14px;
    color: #b8c5d6;
    font-family: "Segoe UI", sans-serif;
}

nav {
    background-color: transparent;
    padding: 0;
    margin-bottom: 50px;
    text-align: center;
}

nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    gap: 30px;
}

nav a {
    color: #5a6c7d;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 8px 0;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    font-family: "Segoe UI", sans-serif;
}

nav a:hover {
    color: #e94560;
    border-bottom: 3px solid #e94560;
}

article {
    background-color: white;
    padding: 0;
    margin-bottom: 80px;
}

h2 {
    color: #0f2027;
    font-size: 32px;
    margin: 60px 0 25px;
    font-weight: 700;
    line-height: 1.3;
    position: relative;
    padding-bottom: 15px;
}

h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #e94560 0%, #f9a826 100%);
    border-radius: 2px;
}

h3 {
    color: #203a43;
    font-size: 24px;
    margin: 40px 0 20px;
    font-weight: 600;
}

p {
    margin-bottom: 25px;
    font-size: 19px;
    line-height: 1.8;
    color: #2c3e50;
}

.lead-paragraph {
    font-size: 24px;
    line-height: 1.7;
    color: #1a1a2e;
    margin-bottom: 40px;
    font-weight: 400;
    background: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
    padding: 30px;
    border-radius: 8px;
    border-left: 5px solid #e94560;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.dropcap::first-letter {
    float: left;
    font-size: 75px;
    line-height: 60px;
    padding: 4px 12px 0 0;
    font-weight: bold;
    background: linear-gradient(135deg, #e94560 0%, #f9a826 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pull-quote {
    font-size: 28px;
    line-height: 1.5;
    color: #0f2027;
    font-style: italic;
    margin: 60px 0;
    padding: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 8px;
    text-align: center;
    font-weight: 400;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
    position: relative;
}

.pull-quote::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 80px;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.image-container {
    margin: 50px 0;
}

.blog-image {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.3);
    transition: transform 0.3s ease;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.blog-image:hover {
    transform: scale(1.02);
}

.image-caption {
    font-size: 15px;
    color: #7f8c8d;
    font-style: italic;
    text-align: center;
    margin-top: 10px;
}

.video-placeholder {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    margin: 50px 0;
    box-shadow: 0 15px 50px rgba(15, 32, 39, 0.4);
    transition: transform 0.3s ease;
}

.video-placeholder iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.video-placeholder i {
    font-size: 70px;
    margin-bottom: 20px;
    opacity: 0.9;
    color: #e94560;
}

blockquote {
    border-left: 5px solid #e94560;
    padding-left: 30px;
    margin: 40px 0;
    font-style: italic;
    color: #34495e;
    font-size: 20px;
    background: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
    padding: 25px 25px 25px 30px;
    border-radius: 0 8px 8px 0;
}

ul,
ol {
    margin: 25px 0 25px 30px;
}

li {
    margin-bottom: 12px;
    font-size: 19px;
    line-height: 1.7;
}

li::marker {
    color: #e94560;
    font-weight: bold;
}

.info-box {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    padding: 35px;
    border-radius: 12px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(252, 182, 159, 0.3);
    border-left: 5px solid #e94560;
}

.info-box h3 {
    margin-top: 0;
    color: #0f2027;
}

.info-box p {
    color: #2c3e50;
}

footer {
    background: linear-gradient(135deg,
            #0f2027 0%,
            #203a43 50%,
            #2c5364 100%);
    color: white;
    padding: 50px 20px 30px;
    margin: 80px -20px 0;
    text-align: center;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-content p {
    color: #b8c5d6;
    font-size: 16px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.social-links a {
    color: white;
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(135deg, #e94560 0%, #f9a826 100%);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(233, 69, 96, 0.3);
}

.copyright {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #8899a6;
    font-size: 14px;
    font-family: "Segoe UI", sans-serif;
}

@media (max-width: 768px) {
    .blog-title {
        font-size: 32px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 22px;
    }

    p,
    li {
        font-size: 18px;
    }

    .lead-paragraph {
        font-size: 20px;
    }

    .blog-image,
    .video-placeholder {
        height: 300px;
    }

    .pull-quote {
        font-size: 24px;
        padding: 20px 0;
    }

    .back-to-home {
        top: 10px;
        right: 10px;
        padding: 8px 15px;
        font-size: 13px;
    }

    nav ul {
        gap: 20px;
    }
}