/* GW_SHARE — Share score buttons */
.gw-share-box {
    margin: 28px auto;
    max-width: 520px;
    text-align: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
}
.gw-share-heading {
    font-size: 1rem;
    font-weight: 700;
    color: #a0b4c8;
    margin-bottom: 16px;
}
.gw-share-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
.gw-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 10px;
    font-family: 'Manrope', -apple-system, sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    transition: all 0.2s ease;
    line-height: 1;
}
.gw-share-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}
.gw-share-btn svg {
    flex-shrink: 0;
}
.gw-share-native { border-color: #FF9800; color: #FF9800; }
.gw-share-native:hover { background: rgba(255, 152, 0, 0.15); }
.gw-share-copy { border-color: rgba(255, 255, 255, 0.2); }
.gw-share-wa { color: #25D366; border-color: rgba(37, 211, 102, 0.3); }
.gw-share-wa:hover { background: rgba(37, 211, 102, 0.1); }
.gw-share-fb { color: #1877F2; border-color: rgba(24, 119, 242, 0.3); }
.gw-share-fb:hover { background: rgba(24, 119, 242, 0.1); }
.gw-share-x { color: #ffffff; border-color: rgba(255, 255, 255, 0.2); }

@media (max-width: 480px) {
    .gw-share-buttons { gap: 8px; }
    .gw-share-btn { padding: 10px 14px; font-size: 13px; }
}
