/* Sharing page specific styles */
    .share-content {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 12px;
        padding: 2rem;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .share-intro {
        text-align: center;
        margin-bottom: 3rem;
        padding: 1.5rem;
        background: rgba(0, 0, 0, 0.2);
        border-radius: 8px;
        border-left: 4px solid #FFF600;
    }

    .share-intro p {
        font-size: 1.1rem;
        line-height: 1.6;
        margin: 0;
    }

    .social-sharing-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .share-platform {
        background: rgba(0, 0, 0, 0.2);
        border-radius: 12px;
        padding: 2rem;
        text-align: center;
        border: 2px solid;
        transition: all 0.3s ease;
    }

    .share-platform:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    }

    .facebook { border-color: #1877F2; }
    .twitter { border-color: #1DA1F2; }
    .bluesky { border-color: #00D4FF; }
    .threads { border-color: #000000; }
    .reddit { border-color: #FF4500; }
    .tumblr { border-color: #00CF35; }

    .platform-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
        height: 4rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .share-platform h3 {
        color: #FFF600;
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
        font-weight: 700;
    }

    .share-platform p {
        color: #cccccc;
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .share-btn {
        display: inline-block;
        padding: 0.75rem 1.5rem;
        border-radius: 8px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        text-decoration: none;
        font-size: 0.9rem;
    }

    .share-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        text-decoration: none;
    }

    .facebook-btn {
        background: #1877F2;
        color: white;
    }

    .facebook-btn:hover {
        background: #166FE5;
        color: white;
    }

    .twitter-btn {
        background: #1DA1F2;
        color: white;
    }

    .twitter-btn:hover {
        background: #1A91DA;
        color: white;
    }

    .bluesky-btn {
        background: #00D4FF;
        color: #000000;
    }

    .bluesky-btn:hover {
        background: #00C4EF;
        color: #000000;
    }

    .threads-btn {
        background: #000000;
        color: white;
    }

    .threads-btn:hover {
        background: #333333;
        color: white;
    }

    .reddit-btn {
        background: #FF4500;
        color: white;
    }

    .reddit-btn:hover {
        background: #E63E00;
        color: white;
    }

    .tumblr-btn {
        background: #00CF35;
        color: white;
    }

    .tumblr-btn:hover {
        background: #00B82F;
        color: white;
    }

    .direct-sharing,
    .email-sharing {
        background: rgba(0, 0, 0, 0.2);
        border-radius: 12px;
        padding: 2rem;
        margin-bottom: 2rem;
        border-left: 4px solid #FFA500;
    }

    .direct-sharing h3,
    .email-sharing h3 {
        color: #FFF600;
        font-size: 1.2rem;
        margin-bottom: 1rem;
        font-weight: 700;
    }

    .direct-sharing p,
    .email-sharing p {
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .copy-link-container {
        display: flex;
        gap: 0.5rem;
        align-items: center;
        flex-wrap: wrap;
    }

    .copy-link-input {
        flex: 1;
        min-width: 300px;
        padding: 0.75rem;
        border: 2px solid rgba(255, 246, 0, 0.5);
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.1);
        color: #ffffff;
        font-family: monospace;
        font-size: 0.9rem;
    }

    .copy-link-input:focus {
        outline: none;
        border-color: #FFF600;
        background: rgba(255, 255, 255, 0.2);
    }

    .copy-btn {
        padding: 0.75rem 1.5rem;
        background: linear-gradient(135deg, #FFF600 0%, #FF6600 100%);
        color: #000000;
        border: none;
        border-radius: 6px;
        font-weight: 700;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .copy-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(255, 246, 0, 0.4);
        background: linear-gradient(135deg, #FF6600 0%, #FFF600 100%);
    }

    .email-btn {
        background: linear-gradient(135deg, #FFA500 0%, #FF6600 100%);
        color: white;
    }

    .email-btn:hover {
        background: linear-gradient(135deg, #FF6600 0%, #FFA500 100%);
        color: white;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .share-content {
            padding: 1rem;
        }
        
        .social-sharing-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        
        .share-platform {
            padding: 1.5rem;
        }
        
        .platform-icon {
            font-size: 2.5rem;
            height: 3rem;
        }
        
        .copy-link-container {
            flex-direction: column;
            align-items: stretch;
        }
        
        .copy-link-input {
            min-width: unset;
            width: 100%;
        }
        
        .copy-btn {
            width: 100%;
        }
        
        .direct-sharing,
        .email-sharing {
            padding: 1.5rem;
        }
    }

    @media (max-width: 480px) {
        .share-intro {
            padding: 1rem;
        }
        
        .share-platform {
            padding: 1rem;
        }
        
        .share-platform h3 {
            font-size: 1.1rem;
        }
        
        .share-btn {
            padding: 0.5rem 1rem;
            font-size: 0.8rem;
        }
    }