div {
    display: block;
}

body {
    background-color: beige;
}

/* Social Share Icons - Pure CSS */
.social-share {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.social-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    color: white;
    text-decoration: none;
}

/* Facebook Icon */
.facebook-share {
    background: #1877f2;
}

.facebook-share::before {
    content: "f";
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 18px;
}

/* Twitter/X Icon */
.twitter-share {
    background: #1da1f2;
}

.twitter-share::before {
    content: "𝕏";
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 16px;
}

/* WhatsApp Icon */
.whatsapp-share {
    background: #25d366;
}

.whatsapp-share::before {
    content: "W";
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 18px;
}

/* Telegram Icon */
.telegram-share {
    background: #0088cc;
}

.telegram-share::before {
    content: "T";
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 18px;
}

/* Copy Link Icon */
.copy-link {
    background: #6c757d;
}

.copy-link::before {
    content: "🔗";
    font-size: 16px;
}

/* Email Share Icon */
.email-share {
    background: #ea4335;
}

.email-share::before {
    content: "✉";
    font-size: 16px;
}

/* Pinterest Icon */
.pinterest-share {
    background: #e60023;
}

.pinterest-share::before {
    content: "P";
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 18px;
}

/* LinkedIn Icon */
.linkedin-share {
    background: #0077b5;
}

.linkedin-share::before {
    content: "in";
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 14px;
}

/* Reddit Icon */
.reddit-share {
    background: #ff4500;
}

.reddit-share::before {
    content: "R";
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 18px;
}

/* Share Label */
.share-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .social-share {
        gap: 8px;
    }
    
    .social-share-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}