/*
 *  __  __ _   _ ____ _____  _   _____  _                  _   _____ ____  
 * |  \/  | | | / ___|_   _|/ \ |  ___|/ \                / \ |_   _|  _ \ 
 * | |\/| | | | \___ \ | | / _ \| |_  / _ \              / _ \  | | | |_) |
 * | |  | | |_| |___) || |/ ___ \  _|/ ___ \            / ___ \ | | |  _ < 
 * |_|  |_|\__,_|____/ |_/_/   \_\_|/_/   \_\  (-_-)   /_/   \_\|_| |_| \_\
 *
 *   Platform      : AcilYerler.com
 *   Code Editor   : Mustafa Attar
 *   Copyright     : © 2026 AcilYerler.com. Tüm Hakları Saklıdır.
 */
:root {
    /* Color Palette - Dark Mode Defaults */
    --bg-primary: #0b0f19;
    --bg-glow-color: rgba(99, 102, 241, 0.15);
    
    --card-bg: rgba(22, 28, 45, 0.4);
    --card-border: rgba(255, 255, 255, 0.06);
    --card-shadow: rgba(0, 0, 0, 0.3);
    
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    --accent-color: #6366f1; /* Indigo */
    --accent-glow: rgba(99, 102, 241, 0.3);
    
    --action-btn-bg: rgba(255, 255, 255, 0.05);
    --action-btn-hover: rgba(255, 255, 255, 0.1);
    
    --verified-color: #38bdf8;
    --online-color: #10b981;
    
    /* Layout */
    --max-width: 580px;
    --border-radius-lg: 20px;
    --border-radius-md: 16px;
    --border-radius-sm: 12px;
    
    /* Font Families */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-quick: all 0.15s ease;
}

/* Light Theme Variables */
body.theme-light {
    --bg-primary: #f8fafc;
    --bg-glow-color: rgba(99, 102, 241, 0.08);
    
    --card-bg: rgba(255, 255, 255, 0.7);
    --card-border: rgba(99, 102, 241, 0.08);
    --card-shadow: rgba(99, 102, 241, 0.05);
    
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    
    --action-btn-bg: rgba(0, 0, 0, 0.03);
    --action-btn-hover: rgba(0, 0, 0, 0.06);
    
    --accent-glow: rgba(99, 102, 241, 0.15);
}

/* ==========================================================================
   Base Elements
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html, body {
    width: 100%;
    min-height: 100%;
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    scroll-behavior: smooth;
    transition: background-color 0.5s ease, color 0.5s ease;
}

/* Decorative background light glow */
.bg-glow {
    position: fixed;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--bg-glow-color) 0%, rgba(99, 102, 241, 0) 70%);
    z-index: -1;
    pointer-events: none;
    transition: background 0.5s ease;
}

/* ==========================================================================
   Layout Wrapper
   ========================================================================== */
.profile-container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

/* ==========================================================================
   Header & Action Buttons
   ========================================================================== */
.header-actions {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-bottom: 1.25rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body.theme-light .header-actions {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    text-transform: uppercase;
    user-select: none;
    transition: var(--transition-smooth);
}

.header-logo-img {
    width: 22px;
    height: 22px;
    border-radius: 5px;
    object-fit: cover;
    border: 1px solid var(--card-border);
    transform: translateY(1px);
    transition: var(--transition-smooth);
}

.header-logo:hover .header-logo-img {
    transform: scale(1.08) rotate(5deg);
}

.action-btn {
    border: 1px solid var(--card-border);
    background: var(--action-btn-bg);
    color: var(--text-primary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.action-btn:hover {
    background: var(--action-btn-hover);
    transform: translateY(-2px);
}

.action-btn svg {
    width: 20px;
    height: 20px;
    transition: var(--transition-smooth);
}

/* Theme switch icons show/hide toggles */
.icon-sun { display: none; }
body.theme-light .icon-moon { display: none; }
body.theme-light .icon-sun { display: block; }

/* ==========================================================================
   Profile Area
   ========================================================================== */
.profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Avatar Wrapper */
.avatar-wrapper {
    position: relative;
    width: 124px;
    height: 124px;
    margin-bottom: 1.5rem;
    padding: 3px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ef4444 0%, #f97316 50%, #facc15 100%);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.avatar-wrapper::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ef4444 0%, #f97316 50%, #facc15 100%);
    z-index: -1;
    filter: blur(10px);
    opacity: 0.35;
    transition: var(--transition-smooth);
}

.avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--bg-primary);
    background: var(--bg-primary);
    transition: var(--transition-smooth);
}

.avatar-wrapper:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(239, 68, 68, 0.3);
}

