<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Sitemap — Ol Skool Music</title>
    <meta name="description" content="Looking for information on Sitemap? Visit Ol Skool Music — Your Ol Skool Music Source">
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link href="https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:wght@300;400;500&display=swap" rel="stylesheet">
    <style>
        :root {
            --brand:      #1a6cff;
            --brand-dark: #0d47c4;
            --bg:         #0a0a0f;
            --surface:    #111118;
            --border:     rgba(255,255,255,0.08);
            --text:       #e8e8f0;
            --muted:      #6b6b80;
            --radius:     12px;
        }
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background: var(--bg);
            color: var(--text);
            font-family: 'DM Sans', sans-serif;
            font-size: 16px;
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        body::before {
            content: '';
            position: fixed; inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
            pointer-events: none; z-index: 0;
        }
        body::after {
            content: '';
            position: fixed; top: -20vh; left: 50%; transform: translateX(-50%);
            width: 80vw; height: 60vh;
            background: radial-gradient(ellipse, #1a6cff22 0%, transparent 70%);
            pointer-events: none; z-index: 0;
        }
        header {
            position: relative; z-index: 10;
            padding: 1.25rem 2rem;
            display: flex; align-items: center; justify-content: space-between;
            border-bottom: 1px solid var(--border);
            background: rgba(10,10,15,0.7);
            backdrop-filter: blur(12px);
        }
        .logo {
            font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.25rem;
            color: #fff; text-decoration: none; letter-spacing: -0.02em;
        }
        .logo span { color: var(--brand); }
        nav { display: flex; gap: 0.25rem; flex-wrap: wrap; }
        nav a {
            color: var(--muted); text-decoration: none;
            font-size: 0.875rem; font-weight: 500;
            padding: 0.4rem 0.75rem; border-radius: 6px;
            transition: color 0.2s, background 0.2s;
        }
        nav a:hover { color: #fff; background: rgba(255,255,255,0.06); }
        main {
            position: relative; z-index: 1; flex: 1;
            max-width: 860px; width: 100%;
            margin: 0 auto; padding: 4rem 2rem 2rem;
        }
        .breadcrumb {
            display: flex; align-items: center; gap: 0.5rem;
            font-size: 0.8rem; color: var(--muted);
            margin-bottom: 2.5rem; flex-wrap: wrap;
        }
        .breadcrumb a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
        .breadcrumb a:hover { color: var(--brand); }
        .breadcrumb .sep { opacity: 0.4; }
        .breadcrumb .current { color: var(--text); }
        .badge {
            display: inline-flex; align-items: center; gap: 0.4rem;
            background: #1a6cff1a; border: 1px solid #1a6cff44;
            color: var(--brand); font-size: 0.75rem; font-weight: 600;
            letter-spacing: 0.06em; text-transform: uppercase;
            padding: 0.3rem 0.75rem; border-radius: 100px; margin-bottom: 1.5rem;
        }
        .badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }
        h1 {
            font-family: 'Syne', sans-serif;
            font-size: clamp(2rem, 5vw, 3.25rem);
            font-weight: 800; line-height: 1.15;
            letter-spacing: -0.03em; color: #fff; margin-bottom: 1.25rem;
        }
        h1 em { font-style: normal; color: var(--brand); }
        .lead { font-size: 1.1rem; color: var(--muted); max-width: 600px; margin-bottom: 2.5rem; line-height: 1.7; }
        .cta-btn {
            display: inline-flex; align-items: center; gap: 0.6rem;
            background: var(--brand); color: #fff; text-decoration: none;
            font-weight: 600; font-size: 0.95rem;
            padding: 0.75rem 1.5rem; border-radius: 8px;
            transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
            box-shadow: 0 4px 20px #1a6cff40;
        }
        .cta-btn:hover { background: var(--brand-dark); transform: translateY(-1px); box-shadow: 0 6px 28px #1a6cff60; }
        .divider { border: none; border-top: 1px solid var(--border); margin: 3rem 0; }
        .section-label {
            font-family: 'Syne', sans-serif; font-size: 0.7rem; font-weight: 700;
            letter-spacing: 0.12em; text-transform: uppercase;
            color: var(--muted); margin-bottom: 1.25rem;
        }
        .link-grid {
            display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 0.75rem; margin-bottom: 3rem;
        }
        .link-card {
            display: flex; align-items: center; gap: 0.6rem;
            background: var(--surface); border: 1px solid var(--border);
            border-radius: var(--radius); padding: 0.85rem 1rem;
            text-decoration: none; color: var(--text);
            font-size: 0.9rem; font-weight: 500;
            transition: border-color 0.2s, background 0.2s, transform 0.15s;
        }
        .link-card:hover { border-color: #1a6cff66; background: #1a6cff0d; transform: translateY(-2px); }
        .link-card .icon {
            width: 32px; height: 32px; background: #1a6cff1a;
            border-radius: 6px; display: flex; align-items: center;
            justify-content: center; flex-shrink: 0; color: var(--brand);
        }
        footer {
            position: relative; z-index: 1; text-align: center;
            padding: 1.5rem 2rem; border-top: 1px solid var(--border);
            font-size: 0.8rem; color: var(--muted);
        }
        footer a { color: var(--brand); text-decoration: none; }
        footer a:hover { text-decoration: underline; }
        @media (max-width: 600px) {
            header { flex-direction: column; gap: 1rem; align-items: flex-start; }
            main { padding: 2.5rem 1.25rem 1.5rem; }
        }
    </style>
</head>
<body>

<header>
    <a href="https://olskoolmusic.com" class="logo">Ol Skool Music</a>
    <nav>
        <a href="https://olskoolmusic.com/">Home</a>
<a href="https://olskoolmusic.com/#foundations">Foundations</a>
<a href="https://olskoolmusic.com/#groove">Soul&amp;Funk</a>
<a href="https://olskoolmusic.com/#archives">The Archives</a>

    </nav>
</header>

<main>
    <div class="breadcrumb"><a href="https://olskoolmusic.com">Home</a><span class="sep">›</span><span class="current">Sitemap</span></div>
    <div class="badge">Content updated</div>
    <h1>Looking for <em>Sitemap</em>?</h1>
    <p class="lead">
        Our content on <strong>Sitemap</strong> has moved to our new website.
        Visit Ol Skool Music — Your Ol Skool Music Source
    </p>
    <a href="https://olskoolmusic.com" class="cta-btn">
        <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><path d="M3 12h18M13 6l6 6-6 6"/></svg>
        Visit Ol Skool Music
    </a>
    <hr class="divider">
    <p class="section-label">Browse our site</p>
    <div class="link-grid">
                <a href="https://olskoolmusic.com/" class="link-card">
            <span class="icon">
                <svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M12 5l7 7-7 7"/></svg>
            </span>
            Home
        </a>        <a href="https://olskoolmusic.com/#foundations" class="link-card">
            <span class="icon">
                <svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M12 5l7 7-7 7"/></svg>
            </span>
            Foundations
        </a>        <a href="https://olskoolmusic.com/#groove" class="link-card">
            <span class="icon">
                <svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M12 5l7 7-7 7"/></svg>
            </span>
            Soul&Funk
        </a>        <a href="https://olskoolmusic.com/#archives" class="link-card">
            <span class="icon">
                <svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M12 5l7 7-7 7"/></svg>
            </span>
            The Archives
        </a>
    </div>
</main>

<footer>
    &copy; 2026 <a href="https://olskoolmusic.com">Ol Skool Music</a>. All rights reserved.
    &nbsp;·&nbsp;
    <a href="https://olskoolmusic.com/contact">Contact us</a>
</footer>

</body>
</html>