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

body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif; color: #333; line-height: 1.6; }

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

.site-header { color: white; padding: 20px 0; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }

.header-content { display: flex; justify-content: space-between; align-items: center; }

.logo h1 { font-size: 28px; }

.logo img { height: 50px; }

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

.main-nav a { color: white; text-decoration: none; font-weight: 500; transition: opacity 0.3s; }

.main-nav a:hover { opacity: 0.8; }

.hero { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; padding: 20px 0; text-align: center; }

.hero h2 { font-size: 42px; margin-bottom: 15px; }

.hero p { font-size: 18px; opacity: 0.9; }

.editions { padding: 60px 0; }

.section-title { font-size: 32px; text-align: center; margin-bottom: 40px; }

.editions-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; }

.edition-card { background: white; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 6px rgba(0,0,0,0.1); transition: transform 0.3s, box-shadow 0.3s; }

.edition-card:hover { transform: translateY(-5px); box-shadow: 0 8px 15px rgba(0,0,0,0.2); }

.edition-card a { text-decoration: none; color: inherit; display: block; }

.edition-card img { width: 100%; height: 250px; object-fit: cover; }

.edition-info { padding: 20px; }

.edition-info h3 { font-size: 20px; margin-bottom: 10px; color: #2c3e50; }

.edition-date { color: #7f8c8d; font-size: 14px; margin-bottom: 8px; }

.edition-meta { color: #95a5a6; font-size: 13px; display: flex; justify-content: space-between; }

.views { margin-left: auto; }

.contact { padding: 60px 0; background: white; }

.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-bottom: 40px; }

.contact-item { text-align: center; padding: 30px; background: #f8f9fa; border-radius: 10px; }

.contact-item i { font-size: 36px; color: #667eea; margin-bottom: 15px; }

.contact-item h3 { font-size: 20px; margin-bottom: 10px; }

.contact-item p { color: #666; }

.contact-item a { color: #667eea; text-decoration: none; }

.social-links { display: flex; justify-content: center; gap: 20px; margin-top: 30px; }

.social-links a { width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; display: flex; align-items: center; justify-content: center; font-size: 20px; text-decoration: none; transition: transform 0.3s; }

.social-links a:hover { transform: scale(1.1); }

.site-footer { color: white; padding: 40px 0; text-align: center; }

.footer-logo { margin-bottom: 20px; }

.footer-logo img { height: 60px; }

.copyright { margin-bottom: 10px; opacity: 0.9; }

.developer { opacity: 0.7; font-size: 14px; }

.developer a { color: white; text-decoration: underline; }

/* Social Share Floating Buttons */
.social-share-float {
    position: absolute;
    right: 20px;
    top: 200px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.social-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}

.social-btn.whatsapp { background: #25D366; }
.social-btn.facebook { background: #1877F2; }
.social-btn.twitter { background: #1DA1F2; }
.social-btn.instagram { background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4); }
.social-btn.linkedin { background: #0A66C2; }
.social-btn.telegram { background: #0088cc; }
.social-btn.download { background: #27ae60; }

@media (max-width: 768px) {
    .header-content { flex-direction: column; gap: 20px; }
    .main-nav { flex-direction: column; align-items: center; gap: 15px; }
    .hero h2 { font-size: 32px; }
    .editions-grid { grid-template-columns: 1fr; }

    /* Move social buttons to bottom for mobile */
    .social-share-float {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        top: auto;
        transform: none;
        flex-direction: row;
        gap: 8px;
        background: rgba(255, 255, 255, 0.95);
        padding: 8px 12px;
        border-radius: 25px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        margin: 20px auto;
        width: fit-content;
        justify-content: center;
    }

    .social-btn {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}
