/* ============================================
   SOCIAL SHARING STYLES
   ============================================ */

.social-share-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    margin: 3rem 0;
}

.share-title {
    font-family: 'Righteous', cursive;
    font-size: 1.8rem;
    color: #FFE300;
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Format Selector */
.format-selector {
    margin-bottom: 2rem;
}

.format-label {
    font-family: 'Fredoka', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 1rem;
}

.format-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.format-btn {
    background: rgba(0, 217, 255, 0.1);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 200px;
    font-family: 'Fredoka', sans-serif;
}

.format-btn:hover {
    background: rgba(0, 217, 255, 0.2);
    border-color: #00D9FF;
    transform: translateY(-3px);
}

.format-btn.active {
    background: rgba(0, 217, 255, 0.3);
    border-color: #00D9FF;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}

.format-icon {
    font-size: 2rem;
}

.format-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}

.format-size {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.format-use {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

/* Share Buttons */
.share-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.share-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    color: #ffffff;
    font-family: 'Fredoka', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    min-width: 160px;
    justify-content: center;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.share-btn:active {
    transform: translateY(-1px);
}

/* Different button colors */
.download-btn {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 4px 15px rgba(240, 147, 251, 0.4);
}

.download-btn:hover {
    box-shadow: 0 6px 20px rgba(240, 147, 251, 0.6);
}

.copy-btn {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.4);
}

.copy-btn:hover {
    box-shadow: 0 6px 20px rgba(79, 172, 254, 0.6);
}

.share-btn-native {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    box-shadow: 0 4px 15px rgba(67, 233, 123, 0.4);
}

.share-btn-native:hover {
    box-shadow: 0 6px 20px rgba(67, 233, 123, 0.6);
}

.link-btn {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    box-shadow: 0 4px 15px rgba(250, 112, 154, 0.4);
}

.link-btn:hover {
    box-shadow: 0 6px 20px rgba(250, 112, 154, 0.6);
}

.btn-icon {
    font-size: 1.2rem;
}

.btn-text {
    font-size: 1rem;
}

/* Share Status */
.share-status {
    text-align: center;
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 10px;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    animation: slideIn 0.3s ease-out;
}

.share-status.success {
    background: rgba(67, 233, 123, 0.2);
    color: #43e97b;
    border: 2px solid rgba(67, 233, 123, 0.3);
}

.share-status.info {
    background: rgba(79, 172, 254, 0.2);
    color: #4facfe;
    border: 2px solid rgba(79, 172, 254, 0.3);
}

.share-status.error {
    background: rgba(245, 87, 108, 0.2);
    color: #f5576c;
    border: 2px solid rgba(245, 87, 108, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .format-buttons {
        flex-direction: column;
    }
    
    .format-btn {
        width: 100%;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .share-btn {
        width: 100%;
    }
}

/* Animation */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