.avatar-wrapper:hover::after {
    opacity: 0.55;
    filter: blur(14px);
}

/* Online Status Indicator */
.status-indicator {
    position: absolute;
    bottom: 6px;
    right: 6px;
    width: 18px;
    height: 18px;
    background-color: var(--online-color);
    border: 3px solid var(--bg-primary);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--online-color);
    animation: statusPulse 2s infinite ease-in-out;
    z-index: 2;
}

/* Profile Texts */
.profile-name {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    display: none;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
    transition: var(--transition-smooth);
}

.verified-badge {
    display: inline-flex;
    color: var(--verified-color);
    transition: var(--transition-quick);
}

body.theme-light .verified-badge {
    color: #1d9bf0;
}

.verified-badge:hover {
    transform: scale(1.15) rotate(8deg);
}


.profile-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 440px;
}

/* ==========================================================================
   Links Section
   ========================================================================== */
.links-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

/* Modern Card/Button Component */
.link-card {
    display: flex;
    align-items: center;
    padding: 1.15rem 1.25rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-md);
    text-decoration: none;
    color: var(--text-primary);
    box-shadow: 0 4px 12px var(--card-shadow);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    cursor: pointer;
    opacity: 0; /* Animated dynamically */
    transform: translateY(20px);
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), 
                background-color 0.25s ease, 
                border-color 0.25s ease, 
                box-shadow 0.25s ease;
}

/* Hover State */
.link-card:hover {
    transform: translateY(-3px) scale(1.01);
    background: var(--card-bg);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 8px 24px var(--accent-glow);
}

.link-card:active {
    transform: translateY(-1px) scale(0.99);
}

/* Card Inner Content */
.link-icon-container {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-sm);
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.25rem;
    transition: var(--transition-smooth);
}

body.theme-light .link-icon-container {
    background: rgba(99, 102, 241, 0.05);
}

/* Light Theme Brand Colors (Normal State) */
body.theme-light .link-card[data-platform="whatsapp"] .link-icon-container {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
}
body.theme-light .link-card[data-platform="instagram"] .link-icon-container {
    background: rgba(225, 48, 108, 0.1);
    color: #e1306c;
}
body.theme-light .link-card[data-platform="youtube"] .link-icon-container {
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
}
body.theme-light .link-card[data-platform="tiktok"] .link-icon-container {
    background: rgba(0, 0, 0, 0.06);
    color: #000000;
}
body.theme-light .link-card[data-platform="x"] .link-icon-container {
    background: rgba(15, 23, 42, 0.06);
    color: #0f172a;
}
body.theme-light .link-card[data-platform="facebook"] .link-icon-container {
    background: rgba(24, 119, 242, 0.1);
    color: #1877f2;
}
body.theme-light .link-card[data-platform="linkedin"] .link-icon-container {
    background: rgba(10, 102, 194, 0.1);
    color: #0a66c2;
}
body.theme-light .link-card[data-platform="pinterest"] .link-icon-container {
    background: rgba(189, 8, 28, 0.1);
    color: #bd081c;
}

.link-card:hover .link-icon-container {
    background: var(--accent-color);
    color: #fff;
    transform: scale(1.05);
}

/* Brand Specific Hover Styles (Premium UI/UX Improvements) */
body .link-card[data-platform="whatsapp"]:hover {
    border-color: rgba(37, 211, 102, 0.4);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.15);
}
body .link-card[data-platform="whatsapp"]:hover .link-icon-container {
    background: #25d366;
    color: #ffffff;
}

body .link-card[data-platform="instagram"]:hover {
    border-color: rgba(225, 48, 108, 0.4);
    box-shadow: 0 8px 24px rgba(225, 48, 108, 0.15);
}
body .link-card[data-platform="instagram"]:hover .link-icon-container {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
}

