You are an expert legal content writer and frontend developer. Your job is to create a professional yet approachable Disclaimer page for a fan-made software download/information website. The disclaimer must be legally protective while maintaining a friendly, transparent tone — NOT intimidating corporate legalese.
The output will be used on a WordPress website running the GeneratePress theme, behind Cloudflare CDN. You must create a SINGLE self-contained HTML+CSS block that goes into a WordPress “Custom HTML” block.

## STEP 1: STYLE EXTRACTION (Do This First — Critical)
Before writing ANY content or code, you MUST visit the homepage of {{WEBSITE_URL}} and extract the existing design system so this page matches perfectly.
**Extract these from the homepage hero section:**
– Background colors (dark/light values)
– Primary brand color (accent color used in buttons, links, highlights)
– Secondary/accent colors
– Font family used for headings (check Google Fonts link or CSS)
– Font family used for body text
– Border-radius values (cards, buttons)
– Overall visual feel (dark theme? light theme? gradient style?)
– CSS class namespace prefix (look for `.sw-` prefix)
**Then define your CSS variables to match:**
“`css
:root {
–disc-bg-primary: #______;
–disc-bg-card: #______;
–disc-text-primary: #______;
–disc-text-secondary: #______;
–disc-accent: #______;
–disc-accent-hover: #______;
–disc-border: #______;
–disc-heading-font: ‘______’;
–disc-body-font: ‘______’;
–disc-warning-bg: #______; /* Soft warning/notice background */
–disc-warning-border: #______; /* Warning accent color */
}
“`
If you cannot access the site, use a professional dark theme:
– Dark background (#0f0f13), card background (#1a1a23)
– Light text (#e4e4e7), muted text (#a1a1aa)
– Warning callout: soft amber/yellow tinted background
– Heading font: Outfit or Space Grotesk
– Body font: Lexend or Manrope

## STEP 2: CONTENT CREATION — Disclaimer
Write a COMPLETE, professional Disclaimer page. The tone should be:
– **Friendly and transparent** — like a responsible fan who runs a helpful resource
– **Clear and direct** — no confusing legal jargon
– **Protective** — clearly state limitations while being respectful
– **Respectful of developers** — show genuine respect for original software creators
**CRITICAL CONTEXT — shape the entire disclaimer around these facts:**
– This is a FAN-MADE website — NOT the official website for any software
– No affiliation, association, endorsement, or sponsorship with any software developer/company
– We usually DO NOT host any files ourselves
– All download links point to the ORIGINAL SOURCE (official website, GitHub, Microsoft Store, etc.)
– We make NO modifications to any software files
– All liability for downloading and using software rests on the user
– We deeply respect software developers and their intellectual property
– We do NOT claim copyright over any software featured on this site
– Content falls under Fair Use for informational/educational purposes
– We comply with DMCA and will promptly address any valid takedown requests
### Required Sections (in this order):
**1. Website Disclaimer (Opening Statement)**
– {{WEBSITE_NAME}} is an independent, fan-made informational resource
– We are NOT affiliated with, endorsed by, or sponsored by any software developer or company featured on this site
– All product names, logos, brands, and trademarks are property of their respective owners
– Use of these names is for identification purposes only and does not imply endorsement
**2. No Affiliation or Association**
– Make this very clear with a prominent callout/notice box
– “{{WEBSITE_NAME}} is independently operated and is NOT the official website for any software listed here”
– We do not represent, speak for, or act on behalf of any software developer
– Any information about software is gathered from publicly available sources
– For official support, features, or inquiries — always visit the software’s official website
**3. Download & File Hosting Disclaimer**
– We generally DO NOT host any software files on our servers
– All download links redirect to or reference the original source:
– Official developer websites
– GitHub repositories
– Microsoft Store / other official app stores
– Other legitimate, original distribution channels
– We make NO modifications, alterations, or repackaging of any software
– We cannot guarantee the availability or integrity of files hosted on external sources
– Always verify downloads from official sources before installation
**4. No Warranty / “As Is” Disclaimer**
– All information on this website is provided “as is” without warranty of any kind
– We make no guarantees about the accuracy, completeness, or timeliness of information
– Software versions, features, system requirements may change without our knowledge
– We are not responsible for any errors or omissions in our content
**5. Limitation of Liability**
– Use of any software found through our site is entirely at your own risk
– {{WEBSITE_NAME}} and its operators are NOT liable for:
– Any damage to your computer, data, or system
– Loss of data or productivity
– Security issues arising from downloaded software
– Compatibility issues
– Any direct, indirect, incidental, or consequential damages
– You are solely responsible for:
– Verifying software authenticity before installation
– Running antivirus scans on downloaded files
– Creating backups before installing new software
– Ensuring software compatibility with your system
**6. Respect for Developers & Intellectual Property**
– We deeply respect software developers and their hard work
– All software featured on this site is the intellectual property of its respective creators
– Our goal is to help users discover and learn about useful software — NOT to undermine developers
– We encourage users to support developers by:
– Purchasing premium/paid versions when available
– Providing feedback through official channels
– Respecting software license agreements
– Not pirating or distributing software illegally
**7. Fair Use & DMCA Policy**
– Content on this site (descriptions, guides, screenshots, feature lists) is created for informational and educational purposes
– This falls under the Fair Use doctrine:
– Commentary and criticism of software
– Educational guides and tutorials
– News reporting and informational coverage
– We respect copyright law and comply fully with the DMCA
**DMCA Takedown Process:**
– If you are a copyright owner and believe your rights have been infringed, contact us
– Include in your notice:
– Identification of the copyrighted work
– The specific URL(s) on our site where infringement is alleged
– Your contact information
– A statement of good faith belief
– A statement under penalty of perjury that the information is accurate
– Your physical or electronic signature
– We will review and respond to valid DMCA requests within 48-72 hours
– Contact us through our Contact page for DMCA notices
**8. External Links Disclaimer**
– Our site contains links to external websites we do not control
– We are not responsible for the content, privacy policies, or practices of external sites
– Inclusion of a link does not imply endorsement
– Use external links at your own discretion
**9. Changes to This Disclaimer**
– We may update this disclaimer from time to time
– Changes will be posted on this page
– Continued use of the site constitutes acceptance of the updated disclaimer
**10. Contact**
– Questions or concerns? Visit our Contact page
– DMCA notices should be submitted through our Contact page with the required information above

## STEP 3: HTML + CSS CODE
Create a single self-contained HTML+CSS block with these specifications:
### Layout Structure:
– Full-width page background matching site theme
– Centered content card (max-width: 860px)
– Clean, readable typography
– **Prominent notice box** at the top (for the “not affiliated” declaration) — use a subtle warning/info color
– **DMCA section** should have its own styled callout box
– Generous spacing between sections
– Responsive design
### Special Design Elements:
1. **”Not Affiliated” Notice Box** — prominent, colored border-left, slightly different background, appears near the top. Should be immediately visible and clear.
2. **DMCA Callout** — separate styled box with clear formatting for the required notice contents
3. **”Respect for Developers” section** — slightly warmer/friendlier styling to convey genuine appreciation
### HTML Structure:
“`

Disclaimer

Last Updated: [Current Date]

Important: {{WEBSITE_NAME}} is an independently operated,
fan-made resource. We are NOT affiliated with, endorsed by, or officially
associated with any software developer or company featured on this website.


“`
### Design Requirements:
– **Scoped CSS**: ALL classes prefixed with `disc-{{slug}}-` to prevent conflicts
– **Typography**: Same fonts as homepage, body 16-17px, line-height 1.8
– **Headings**: H1 page title, H2 sections, H3 subsections
– **Notice boxes**: Subtle background + left border accent (info/warning style)
– **Lists**: Styled with proper spacing
– **Tone matching**: Design should feel approachable, not cold/corporate
– **Responsive**: Works on mobile
– **NO external JS**: Pure CSS only
– **NO external images**: Text + inline SVG only
– **Max size**: Under 15KB

## STEP 4: DELIVERY
Deliver:
1. **One HTML code block** — complete Disclaimer page, ready for WordPress Custom HTML
2. **SEO metadata**:
– Title: `Disclaimer — {{WEBSITE_NAME}}`
– Description: `Read the disclaimer for {{WEBSITE_NAME}}. This is a fan-made, independently operated site with no official affiliation to any software developer. DMCA policy included.`
### WordPress Settings:
– Page slug: `disclaimer`
– Template: Full width, no sidebar
– Status: DRAFT

## CRITICAL RULES
1. **Match the site’s existing style** — extract CSS from homepage hero section
2. **Friendly tone** — this is NOT aggressive legal language. Write like a responsible person, not a lawyer
3. **Fan-made emphasis** — the “not affiliated” message must be prominent and impossible to miss
4. **Developer respect** — genuinely convey that we appreciate and respect software creators
5. **DMCA compliance** — the DMCA section must be complete and actionable
6. **Fair Use clarity** — explain why our content qualifies as fair use (informational/educational)
7. **No file hosting** — make it crystal clear we usually don’t host files, we link to sources
8. **Self-contained** — works when pasted into WordPress with zero dependencies
9. **Do your research** — visit the actual website to match design. Don’t guess.