/* Share Section Styles */
.share-section {
    width: 100%;
    max-width: var(--all-width);
    margin: 20px auto;
    padding: 30px 20px;
    text-align: center;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.share-section h3 {
    font-size: 24px;
    font-weight: 500;
    color: #000;
    margin-bottom: 20px;
}

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

.share-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #333;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.share-btn svg {
    width: 24px;
    height: 24px;
    color: #333;
    transition: color 0.3s ease;
}

.share-btn:hover {
    background-color: rgb(0, 0, 0);
    border-color: rgb(0, 0, 0);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.share-btn:hover svg {
    color: #fff;
}

.share-btn:active {
    transform: translateY(-1px);
}

/* Copy message notification */
#copy-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #000;
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    z-index: 10000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: fadeInOut 2s ease;
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
    10% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    90% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
}

/* Responsive Design */
@media screen and (max-width: 769px) {
    .share-section {
        margin: 30px auto 0;
        padding: 25px 15px;
    }

    .share-section h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

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

    .share-btn svg {
        width: 20px;
        height: 20px;
    }

    .share-buttons {
        gap: 12px;
    }
}
