diff --git a/app/privacy/page.tsx b/app/privacy/page.tsx
index 21c8a90..f3c4eeb 100644
--- a/app/privacy/page.tsx
+++ b/app/privacy/page.tsx
@@ -106,6 +106,16 @@ export default function PrivacyPage() {
appropriate contractual safeguards where required.
+ Google User Data Sharing and Disclosure
+
+ We do not sell, share, transfer, or disclose any Google user data to any third parties.
+
+
+ All user data retrieved via Google OAuth APIs is used solely and strictly for the core
+ functionality of the application (uploading user-generated media) and is never distributed,
+ transferred, or disclosed to external services, partners, or third parties.
+
+
6. Data retention
- Uploaded source files and generated outputs are retained only as long as needed to complete your jobs
diff --git a/lib/auth.ts b/lib/auth.ts
index ee596f9..7e9c9a9 100644
--- a/lib/auth.ts
+++ b/lib/auth.ts
@@ -19,9 +19,7 @@ export const authOptions: NextAuthOptions = {
"openid",
"email",
"profile",
- "https://www.googleapis.com/auth/youtube.upload",
- "https://www.googleapis.com/auth/youtube.readonly",
- // Required to add uploaded videos to playlists
+ // Single YouTube Data API scope (covers upload, channel, and playlist APIs)
"https://www.googleapis.com/auth/youtube.force-ssl",
].join(" "),
},