body .link-card[data-platform="youtube"]:hover {
    border-color: rgba(255, 0, 0, 0.4);
    box-shadow: 0 8px 24px rgba(255, 0, 0, 0.15);
}
body .link-card[data-platform="youtube"]:hover .link-icon-container {
    background: #ff0000;
    color: #ffffff;
}

body .link-card[data-platform="tiktok"]:hover {
    border-color: rgba(0, 242, 234, 0.4);
    box-shadow: 0 8px 24px rgba(254, 44, 85, 0.15);
}
body .link-card[data-platform="tiktok"]:hover .link-icon-container {
    background: #000000;
    color: #ffffff;
    box-shadow: -2px -2px 0px #00f2fe, 2px 2px 0px #fe2c55;
}

body .link-card[data-platform="x"]:hover {
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.08);
}
body.theme-light .link-card[data-platform="x"]:hover {
    border-color: rgba(0, 0, 0, 0.4);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
body .link-card[data-platform="x"]:hover .link-icon-container {
    background: #000000;
    color: #ffffff;
}
body.theme-light .link-card[data-platform="x"]:hover .link-icon-container {
    background: #0f172a;
    color: #ffffff;
}

body .link-card[data-platform="facebook"]:hover {
    border-color: rgba(24, 119, 242, 0.4);
    box-shadow: 0 8px 24px rgba(24, 119, 242, 0.15);
}
body .link-card[data-platform="facebook"]:hover .link-icon-container {
    background: #1877f2;
    color: #ffffff;
}

body .link-card[data-platform="linkedin"]:hover {
    border-color: rgba(10, 102, 194, 0.4);
    box-shadow: 0 8px 24px rgba(10, 102, 194, 0.15);
}
body .link-card[data-platform="linkedin"]:hover .link-icon-container {
    background: #0a66c2;
    color: #ffffff;
}

body .link-card[data-platform="pinterest"]:hover {
    border-color: rgba(189, 8, 28, 0.4);
    box-shadow: 0 8px 24px rgba(189, 8, 28, 0.15);
}
body .link-card[data-platform="pinterest"]:hover .link-icon-container {
    background: #bd081c;
    color: #ffffff;
}

.link-icon-container svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    transition: var(--transition-smooth);
}

.link-card:hover .link-icon-container svg {
    fill: #ffffff;
}

.link-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.link-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.link-subtitle {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.link-arrow-container {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    transition: var(--transition-smooth);
}

.link-card:hover .link-arrow-container {
    color: var(--accent-color);
    transform: translateX(3px);
}

.link-arrow-container svg {
    width: 18px;
    height: 18px;
}

/* ==========================================================================
   Skeleton / Loading States
   ========================================================================== */
.skeleton-loader {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.skeleton-card {
    height: 80px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-md);
    position: relative;
    overflow: hidden;
}

.skeleton-card::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: translateX(-100%);
    background-image: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.03) 20%,
        rgba(255, 255, 255, 0.06) 60%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: shimmer 1.5s infinite;
}

body.theme-light .skeleton-card::after {
    background-image: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(0, 0, 0, 0.02) 20%,
        rgba(0, 0, 0, 0.04) 60%,
        rgba(255, 255, 255, 0) 100%
    );
}

