2026-04-01 14:12:17 +00:00
|
|
|
<?php
|
|
|
|
|
/** @var string $pageTitle */
|
|
|
|
|
/** @var string $content */
|
|
|
|
|
use Core\Services\Settings;
|
|
|
|
|
|
|
|
|
|
$faUrl = Settings::get('fontawesome_pro_url', '');
|
|
|
|
|
if ($faUrl === '') {
|
|
|
|
|
$faUrl = Settings::get('fontawesome_url', '');
|
|
|
|
|
}
|
|
|
|
|
$siteTitleSetting = Settings::get('site_title', Settings::get('site_header_title', 'AudioCore V1.5.1'));
|
|
|
|
|
$seoTitleSuffix = trim(Settings::get('seo_title_suffix', $siteTitleSetting));
|
|
|
|
|
$seoDefaultDescription = trim(Settings::get('seo_meta_description', ''));
|
|
|
|
|
$seoRobotsIndex = Settings::get('seo_robots_index', '1') === '1' ? 'index' : 'noindex';
|
|
|
|
|
$seoRobotsFollow = Settings::get('seo_robots_follow', '1') === '1' ? 'follow' : 'nofollow';
|
|
|
|
|
$seoOgImage = trim(Settings::get('seo_og_image', ''));
|
|
|
|
|
$siteCustomCssRaw = (string)Settings::get('site_custom_css', '');
|
|
|
|
|
$siteCustomCss = preg_replace('~<\s*/?\s*style\b[^>]*>~i', '', $siteCustomCssRaw) ?? $siteCustomCssRaw;
|
|
|
|
|
$pageTitleValue = trim((string)($pageTitle ?? $siteTitleSetting));
|
|
|
|
|
$metaTitle = $pageTitleValue;
|
|
|
|
|
if ($seoTitleSuffix !== '' && stripos($pageTitleValue, $seoTitleSuffix) === false) {
|
|
|
|
|
$metaTitle = $pageTitleValue . ' | ' . $seoTitleSuffix;
|
|
|
|
|
}
|
|
|
|
|
$siteNotice = null;
|
|
|
|
|
if (session_status() === PHP_SESSION_ACTIVE && isset($_SESSION['ac_site_notice']) && is_array($_SESSION['ac_site_notice'])) {
|
|
|
|
|
$siteNotice = $_SESSION['ac_site_notice'];
|
|
|
|
|
unset($_SESSION['ac_site_notice']);
|
|
|
|
|
}
|
|
|
|
|
?>
|
|
|
|
|
<!doctype html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="utf-8">
|
|
|
|
|
<?= csrf_meta() ?>
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
|
<title><?= htmlspecialchars($metaTitle, ENT_QUOTES, 'UTF-8') ?></title>
|
|
|
|
|
<?php if ($seoDefaultDescription !== ''): ?>
|
|
|
|
|
<meta name="description" content="<?= htmlspecialchars($seoDefaultDescription, ENT_QUOTES, 'UTF-8') ?>">
|
|
|
|
|
<?php endif; ?>
|
|
|
|
|
<meta name="robots" content="<?= htmlspecialchars($seoRobotsIndex . ',' . $seoRobotsFollow, ENT_QUOTES, 'UTF-8') ?>">
|
|
|
|
|
<meta property="og:title" content="<?= htmlspecialchars($metaTitle, ENT_QUOTES, 'UTF-8') ?>">
|
|
|
|
|
<?php if ($seoDefaultDescription !== ''): ?>
|
|
|
|
|
<meta property="og:description" content="<?= htmlspecialchars($seoDefaultDescription, ENT_QUOTES, 'UTF-8') ?>">
|
|
|
|
|
<?php endif; ?>
|
|
|
|
|
<?php if ($seoOgImage !== ''): ?>
|
|
|
|
|
<meta property="og:image" content="<?= htmlspecialchars($seoOgImage, ENT_QUOTES, 'UTF-8') ?>">
|
|
|
|
|
<?php endif; ?>
|
|
|
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
|
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
|
|
|
<link href="https://fonts.googleapis.com/css2?family=Syne:wght@500;600;700&family=IBM+Plex+Mono:wght@400;600&display=swap" rel="stylesheet">
|
|
|
|
|
<?php if ($faUrl !== ''): ?>
|
|
|
|
|
<link rel="stylesheet" href="<?= htmlspecialchars($faUrl, ENT_QUOTES, 'UTF-8') ?>">
|
|
|
|
|
<?php endif; ?>
|
|
|
|
|
<link
|
|
|
|
|
rel="stylesheet"
|
|
|
|
|
href="https://cdn.jsdelivr.net/gh/lipis/flag-icons@7.3.2/css/flag-icons.min.css"
|
|
|
|
|
/>
|
|
|
|
|
<style>
|
|
|
|
|
:root {
|
|
|
|
|
color-scheme: dark;
|
|
|
|
|
--ink: #0a0b11;
|
|
|
|
|
--surface: #14161f;
|
|
|
|
|
--text: #f5f7ff;
|
|
|
|
|
--muted: #9aa0b2;
|
|
|
|
|
--accent: #22f2a5;
|
|
|
|
|
--accent2: #10252e;
|
|
|
|
|
}
|
|
|
|
|
* { box-sizing: border-box; }
|
|
|
|
|
body {
|
|
|
|
|
margin: 0;
|
|
|
|
|
font-family: 'Syne', sans-serif;
|
|
|
|
|
background-color: #0f1115;
|
|
|
|
|
color: var(--text);
|
|
|
|
|
position: relative;
|
|
|
|
|
min-height: 100vh;
|
|
|
|
|
}
|
|
|
|
|
body::before {
|
|
|
|
|
content: '';
|
|
|
|
|
position: fixed;
|
|
|
|
|
inset: 0;
|
|
|
|
|
z-index: -2;
|
|
|
|
|
background:
|
|
|
|
|
radial-gradient(120% 75% at 50% -10%, rgba(38, 78, 138, 0.16), transparent 55%),
|
|
|
|
|
linear-gradient(180deg, #13161d 0%, #0f1116 45%, #0d1014 100%);
|
|
|
|
|
}
|
|
|
|
|
body::after {
|
|
|
|
|
content: '';
|
|
|
|
|
position: fixed;
|
|
|
|
|
inset: 0;
|
|
|
|
|
z-index: -1;
|
|
|
|
|
opacity: 0.12;
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
|
|
|
|
|
}
|
|
|
|
|
.shell { max-width: 1400px; margin: 0 auto; padding: 16px 24px 24px; }
|
|
|
|
|
.site-header-shell {
|
|
|
|
|
position: sticky;
|
|
|
|
|
top: 0;
|
|
|
|
|
z-index: 40;
|
|
|
|
|
padding-top: 10px;
|
|
|
|
|
backdrop-filter: blur(10px);
|
|
|
|
|
}
|
|
|
|
|
.shell-main { padding-top: 8px; }
|
|
|
|
|
.shell-notice { padding-top: 2px; padding-bottom: 4px; }
|
|
|
|
|
.site-notice {
|
|
|
|
|
border-radius: 14px;
|
|
|
|
|
border: 1px solid rgba(255,255,255,0.12);
|
|
|
|
|
background: rgba(20, 22, 28, 0.72);
|
|
|
|
|
padding: 10px 14px;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
color: #dfe7fb;
|
|
|
|
|
}
|
|
|
|
|
.site-notice-inner {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
gap: 12px;
|
|
|
|
|
}
|
|
|
|
|
.site-notice-action {
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
height: 30px;
|
|
|
|
|
padding: 0 12px;
|
|
|
|
|
border-radius: 999px;
|
|
|
|
|
border: 1px solid rgba(255,255,255,0.2);
|
|
|
|
|
background: rgba(255,255,255,0.07);
|
|
|
|
|
color: #eef3ff;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
letter-spacing: 0.12em;
|
|
|
|
|
font-size: 10px;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
|
|
|
|
.site-notice-action:hover {
|
|
|
|
|
background: rgba(255,255,255,0.14);
|
|
|
|
|
}
|
|
|
|
|
.site-notice.ok {
|
|
|
|
|
border-color: rgba(34,242,165,0.34);
|
|
|
|
|
background: rgba(34,242,165,0.12);
|
|
|
|
|
color: #c9fbe7;
|
|
|
|
|
}
|
|
|
|
|
.site-notice.info {
|
|
|
|
|
border-color: rgba(125,149,190,0.34);
|
|
|
|
|
background: rgba(125,149,190,0.13);
|
|
|
|
|
color: #d7e2ff;
|
|
|
|
|
}
|
|
|
|
|
.shell-footer { padding-top: 6px; padding-bottom: 18px; }
|
|
|
|
|
.card {
|
|
|
|
|
border-radius: 24px;
|
|
|
|
|
background: rgba(20, 22, 28, 0.75);
|
|
|
|
|
border: 1px solid rgba(255,255,255,0.12);
|
|
|
|
|
box-shadow: 0 18px 42px rgba(0,0,0,0.28);
|
|
|
|
|
padding: 22px;
|
|
|
|
|
}
|
|
|
|
|
.nav {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
gap: 10px;
|
|
|
|
|
padding: 10px;
|
|
|
|
|
border-radius: 18px;
|
|
|
|
|
border: 1px solid rgba(255,255,255,0.12);
|
|
|
|
|
background: rgba(255,255,255,0.04);
|
|
|
|
|
}
|
|
|
|
|
.nav a {
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
color: var(--muted);
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
font-size: 11px;
|
|
|
|
|
letter-spacing: 0.24em;
|
|
|
|
|
padding: 8px 14px;
|
|
|
|
|
border-radius: 999px;
|
|
|
|
|
transition: all 0.2s ease;
|
|
|
|
|
}
|
|
|
|
|
.nav a:hover { color: var(--text); background: rgba(255,255,255,0.1); }
|
|
|
|
|
.nav-actions {
|
|
|
|
|
margin-left: auto;
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
}
|
|
|
|
|
.nav-search-form {
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
height: 36px;
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
border: 1px solid rgba(255,255,255,0.12);
|
|
|
|
|
background: rgba(8,12,18,0.72);
|
|
|
|
|
color: var(--muted);
|
|
|
|
|
padding: 0 10px;
|
|
|
|
|
min-width: 220px;
|
|
|
|
|
}
|
|
|
|
|
.nav-search-form input {
|
|
|
|
|
width: 100%;
|
|
|
|
|
border: 0;
|
|
|
|
|
outline: none;
|
|
|
|
|
background: transparent;
|
|
|
|
|
color: var(--text);
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
font-family: 'IBM Plex Mono', monospace;
|
|
|
|
|
}
|
|
|
|
|
.nav-search-form input::placeholder {
|
|
|
|
|
color: rgba(255,255,255,0.45);
|
|
|
|
|
}
|
|
|
|
|
.nav-account {
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
border: 1px solid rgba(255,255,255,0.12);
|
|
|
|
|
background: rgba(255,255,255,0.04);
|
|
|
|
|
color: var(--text) !important;
|
|
|
|
|
}
|
|
|
|
|
.nav-cart {
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
border: 1px solid rgba(255,255,255,0.12);
|
|
|
|
|
background: rgba(255,255,255,0.04);
|
|
|
|
|
color: var(--text) !important;
|
|
|
|
|
}
|
|
|
|
|
.nav-cart:hover {
|
|
|
|
|
background: rgba(255,255,255,0.1);
|
|
|
|
|
}
|
|
|
|
|
.nav-cart-sep {
|
|
|
|
|
color: rgba(255,255,255,0.5);
|
|
|
|
|
margin-right: 2px;
|
|
|
|
|
}
|
|
|
|
|
.badge {
|
|
|
|
|
font-family: 'IBM Plex Mono', monospace;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
font-size: 10px;
|
|
|
|
|
letter-spacing: 0.32em;
|
|
|
|
|
color: rgba(255,255,255,0.5);
|
|
|
|
|
}
|
|
|
|
|
.nav-toggle {
|
|
|
|
|
display: none;
|
|
|
|
|
margin-top: 14px;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
height: 38px;
|
|
|
|
|
padding: 0 14px;
|
|
|
|
|
border-radius: 999px;
|
|
|
|
|
border: 1px solid rgba(255,255,255,0.12);
|
|
|
|
|
background: rgba(255,255,255,0.04);
|
|
|
|
|
color: var(--text);
|
|
|
|
|
font-size: 11px;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
letter-spacing: 0.18em;
|
|
|
|
|
font-family: 'IBM Plex Mono', monospace;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
.site-head {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
gap: 24px;
|
|
|
|
|
}
|
|
|
|
|
.site-brand {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 16px;
|
|
|
|
|
min-width: 0;
|
|
|
|
|
}
|
|
|
|
|
.site-brand-mark {
|
|
|
|
|
width: 56px;
|
|
|
|
|
height: 56px;
|
|
|
|
|
border-radius: 16px;
|
|
|
|
|
background: linear-gradient(135deg, var(--accent), var(--accent2));
|
|
|
|
|
display: grid;
|
|
|
|
|
place-items: center;
|
|
|
|
|
color: #071016;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
flex: 0 0 auto;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
.site-brand-mark i {
|
|
|
|
|
font-size: 21px;
|
|
|
|
|
line-height: 1;
|
|
|
|
|
}
|
|
|
|
|
.site-brand-mark-logo {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
object-fit: cover;
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
.site-brand-logo-only {
|
|
|
|
|
min-height: 56px;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
.site-brand-logo-only-img {
|
|
|
|
|
max-height: 56px;
|
|
|
|
|
max-width: 360px;
|
|
|
|
|
width: auto;
|
|
|
|
|
object-fit: contain;
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
.site-brand-title {
|
|
|
|
|
font-size: 22px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
line-height: 1.1;
|
|
|
|
|
}
|
|
|
|
|
.site-brand-sub {
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
color: var(--muted);
|
|
|
|
|
line-height: 1.3;
|
|
|
|
|
}
|
|
|
|
|
.ac-shortcode-empty {
|
|
|
|
|
border: 1px solid rgba(255,255,255,0.12);
|
|
|
|
|
background: rgba(255,255,255,0.02);
|
|
|
|
|
border-radius: 14px;
|
|
|
|
|
padding: 12px 14px;
|
|
|
|
|
color: var(--muted);
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
}
|
|
|
|
|
.ac-shortcode-releases,
|
|
|
|
|
.ac-shortcode-artists,
|
|
|
|
|
.ac-shortcode-sale-chart,
|
|
|
|
|
.ac-shortcode-newsletter-form {
|
|
|
|
|
border: 1px solid rgba(255,255,255,0.12);
|
|
|
|
|
background: rgba(255,255,255,0.02);
|
|
|
|
|
border-radius: 14px;
|
|
|
|
|
padding: 12px;
|
|
|
|
|
}
|
|
|
|
|
.ac-shortcode-block-head {
|
|
|
|
|
font-family: 'IBM Plex Mono', monospace;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
font-size: 10px;
|
|
|
|
|
letter-spacing: 0.22em;
|
|
|
|
|
color: rgba(255,255,255,0.58);
|
|
|
|
|
margin: 2px 0 10px;
|
|
|
|
|
}
|
|
|
|
|
.page-content {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: minmax(0, 2.2fr) minmax(280px, 1fr);
|
|
|
|
|
gap: 14px;
|
|
|
|
|
align-items: start;
|
|
|
|
|
}
|
|
|
|
|
.page-content > .ac-shortcode-hero,
|
|
|
|
|
.page-content > .ac-shortcode-releases,
|
|
|
|
|
.page-content > .ac-shortcode-artists,
|
|
|
|
|
.page-content > .ac-shortcode-sale-chart,
|
|
|
|
|
.page-content > .ac-shortcode-newsletter-form,
|
|
|
|
|
.page-content > .ac-shortcode-empty {
|
|
|
|
|
margin: 0 0 16px;
|
|
|
|
|
line-height: normal;
|
|
|
|
|
}
|
|
|
|
|
.page-content > .ac-shortcode-hero {
|
|
|
|
|
grid-column: 1 / -1;
|
|
|
|
|
}
|
|
|
|
|
.page-content > .ac-shortcode-releases {
|
|
|
|
|
grid-column: 1;
|
|
|
|
|
}
|
|
|
|
|
.page-content > .ac-shortcode-artists {
|
|
|
|
|
grid-column: 2;
|
|
|
|
|
}
|
|
|
|
|
.page-content > .ac-shortcode-sale-chart,
|
|
|
|
|
.page-content > .ac-shortcode-newsletter-form,
|
|
|
|
|
.page-content > .ac-shortcode-empty {
|
|
|
|
|
grid-column: 1 / -1;
|
|
|
|
|
}
|
|
|
|
|
.page-content > .ac-shortcode-hero:last-child,
|
|
|
|
|
.page-content > .ac-shortcode-releases:last-child,
|
|
|
|
|
.page-content > .ac-shortcode-artists:last-child,
|
|
|
|
|
.page-content > .ac-shortcode-sale-chart:last-child,
|
|
|
|
|
.page-content > .ac-shortcode-newsletter-form:last-child,
|
|
|
|
|
.page-content > .ac-shortcode-empty:last-child {
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
.ac-shortcode-release-grid {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
|
|
|
gap: 10px;
|
|
|
|
|
}
|
|
|
|
|
.ac-shortcode-release-card {
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
color: inherit;
|
|
|
|
|
border: 1px solid rgba(255,255,255,0.1);
|
|
|
|
|
background: rgba(14,17,23,0.75);
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-rows: auto 1fr;
|
|
|
|
|
min-height: 100%;
|
|
|
|
|
transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
|
|
|
|
|
}
|
|
|
|
|
.ac-shortcode-release-card:hover {
|
|
|
|
|
transform: translateY(-2px);
|
|
|
|
|
border-color: rgba(57,244,179,0.35);
|
|
|
|
|
box-shadow: 0 10px 24px rgba(0,0,0,.25);
|
|
|
|
|
}
|
|
|
|
|
.ac-shortcode-release-cover {
|
|
|
|
|
aspect-ratio: 1 / 1;
|
|
|
|
|
background: rgba(255,255,255,0.03);
|
|
|
|
|
display: grid;
|
|
|
|
|
place-items: center;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
.ac-shortcode-release-cover img {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
object-fit: cover;
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
.ac-shortcode-cover-fallback {
|
|
|
|
|
color: var(--muted);
|
|
|
|
|
font-family: 'IBM Plex Mono', monospace;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
letter-spacing: 0.2em;
|
|
|
|
|
}
|
|
|
|
|
.ac-shortcode-release-meta {
|
|
|
|
|
padding: 8px 10px 10px;
|
|
|
|
|
display: grid;
|
|
|
|
|
gap: 3px;
|
|
|
|
|
}
|
|
|
|
|
.ac-shortcode-release-title {
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
line-height: 1.2;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
|
|
|
|
.ac-shortcode-release-artist,
|
|
|
|
|
.ac-shortcode-release-date {
|
|
|
|
|
color: var(--muted);
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
}
|
|
|
|
|
.ac-shortcode-artists-grid {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
}
|
|
|
|
|
.ac-shortcode-artist-card {
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
color: inherit;
|
|
|
|
|
border: 1px solid rgba(255,255,255,0.1);
|
|
|
|
|
background: rgba(14,17,23,0.75);
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: 52px minmax(0, 1fr);
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 10px;
|
|
|
|
|
padding: 8px;
|
|
|
|
|
transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
|
|
|
|
|
}
|
|
|
|
|
.ac-shortcode-artist-card:hover {
|
|
|
|
|
transform: translateY(-2px);
|
|
|
|
|
border-color: rgba(57,244,179,0.35);
|
|
|
|
|
box-shadow: 0 10px 24px rgba(0,0,0,.25);
|
|
|
|
|
}
|
|
|
|
|
.ac-shortcode-artist-avatar {
|
|
|
|
|
width: 52px;
|
|
|
|
|
height: 52px;
|
|
|
|
|
background: rgba(255,255,255,0.03);
|
|
|
|
|
display: grid;
|
|
|
|
|
place-items: center;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
}
|
|
|
|
|
.ac-shortcode-artist-avatar img {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
object-fit: cover;
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
.ac-shortcode-artist-meta {
|
|
|
|
|
display: grid;
|
|
|
|
|
gap: 2px;
|
|
|
|
|
}
|
|
|
|
|
.ac-shortcode-artist-name {
|
|
|
|
|
font-size: 15px;
|
|
|
|
|
line-height: 1.2;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
|
|
|
|
.ac-shortcode-artist-country {
|
|
|
|
|
color: var(--muted);
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
}
|
|
|
|
|
.ac-shortcode-hero {
|
|
|
|
|
border: 1px solid rgba(255,255,255,0.14);
|
|
|
|
|
border-radius: 18px;
|
|
|
|
|
padding: 16px 18px;
|
|
|
|
|
background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
|
|
|
|
|
display: grid;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
}
|
|
|
|
|
.ac-shortcode-hero-eyebrow {
|
|
|
|
|
font-size: 10px;
|
|
|
|
|
letter-spacing: 0.24em;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
color: var(--muted);
|
|
|
|
|
font-family: 'IBM Plex Mono', monospace;
|
|
|
|
|
}
|
|
|
|
|
.ac-shortcode-hero-title {
|
|
|
|
|
font-size: clamp(30px, 4vw, 50px);
|
|
|
|
|
line-height: 1.05;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
.ac-shortcode-hero-subtitle {
|
|
|
|
|
font-size: 15px;
|
|
|
|
|
color: #d1d7e7;
|
|
|
|
|
max-width: 72ch;
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
.ac-shortcode-hero-actions {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
margin-top: 4px;
|
|
|
|
|
}
|
|
|
|
|
.ac-shortcode-hero-btn {
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
height: 38px;
|
|
|
|
|
padding: 0 14px;
|
|
|
|
|
border-radius: 999px;
|
|
|
|
|
border: 1px solid rgba(255,255,255,0.16);
|
|
|
|
|
background: rgba(255,255,255,0.05);
|
|
|
|
|
color: #f5f7ff;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
font-size: 11px;
|
|
|
|
|
letter-spacing: 0.16em;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
font-family: 'IBM Plex Mono', monospace;
|
|
|
|
|
}
|
|
|
|
|
.ac-shortcode-hero-btn.primary {
|
|
|
|
|
border-color: rgba(57,244,179,0.6);
|
|
|
|
|
background: rgba(57,244,179,0.16);
|
|
|
|
|
color: #9ff8d8;
|
|
|
|
|
}
|
|
|
|
|
.ac-shortcode-sale-list {
|
|
|
|
|
list-style: none;
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
display: grid;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
}
|
|
|
|
|
.ac-shortcode-sale-item {
|
|
|
|
|
border: 1px solid rgba(255,255,255,0.1);
|
|
|
|
|
background: rgba(14,17,23,0.75);
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
padding: 8px 10px;
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: auto minmax(0,1fr) auto;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
.ac-shortcode-sale-rank {
|
|
|
|
|
font-family: 'IBM Plex Mono', monospace;
|
|
|
|
|
font-size: 11px;
|
|
|
|
|
color: var(--muted);
|
|
|
|
|
letter-spacing: 0.15em;
|
|
|
|
|
}
|
|
|
|
|
.ac-shortcode-sale-title { font-size: 14px; line-height: 1.3; }
|
|
|
|
|
.ac-shortcode-sale-meta { font-size: 12px; color: var(--muted); white-space: nowrap; }
|
|
|
|
|
.ac-shortcode-link {
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
padding: 10px 14px;
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
border: 1px solid rgba(255,255,255,.15);
|
|
|
|
|
background: rgba(15,18,24,.6);
|
|
|
|
|
color: #f5f7ff;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
letter-spacing: .08em;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
font-family: 'IBM Plex Mono', monospace;
|
|
|
|
|
}
|
|
|
|
|
.ac-shortcode-link:hover {
|
|
|
|
|
border-color: rgba(57,244,179,.6);
|
|
|
|
|
color: #9ff8d8;
|
|
|
|
|
}
|
|
|
|
|
.ac-shortcode-newsletter-form {
|
|
|
|
|
display: grid;
|
|
|
|
|
gap: 10px;
|
|
|
|
|
border: 1px solid rgba(255,255,255,.15);
|
|
|
|
|
border-radius: 14px;
|
|
|
|
|
background: rgba(15,18,24,.6);
|
|
|
|
|
padding: 14px;
|
|
|
|
|
}
|
|
|
|
|
.ac-shortcode-newsletter-title {
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
letter-spacing: .14em;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
color: #9aa0b2;
|
|
|
|
|
font-family: 'IBM Plex Mono', monospace;
|
|
|
|
|
}
|
|
|
|
|
.ac-shortcode-newsletter-row {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: 1fr auto;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
}
|
|
|
|
|
.ac-shortcode-newsletter-input {
|
|
|
|
|
height: 40px;
|
|
|
|
|
border: 1px solid rgba(255,255,255,.16);
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
background: rgba(8,10,16,.6);
|
|
|
|
|
color: #f5f7ff;
|
|
|
|
|
padding: 0 12px;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
.ac-shortcode-newsletter-btn {
|
|
|
|
|
height: 40px;
|
|
|
|
|
padding: 0 14px;
|
|
|
|
|
border: 1px solid rgba(57,244,179,.6);
|
|
|
|
|
border-radius: 999px;
|
|
|
|
|
background: rgba(57,244,179,.16);
|
|
|
|
|
color: #9ff8d8;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
letter-spacing: .14em;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
font-family: 'IBM Plex Mono', monospace;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
.ac-home-catalog {
|
|
|
|
|
display: grid;
|
|
|
|
|
gap: 14px;
|
|
|
|
|
}
|
|
|
|
|
.ac-home-columns {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: minmax(0, 2.2fr) minmax(280px, 1fr);
|
|
|
|
|
gap: 14px;
|
|
|
|
|
align-items: start;
|
|
|
|
|
}
|
|
|
|
|
.ac-home-main,
|
|
|
|
|
.ac-home-side {
|
|
|
|
|
display: grid;
|
|
|
|
|
gap: 14px;
|
|
|
|
|
align-content: start;
|
|
|
|
|
}
|
|
|
|
|
@media (max-width: 1200px) {
|
|
|
|
|
.ac-shortcode-release-grid {
|
|
|
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
|
|
|
}
|
|
|
|
|
.ac-home-columns {
|
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
@media (max-width: 900px) {
|
|
|
|
|
.shell {
|
|
|
|
|
padding: 12px 14px 18px;
|
|
|
|
|
}
|
|
|
|
|
.card {
|
|
|
|
|
border-radius: 18px;
|
|
|
|
|
padding: 18px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
@media (max-width: 700px) {
|
|
|
|
|
.site-head {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: minmax(0, 1fr) auto;
|
|
|
|
|
grid-template-areas:
|
|
|
|
|
"brand toggle"
|
|
|
|
|
"badge badge";
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 10px 12px;
|
|
|
|
|
}
|
|
|
|
|
.site-brand { grid-area: brand; }
|
|
|
|
|
.site-badge { grid-area: badge; }
|
|
|
|
|
.nav-toggle { grid-area: toggle; margin-top: 0; align-self: start; }
|
|
|
|
|
.site-brand-title {
|
|
|
|
|
font-size: 20px;
|
|
|
|
|
}
|
|
|
|
|
.site-brand-sub {
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
}
|
|
|
|
|
.nav {
|
|
|
|
|
display: none;
|
|
|
|
|
gap: 6px;
|
|
|
|
|
padding: 8px;
|
|
|
|
|
}
|
|
|
|
|
.nav.is-open {
|
|
|
|
|
display: flex;
|
|
|
|
|
}
|
|
|
|
|
.nav-toggle {
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
}
|
|
|
|
|
.nav a {
|
|
|
|
|
width: 100%;
|
|
|
|
|
text-align: center;
|
|
|
|
|
font-size: 10px;
|
|
|
|
|
letter-spacing: 0.18em;
|
|
|
|
|
padding: 7px 10px;
|
|
|
|
|
}
|
|
|
|
|
.nav-cart {
|
|
|
|
|
width: 100%;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
|
|
|
|
.nav-actions {
|
|
|
|
|
width: 100%;
|
|
|
|
|
margin-left: 0;
|
|
|
|
|
}
|
|
|
|
|
.nav-account {
|
|
|
|
|
flex: 1 1 auto;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
|
|
|
|
.nav-search-form {
|
|
|
|
|
min-width: 0;
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
.nav-cart {
|
|
|
|
|
flex: 1 1 auto;
|
|
|
|
|
}
|
|
|
|
|
.nav-cart-sep {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
.shell-main {
|
|
|
|
|
padding-top: 2px;
|
|
|
|
|
}
|
|
|
|
|
.ac-shortcode-newsletter-row {
|
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
|
}
|
|
|
|
|
.page-content {
|
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
|
}
|
|
|
|
|
.ac-shortcode-release-grid {
|
|
|
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
|
|
|
}
|
|
|
|
|
.page-content > .ac-shortcode-releases,
|
|
|
|
|
.page-content > .ac-shortcode-artists,
|
|
|
|
|
.page-content > .ac-shortcode-sale-chart,
|
|
|
|
|
.page-content > .ac-shortcode-newsletter-form,
|
|
|
|
|
.page-content > .ac-shortcode-empty {
|
|
|
|
|
grid-column: 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
@media (max-width: 620px) {
|
|
|
|
|
.ac-shortcode-release-grid {
|
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
|
}
|
|
|
|
|
.ac-shortcode-hero-title {
|
|
|
|
|
font-size: clamp(28px, 10vw, 42px);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
<?php if (trim($siteCustomCss) !== ''): ?>
|
|
|
|
|
<style id="ac-custom-css">
|
|
|
|
|
<?= $siteCustomCss . "\n" ?>
|
|
|
|
|
</style>
|
|
|
|
|
<?php endif; ?>
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<?php require __DIR__ . '/../partials/header.php'; ?>
|
|
|
|
|
<?php if ($siteNotice): ?>
|
|
|
|
|
<section class="shell shell-notice">
|
|
|
|
|
<div class="site-notice <?= htmlspecialchars((string)($siteNotice['type'] ?? 'info'), ENT_QUOTES, 'UTF-8') ?>">
|
|
|
|
|
<div class="site-notice-inner">
|
|
|
|
|
<span><?= htmlspecialchars((string)($siteNotice['text'] ?? ''), ENT_QUOTES, 'UTF-8') ?></span>
|
|
|
|
|
<a href="/cart" class="site-notice-action">View Cart</a>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</section>
|
|
|
|
|
<?php endif; ?>
|
|
|
|
|
<main class="shell shell-main">
|
|
|
|
|
<?= $content ?? '' ?>
|
|
|
|
|
</main>
|
|
|
|
|
<?php require __DIR__ . '/../partials/footer.php'; ?>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|