SkyRealms Website — File Structure
===================================

skyrealms/
├── index.html          ← Home page (announcements + sidebar)
├── style.css           ← Shared styles (all pages use this)
├── nav.js              ← Shared header/footer/nav (all pages use this)
├── announce-api.php    ← ADD: Your announcements API (see JailbreakMC template)
├── assets/
│   ├── logo.png        ← SkyRealms logo (already included)
│   └── font/
│       └── FFFFORWA.woff ← Blocky font (already included)
├── bans/
│   ├── index.html      ← Punishment history page
│   └── api.php         ← ADD: Your LiteBans API bridge
├── store/
│   ├── index.html      ← Tebex store page
│   └── tebex-proxy.php ← ADD: Your Tebex proxy (see JailbreakMC template)
└── staff/
    ├── index.html      ← Staff team page
    └── api.php         ← ADD: Your staff API (returns JSON of staff categories)

SETUP CHECKLIST
===============
1. Replace "play.skyrealms.net" in nav.js and each index.html with your real server IP
2. Replace "https://discord.gg/skyrealms" with your real Discord invite link
3. Replace "YOUR_DISCORD_GUILD_ID" in index.html with your Discord guild ID
4. Copy announce-api.php, bans/api.php, store/tebex-proxy.php, staff/api.php 
   from the JailbreakMC template and update config values
5. In store/index.html, set SKYREALMS_PARENT_CATEGORY_ID to your Tebex category ID

CUSTOMIZATION
=============
- Colors: Edit :root { } at the top of style.css
- Server name: Find & replace "SkyRealms" throughout
- About text: Edit the .about-panel in index.html
- Staff sample data: Edit SAMPLE_STAFF in staff/index.html
- Bans sample data: Edit SAMPLE_BANS in bans/index.html
