/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.7;
    color: #333;
    background: linear-gradient(135deg, #fff9c4 0%, #ffe8f0 50%, #ffb3d1 100%);
    min-height: 100vh;
}

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

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

/* Header */
.header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 182, 193, 0.2);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #ff6b9d;
    text-decoration: none;
    background: linear-gradient(135deg, #ff6b9d, #c06c84);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #ff6b9d;
}

/* Blog Post */
.blog-post {
    padding: 60px 0 0;
}

/* Post Header */
.post-header {
    text-align: center;
    margin-bottom: 60px;
}

.post-tag {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b9d, #c06c84);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.post-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.post-subtitle {
    font-size: 22px;
    color: #666;
    margin-bottom: 30px;
    font-style: italic;
}

/* Share Buttons */
.share-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.share-label {
    color: #999;
    font-weight: 500;
    font-size: 14px;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.share-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.share-btn.whatsapp {
    background: #25D366;
}

.share-btn.twitter {
    background: #000000;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Post Body */
.post-body {
    background: white;
    border-radius: 20px;
    padding: 60px 50px;
    box-shadow: 0 4px 30px rgba(255, 107, 157, 0.1);
    margin-bottom: 60px;
}

.content-section {
    margin-bottom: 50px;
}

.content-section:last-child {
    margin-bottom: 0;
}

.section-icon {
    font-size: 32px;
    font-weight: 700;
    color: #ff6b9d;
    margin-bottom: 20px;
    line-height: 1.3;
}

.content-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.content-section p:last-child {
    margin-bottom: 0;
}

strong {
    color: #ff6b9d;
    font-weight: 600;
}

em {
    color: #c06c84;
    font-style: italic;
}

/* Games Grid */
.games-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.game-item {
    background: linear-gradient(135deg, #fff9c4, #ffe8f0);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: transform 0.3s, box-shadow 0.3s;
}

.game-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.15);
}

.game-number {
    font-size: 24px;
    font-weight: 700;
    color: #ff6b9d;
    flex-shrink: 0;
    width: 50px;
    text-align: center;
}

.game-content h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.game-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #666;
}

.play-link {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b9d, #c06c84);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    margin-right: 10px;
    margin-bottom: 5px;
}

.play-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.game-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #ff6b9d, #c06c84);
    padding: 80px 0;
    text-align: center;
}

.cta-title {
    font-size: 40px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 16px;
}

.cta-btn.primary {
    background: white;
    color: #ff6b9d;
}

.cta-btn.primary:hover {
    background: #ffe8f0;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.cta-btn.secondary:hover {
    background: white;
    color: #ff6b9d;
    transform: translateY(-2px);
}

/* Read Next Section */
.read-next {
    padding: 60px 0 80px;
}

.read-next-title {
    font-size: 28px;
    font-weight: 700;
    color: #ff6b9d;
    margin-bottom: 30px;
    text-align: center;
}

.next-post-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(255, 107, 157, 0.1);
    display: grid;
    grid-template-columns: 300px 1fr;
    transition: transform 0.3s, box-shadow 0.3s;
}

.next-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 107, 157, 0.2);
}

.next-post-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #fff9c4, #ffe8f0);
}

.next-post-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.next-post-content {
    padding: 40px;
}

.next-post-content h4 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.next-post-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Footer */
.footer {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 182, 193, 0.2);
}

.footer p {
    color: #666;
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.footer-links a {
    color: #ff6b9d;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .post-title {
        font-size: 32px;
    }

    .post-subtitle {
        font-size: 18px;
    }

    .post-body {
        padding: 40px 25px;
    }

    .section-icon {
        font-size: 28px;
    }

    .content-section p {
        font-size: 16px;
    }

    .game-item {
        flex-direction: column;
        text-align: center;
    }

    .game-number {
        width: 100%;
        margin-bottom: 10px;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
    }

    .next-post-card {
        grid-template-columns: 1fr;
    }

    .next-post-image {
        height: 250px;
    }

    .next-post-content {
        padding: 30px 20px;
    }

    .nav {
        gap: 20px;
    }

    .share-buttons {
        flex-wrap: wrap;
    }

    .game-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .post-title {
        font-size: 26px;
    }

    .post-subtitle {
        font-size: 16px;
    }

    .post-body {
        padding: 30px 20px;
    }

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

    .cta-title {
        font-size: 28px;
    }

    .share-btn {
        width: 40px;
        height: 40px;
    }

    .game-content h3 {
        font-size: 18px;
    }

    .game-content p {
        font-size: 14px;
    }
}