.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translate(-50%, 100px);
    background: rgba(11, 15, 25, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.85rem 1.75rem;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 1px var(--accent-color);
    z-index: 3000;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    max-width: 90vw;
}
body.theme-light .toast {
    background: rgba(255, 255, 255, 0.85);
    color: #0b0f19;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.toast.show {
    transform: translate(-50%, 0);
    opacity: 1;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.profile-footer {
    margin-top: auto;
    padding-top: 2rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes statusPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 10px var(--online-color);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 16px var(--online-color);
    }
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

/* ==========================================================================
   Responsive Adaptation
   ========================================================================== */
@media (max-width: 600px) {
    .profile-container {
        padding: 1.5rem 1rem;
    }
    
    .profile-header {
        margin-bottom: 2rem;
    }
    
    .avatar-wrapper {
        width: 100px;
        height: 100px;
    }
    
    .profile-name {
        font-size: 1.5rem;
    }
    
    .profile-bio {
        font-size: 0.9rem;
    }
    
    .link-card {
        padding: 0.95rem 1rem;
        border-radius: var(--border-radius-sm);
    }
    
    .link-icon-container {
        width: 42px;
        height: 42px;
        margin-right: 0.85rem;
    }
    
    .link-icon-container svg {
        width: 20px;
        height: 20px;
    }
    
    .link-title {
        font-size: 0.95rem;
    }
    
    .link-subtitle {
        font-size: 0.8rem;
    }
}

/* ==========================================================================
   Desktop / Large Screen Optimization (min-width: 992px)
   ========================================================================== */
@media (min-width: 992px) {
    .profile-container {
        max-width: 1100px;
        display: grid;
        grid-template-columns: 320px 1fr;
        grid-template-rows: auto 1fr auto;
        gap: 2rem 3.5rem;
        padding: 4rem 2rem;
        align-items: start;
    }

    .header-actions {
        grid-column: 1 / span 2;
        margin-bottom: 0;
    }

    .profile-header {
        grid-column: 1;
        text-align: left;
        align-items: flex-start;
        margin-bottom: 0;
        position: sticky;
        top: 2rem;
    }

    .avatar-wrapper {
        margin-bottom: 1.5rem;
    }

    .profile-name {
        display: flex;
        justify-content: flex-start;
        font-size: 2rem;
    }

    .profile-bio {
        text-align: left;
        max-width: 100%;
    }

    .links-section {
        grid-column: 2;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
        margin-bottom: 0;
    }

    .skeleton-loader {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
        grid-column: 1 / span 2;
    }

    .profile-footer {
        grid-column: 1 / span 2;
        margin-top: 4rem;
    }
}

/* ==========================================================================
   Share Modal & QR Code Layout
   ========================================================================== */
.modal {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.modal.show {
    opacity: 1;
    pointer-events: all;
}
.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(11, 15, 25, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.modal-content {
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-lg);
    width: 90%;
    max-width: 400px;
    padding: 1.75rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2;
    color: var(--text-primary);
}
.modal.show .modal-content {
    transform: translateY(0) scale(1);
}
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}
.modal-header h2 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
}
.close-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    width: 24px;
    height: 24px;
    transition: var(--transition-quick);
}
.close-btn:hover {
    color: var(--text-primary);
    transform: scale(1.1);
}
.close-btn svg {
    width: 100%;
    height: 100%;
}
.modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.qr-container {
    background: #ffffff;
    padding: 1rem;
    border-radius: var(--border-radius-md);
    margin-bottom: 1.25rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.qr-container img {
    display: block;
    width: 160px;
    height: 160px;
}
.share-url-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    word-break: break-all;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    padding: 0.5rem 0.75rem;
    border-radius: var(--border-radius-sm);
    width: 100%;
}
body.theme-light .share-url-text {
    background: rgba(0, 0, 0, 0.02);
}
.modal-actions {
    display: flex;
    gap: 0.75rem;
    width: 100%;
}
.modal-btn {
    flex: 1;
    border: none;
    padding: 0.75rem;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.primary-btn {
    background: var(--accent-color);
    color: #ffffff;
}
.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--accent-glow);
}
.secondary-btn {
    background: var(--action-btn-bg);
    border: 1px solid var(--card-border);
    color: var(--text-primary);
}
.secondary-btn:hover {
    background: var(--action-btn-hover);
    transform: translateY(-2px);
}

/* ==========================================================================
   Share Social Buttons Grid
   ========================================================================== */
.share-social-grid {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    width: 100%;
}
.share-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}
body.theme-light .share-social-btn {
    background: rgba(0, 0, 0, 0.03);
    color: var(--text-muted);
}
.share-social-btn svg {
    width: 20px;
    height: 20px;
    transition: var(--transition-quick);
}
.share-social-btn:hover {
    color: #ffffff;
    transform: translateY(-3px);
}
.whatsapp-share:hover {
    background-color: #25d366;
    border-color: #25d366;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}
.facebook-share:hover {
    background-color: #1877f2;
    border-color: #1877f2;
    box-shadow: 0 4px 14px rgba(24, 119, 242, 0.3);
}
.twitter-share:hover {
    background-color: #0f172a;
    border-color: #0f172a;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.3);
}
.telegram-share:hover {
    background-color: #229ed9;
    border-color: #229ed9;
    box-shadow: 0 4px 14px rgba(34, 158, 217, 0.3);
}

