/* Creators-specific styles */
    .creators-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);
    }

    .creator-profile {
        margin-bottom: 3rem;
        padding: 2rem;
        background: rgba(0, 0, 0, 0.2);
        border-radius: 12px;
        backdrop-filter: blur(10px);
        border-left: 4px solid #FFF600;
    }

    .creator-profile:last-child {
        margin-bottom: 0;
    }

    .creator-name {
        color: #FFF600;
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
        font-weight: 700;
    }

    .creator-role {
        color: #FFA500;
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        font-weight: 600;
        font-style: italic;
    }

    .creator-bio {
        margin-bottom: 2rem;
    }

    .creator-bio p {
        margin-bottom: 1rem;
        line-height: 1.7;
        font-size: 1.05rem;
    }

    .creator-bio p:last-child {
        margin-bottom: 0;
    }

    .creator-links h4 {
        color: #FFF600;
        font-size: 1.1rem;
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .social-links {
        list-style: none;
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .social-links a {
        display: inline-flex;
        align-items: center;
        padding: 0.5rem 1rem;
        background: rgba(255, 246, 0, 0.1);
        border-radius: 6px;
        font-weight: 600;
        text-transform: uppercase;
        font-size: 0.9rem;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }

    .social-links a:hover {
        background: rgba(255, 246, 0, 0.2);
        border-color: rgba(255, 246, 0, 0.5);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(255, 246, 0, 0.3);
    }

    .link-blog::before {
        content: "📝";
        margin-right: 0.5rem;
    }

    .link-deviantart::before {
        content: "🎨";
        margin-right: 0.5rem;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .creators-content {
            padding: 1rem;
        }
        
        .creator-profile {
            padding: 1rem;
        }
        
        .creator-name {
            font-size: 1.5rem;
        }
        
        .creator-role {
            font-size: 1rem;
        }
        
        .creator-bio p {
            font-size: 1rem;
        }
        
        .social-links {
            flex-direction: column;
            align-items: flex-start;
        }
        
        .social-links a {
            width: 100%;
            justify-content: center;
            max-width: 200px;
        }
    }

    @media (max-width: 480px) {
        .creator-profile {
            margin-bottom: 2rem;
        }
        
        .creator-name {
            font-size: 1.3rem;
        }
    }