 /* Ezozo Theme Styles */
        body {
            font-family: arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #fff;
            color: #202124;
        }
        
        /* Header Styles */
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 30px;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 40px;
            width: auto;
            margin-right: 10px;
        }
        
        .logo span {
            color: #202124;
            font-size: 22px;
            font-weight: 400;
        }
        
        .header-nav {
            display: flex;
            align-items: center;
        }
        
        .header-nav a {
            color: #202124;
            text-decoration: none;
            margin-left: 15px;
            font-size: 13px;
        }
        
        .header-nav a:hover {
            text-decoration: underline;
        }
        
        .sign-in-btn {
            background-color: #4285f4;
            color: white;
            padding: 7px 15px;
            border-radius: 4px;
            font-weight: 500;
        }
        
        .sign-in-btn:hover {
            background-color: #356ac3;
            text-decoration: none;
        }
        
        /* Profile Container */
        .profile-container {
            max-width: 800px;
            margin: 40px auto;
            padding: 0 20px;
        }
        
        /* Profile Header */
        .profile-header {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            padding: 30px;
            background-color: #f8f9fa;
            border-radius: 8px;
            box-shadow: 0 1px 2px 0 rgba(60,64,67,0.3), 0 1px 3px 1px rgba(60,64,67,0.15);
        }
        
        .profile-image {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 30px;
            border: 4px solid #fff;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .profile-info {
            flex: 1;
        }
        
        .profile-info h1 {
            margin: 0 0 15px;
            color: #202124;
            font-size: 28px;
            font-weight: 400;
        }
        
        .profile-info p {
            margin: 8px 0;
            color: #5f6368;
            font-size: 16px;
        }
        
        .profile-info strong {
            color: #202124;
        }
        
        /* Profile Description */
        .profile-description {
            margin-bottom: 30px;
            padding: 30px;
            background-color: #f8f9fa;
            border-radius: 8px;
            box-shadow: 0 1px 2px 0 rgba(60,64,67,0.3), 0 1px 3px 1px rgba(60,64,67,0.15);
        }
        
        .profile-description h3 {
            margin-top: 0;
            margin-bottom: 15px;
            color: #202124;
            font-size: 20px;
            font-weight: 400;
        }
        
        .profile-description p {
            color: #5f6368;
            line-height: 1.6;
            margin: 0;
        }
        
        /* Social Profiles */
        .social-profiles {
            margin-bottom: 30px;
            padding: 30px;
            background-color: #f8f9fa;
            border-radius: 8px;
            box-shadow: 0 1px 2px 0 rgba(60,64,67,0.3), 0 1px 3px 1px rgba(60,64,67,0.15);
        }
        
        .social-profiles h3 {
            margin-top: 0;
            margin-bottom: 20px;
            color: #202124;
            font-size: 20px;
            font-weight: 400;
        }
        
        .social-profile {
            display: flex;
            align-items: center;
            padding: 15px;
            margin-bottom: 15px;
            background-color: #fff;
            border-radius: 8px;
            border: 1px solid #dadce0;
            transition: box-shadow 0.2s;
        }
        
        .social-profile:hover {
            box-shadow: 0 1px 3px 0 rgba(60,64,67,0.3), 0 4px 8px 3px rgba(60,64,67,0.15);
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin-right: 15px;
            color: white;
            font-size: 20px;
        }
        
        .social-icon.facebook { background-color: #3b5998; }
        .social-icon.twitter { background-color: #1da1f2; }
        .social-icon.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
        .social-icon.linkedin { background-color: #0077b5; }
        .social-icon.tiktok { background-color: #000000; }
        .social-icon.youtube { background-color: #ff0000; }
        .social-icon.pinterest { background-color: #bd081c; }
        .social-icon.snapchat { background-color: #fffc00; color: #000; }
        
        .social-platform {
            flex: 1;
            font-weight: 500;
            color: #202124;
        }
        
        .social-url {
            flex: 2;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        
        .social-link {
            color: #4285f4;
            text-decoration: none;
        }
        
        .social-link:hover {
            text-decoration: underline;
        }
        
        /* Back Link */
        .back-link {
            display: inline-flex;
            align-items: center;
            color: #4285f4;
            text-decoration: none;
            font-weight: 500;
            margin-top: 20px;
        }
        
        .back-link:hover {
            text-decoration: underline;
        }
        
        /* Footer */
        footer {
            background-color: #f2f2f2;
            border-top: 1px solid #dadce0;
            margin-top: 60px;
        }
        
        .footer-links {
            display: flex;
            justify-content: space-between;
            padding: 15px 20px;
        }
        
        .footer-links a {
            color: #70757a;
            text-decoration: none;
            font-size: 14px;
            margin: 0 15px;
        }
        
        .footer-links a:hover {
            text-decoration: underline;
        }
        
        .footer-bottom {
            text-align: center;
            padding: 15px 20px;
            color: #70757a;
            font-size: 14px;
        }
        
        .footer-bottom a {
            color: #70757a;
            text-decoration: none;
        }
        
        .footer-bottom a:hover {
            text-decoration: underline;
        }
        
        /* AI Badge */
        .ai-badge {
            display: inline-block;
            background-color: #ff9800;
            color: white;
            font-size: 12px;
            padding: 3px 6px;
            border-radius: 4px;
            margin-left: 5px;
            font-weight: 500;
        }
        
        /* Mobile Responsive */
        @media (max-width: 768px) {
            .header-container {
                padding: 15px;
            }
            
            .logo span {
                display: none;
            }
            
            .profile-header {
                flex-direction: column;
                text-align: center;
            }
            
            .profile-image {
                margin-right: 0;
                margin-bottom: 20px;
            }
            
            .social-profile {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .social-icon {
                margin-bottom: 10px;
            }
            
            .social-url {
                width: 100%;
                margin-top: 5px;
            }
            
            .footer-links {
                flex-direction: column;
                align-items: center;
            }
            
            .footer-links a {
                margin: 5px 0;
            }
        }