/* VGN Site */
:root {
    --bg: #0c0c0c;
    --surface: #161616;
    --card: #1c1c1c;
    --text: #e0e0e0;
    --text-muted: #888;
    --vgn-red: #ff0000;
    --font: 'Sora', -apple-system, sans-serif;

    /* Platform colours */
    --twitch: #9147ff;
    --twitch-sub: #772ce8;
    --discord: #5865F2;
    --bluesky: #0085FF;
    --facebook: #1877F2;
    --instagram: #E4405F;
    --tiktok: #ff0050;
    --youtube: #FF0000;
    --spotify: #1DB954;
    --mixcloud: #5000FF;
    --paypal: #00457C;
    --amazon: #FF9900;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background: var(--bg);
    background-image: url('/assets/bg.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    color: var(--text);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
    padding: 48px 24px;
    background: rgba(12, 12, 12, 0.88);
    backdrop-filter: blur(8px);
    min-height: 100vh;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.5);
}

/* Hero */
.hero {
    text-align: center;
    margin-bottom: 40px;
}
.logo {
    width: 160px;
    height: auto;
    margin-bottom: 20px;
}
.site-title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 24px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.tagline {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 12px;
}
.tagline-genres {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--vgn-red);
    margin-bottom: 16px;
}
.tagline-sub {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-muted);
}

/* Buttons */
.actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 8px;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: transform 0.15s, filter 0.15s;
}
.btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.15);
}
.btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
.btn-twitch { background: var(--twitch); }
.btn-twitch-sub { background: var(--twitch-sub); }
.btn-discord { background: var(--discord); }
.btn-yt {
    background: transparent;
    border: 1px solid #333;
    color: var(--text-muted);
}
.btn-yt:hover {
    border-color: var(--youtube);
    color: var(--text);
}

/* Link Grid */
.links {
    margin-bottom: 32px;
}
.links h2 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 16px;
    text-align: center;
}
.link-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.link-grid-small {
    grid-template-columns: repeat(2, 1fr);
    max-width: 320px;
    margin: 0 auto;
}
.link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 8px;
    background: var(--card);
    border-radius: 8px;
    border: 1px solid #222;
    text-decoration: none;
    color: var(--text-muted);
    transition: color 0.2s, border-color 0.2s, transform 0.15s;
}
.link-card:hover {
    transform: translateY(-2px);
}
.link-card svg {
    width: 24px;
    height: 24px;
}
.link-card span {
    font-size: 12px;
    font-weight: 500;
}

/* Platform-coloured icons */
.lc-twitch    { color: var(--twitch); }
.lc-bluesky   { color: var(--bluesky); }
.lc-facebook  { color: var(--facebook); }
.lc-instagram { color: var(--instagram); }
.lc-tiktok    { color: var(--tiktok); }
.lc-youtube   { color: var(--youtube); }
.lc-spotify   { color: var(--spotify); }
.lc-mixcloud  { color: var(--mixcloud); }
.lc-paypal    { color: var(--paypal); }
.lc-amazon    { color: var(--amazon); }

.lc-twitch:hover    { border-color: var(--twitch); }
.lc-bluesky:hover   { border-color: var(--bluesky); }
.lc-facebook:hover  { border-color: var(--facebook); }
.lc-instagram:hover { border-color: var(--instagram); }
.lc-tiktok:hover    { border-color: var(--tiktok); }
.lc-youtube:hover   { border-color: var(--youtube); }
.lc-spotify:hover   { border-color: var(--spotify); }
.lc-mixcloud:hover  { border-color: var(--mixcloud); }
.lc-paypal:hover    { border-color: var(--paypal); }
.lc-amazon:hover    { border-color: var(--amazon); }

/* Promo */
.promo {
    margin-bottom: 40px;
}

/* Footer */
footer {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
footer .cta {
    font-size: 14px;
    font-weight: 600;
    color: var(--vgn-red);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}
footer p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 480px) {
    .container { padding: 32px 16px; }
    .link-grid { grid-template-columns: repeat(3, 1fr); }
    .site-title { font-size: 26px; }
}
