.social-points-section {
    padding: 1rem 0;
}

.social-points-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.social-points-section .social-card {
    background: var(--surface-800);
    border: 1px solid var(--surface-700);
    border-radius: 10px;
    padding: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.social-points-section .social-card:hover {
    background: var(--card-bg);
    border-color: var(--surface-600);
    transform: translateY(-2px);
}

.social-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.social-icon-wrap svg {
    transition: filter 0.25s ease, transform 0.2s ease;
}

/* Marka renkleri — arka plan tonu */
.social-icon-wrap.telegram  { background: rgba(34, 158, 217, 0.12); border: 1px solid rgba(34, 158, 217, 0.2); }
.social-icon-wrap.twitter   { background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.12); }
.social-icon-wrap.instagram { background: rgba(228, 64, 95, 0.12); border: 1px solid rgba(228, 64, 95, 0.2); }
.social-icon-wrap.kick      { background: rgba(83, 252, 24, 0.1); border: 1px solid rgba(83, 252, 24, 0.18); }
.social-icon-wrap.youtube   { background: rgba(255, 0, 0, 0.1); border: 1px solid rgba(255, 0, 0, 0.18); }

/* Hover — kart hover'ında icon parlar */
.social-card:hover .social-icon-wrap.telegram  { background: rgba(34, 158, 217, 0.22); box-shadow: 0 0 14px rgba(34, 158, 217, 0.4); }
.social-card:hover .social-icon-wrap.twitter   { background: rgba(255, 255, 255, 0.14); box-shadow: 0 0 14px rgba(255, 255, 255, 0.2); }
.social-card:hover .social-icon-wrap.instagram { background: rgba(228, 64, 95, 0.22); box-shadow: 0 0 14px rgba(228, 64, 95, 0.45); }
.social-card:hover .social-icon-wrap.kick      { background: rgba(83, 252, 24, 0.18); box-shadow: 0 0 14px rgba(83, 252, 24, 0.45); }
.social-card:hover .social-icon-wrap.youtube   { background: rgba(255, 0, 0, 0.18); box-shadow: 0 0 14px rgba(255, 0, 0, 0.45); }

.social-card:hover .social-icon-wrap svg {
    filter: brightness(1.25) drop-shadow(0 0 4px currentColor);
    transform: scale(1.1);
}

.social-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.social-name {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 800;
}

.social-reward {
    color: var(--brand-red);
    font-size: 0.7rem;
    font-weight: 700;
    margin: 0.1rem 0;
}

.social-action-text {
    color: var(--text-gray);
    font-size: 0.65rem;
    font-weight: 600;
}

.social-points-section .social-btn {
    width: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: var(--brand-red);
    border: none;
    color: var(--text-light);
    padding: 0.4rem 0.75rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.2s ease;
    flex-shrink: 0;
    white-space: nowrap;
    margin: 0;
    text-decoration: none;
    text-align: center;
}

.social-points-section .social-btn:hover {
    background: var(--brand-red-hover, #e6a000);
    opacity: 1;
}

.social-points-section .social-btn.social-btn-disabled,
.social-points-section .social-btn:disabled {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-gray);
    cursor: not-allowed;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-points-section .social-btn.social-btn-disabled:hover,
.social-points-section .social-btn:disabled:hover {
    background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 1200px) {
    .social-points-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .social-points-grid {
        grid-template-columns: 1fr;
    }
}
