.share-section {
    margin: 40px 0;
    padding: 30px;
    background: var(--dark-tertiary);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 10px;
    text-align: center;
}

.share-title {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

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

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.share-btn.twitter {
    background: #1DA1F2;
    color: #fff;
}

.share-btn.twitter:hover {
    background: #1a8cd8;
}

.share-btn.reddit {
    background: #FF4500;
    color: #fff;
}

.share-btn.reddit:hover {
    background: #e03d00;
}

.share-btn.telegram {
    background: #0088cc;
    color: #fff;
}

.share-btn.telegram:hover {
    background: #0077b3;
}

.share-btn.email {
    background: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.share-btn.email:hover {
    background: rgba(0, 255, 136, 0.1);
}

.share-btn.copy {
    background: transparent;
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.share-btn.copy:hover {
    background: rgba(0, 255, 255, 0.1);
}

.copy-notification {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 15px 25px;
    background: var(--primary-color);
    color: var(--dark-bg);
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.5);
    animation: slideIn 0.3s ease;
    z-index: 9999;
}

.copy-notification.show {
    display: block;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .share-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .share-btn {
        justify-content: center;
    }
}
