.share-section {
    width: 100%;
    max-width: 720px;
    margin: 1.5rem auto 0;
    padding: 1.25rem 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
}

.share-title {
    color: #ffd93d;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 1rem;
    text-align: center;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 48px;
    padding: 0.65rem 1.25rem;
    border: none;
    border-radius: 999px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.share-btn:hover {
    transform: translateY(-2px) scale(1.02);
    filter: saturate(1.1);
}

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

.share-fb {
    background: linear-gradient(135deg, #1877f2, #0c5dc7);
    box-shadow: 0 8px 24px rgba(24, 119, 242, 0.35);
}

.share-x {
    background: linear-gradient(135deg, #1a1a1a, #000);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.share-wa {
    background: linear-gradient(135deg, #25d366, #128c48);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.share-reddit {
    background: linear-gradient(135deg, #ff5700, #cc4500);
    box-shadow: 0 8px 24px rgba(255, 87, 0, 0.35);
}

.share-copy {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: none;
}

.share-copy:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffd93d;
}

@media (max-width: 640px) {
    .share-section {
        padding: 1rem;
        margin-top: 1rem;
    }

    .share-buttons {
        gap: 0.5rem;
    }

    .share-btn {
        flex: 1 1 calc(50% - 0.5rem);
        min-width: 0;
        padding: 0.6rem 0.8rem;
        font-size: 0.82rem;
    }

    .share-btn svg {
        width: 18px;
        height: 18px;
        flex: 0 0 18px;
    }
}

@media (max-width: 400px) {
    .share-btn {
        flex: 1 1 100%;
    }
}
