:root { --color-primary: #6C5CE7;
--color-primary-light: #A29BFE;
--color-primary-dark: #4834D4;
--color-secondary: #00CEC9;
--color-secondary-light: #55EFC4;
--color-accent: #FD79A8;
--color-accent-light: #FDCB6E; --color-bg: #FAFBFC;
--color-bg-alt: #F1F3F5;
--color-surface: #FFFFFF;
--color-surface-hover: #F8F9FA;
--color-border: #E9ECEF;
--color-border-light: #F1F3F5;
--color-text: #2D3436;
--color-text-secondary: #636E72; --color-text-muted: #6A737D; --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
--font-heading: 'Outfit', 'Inter', sans-serif;
--font-mono: 'JetBrains Mono', 'Fira Code', monospace;
--text-xs: 0.75rem;
--text-sm: 0.875rem;
--text-base: 1rem;
--text-lg: 1.125rem;
--text-xl: 1.25rem;
--text-2xl: 1.5rem;
--text-3xl: 1.875rem;
--text-4xl: 2.25rem;
--text-5xl: 3rem;
--leading-tight: 1.25;
--leading-normal: 1.6;
--leading-relaxed: 1.75;
--weight-normal: 400;
--weight-medium: 500;
--weight-semibold: 600;
--weight-bold: 700;
--weight-extrabold: 800; --space-xs: 0.25rem;
--space-sm: 0.5rem;
--space-md: 1rem;
--space-lg: 1.5rem;
--space-xl: 2rem;
--space-2xl: 3rem;
--space-3xl: 4rem;
--space-4xl: 6rem; --radius-sm: 0.375rem;
--radius-md: 0.75rem;
--radius-lg: 1rem;
--radius-xl: 1.5rem;
--radius-full: 9999px; --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
--shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
--shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
--shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.12);
--shadow-glow: 0 0 20px rgba(108, 92, 231, 0.15); --glass-bg: rgba(255, 255, 255, 0.82);
--glass-border: rgba(0, 0, 0, 0.06);
--glass-blur: blur(20px); --transition-fast: 150ms ease;
--transition-base: 250ms ease;
--transition-slow: 400ms ease;
--transition-spring: 400ms cubic-bezier(0.34, 1.56, 0.64, 1); --container-max: 1200px;
--container-narrow: 800px;
--sidebar-width: 320px;
--header-height: 60px; --z-dropdown: 100;
--z-sticky: 200;
--z-overlay: 300;
--z-modal: 400;
} html.dark {
--color-bg: #0F0F1A;
--color-bg-alt: #1A1A2E;
--color-surface: #16213E;
--color-surface-hover: #1A1A2E;
--color-border: #2A2A4A;
--color-border-light: #1E1E3A;
--color-text: #E4E6EB;
--color-text-secondary: #B0B3B8;
--color-text-muted: #6B7280;
--glass-bg: rgba(22, 33, 62, 0.85);
--shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.2);
--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
--shadow-md: 0 4px 16px rgba(0, 0, 0, 0.35);
--shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.4);
--shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.5);
--shadow-glow: 0 0 20px rgba(108, 92, 231, 0.25);
--glass-border: rgba(255, 255, 255, 0.06);
} @media (prefers-color-scheme: dark) {
html:not(.light) {
--color-bg: #0F0F1A;
--color-bg-alt: #1A1A2E;
--color-surface: #16213E;
--color-surface-hover: #1A1A2E;
--color-border: #2A2A4A;
--color-border-light: #1E1E3A;
--color-text: #E4E6EB;
--color-text-secondary: #B0B3B8;
--color-text-muted: #6B7280;
--glass-bg: rgba(22, 33, 62, 0.85);
--shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.2);
--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
--shadow-md: 0 4px 16px rgba(0, 0, 0, 0.35);
--shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.4);
--shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.5);
--shadow-glow: 0 0 20px rgba(108, 92, 231, 0.25);
--glass-bg: rgba(22, 33, 62, 0.82);
--glass-border: rgba(255, 255, 255, 0.06);
}
} *,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
font-size: 16px;
scroll-behavior: smooth;
-webkit-text-size-adjust: 100%;
text-size-adjust: 100%;
}
body {
font-family: var(--font-body);
font-size: var(--text-base);
line-height: var(--leading-normal);
color: var(--color-text);
background-color: var(--color-bg);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
overflow-x: hidden;
}
img,
video,
svg {
display: block;
max-width: 100%;
height: auto;
}
a {
color: var(--color-primary);
text-decoration: none;
transition: color var(--transition-fast);
}
a:hover {
color: var(--color-primary-dark);
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: var(--font-heading);
font-weight: var(--weight-bold);
line-height: var(--leading-tight);
color: var(--color-text);
}
h1 {
font-size: var(--text-4xl);
}
h2 {
font-size: var(--text-3xl);
}
h3 {
font-size: var(--text-2xl);
}
h4 {
font-size: var(--text-xl);
}
p {
margin-bottom: var(--space-md);
}
ul,
ol {
padding-left: var(--space-lg);
}
blockquote {
border-left: 4px solid var(--color-primary-light);
padding: var(--space-md) var(--space-lg);
margin: var(--space-lg) 0;
background: var(--color-bg-alt);
border-radius: 0 var(--radius-md) var(--radius-md) 0;
font-style: italic;
color: var(--color-text-secondary);
}
blockquote p:last-child {
margin-bottom: 0;
} .site-container {
min-height: 100vh;
display: flex;
flex-direction: column;
}
.container {
width: 100%;
max-width: var(--container-max);
margin: 0 auto;
padding: 0 var(--space-lg);
}
.container--narrow {
max-width: var(--container-narrow);
}
.content-area {
flex: 1;
padding: var(--space-2xl) 0;
}
.content-layout {
display: grid;
grid-template-columns: 1fr var(--sidebar-width);
gap: var(--space-2xl);
align-items: start;
}
.content-layout--full {
grid-template-columns: 1fr;
}
.main-content {
min-width: 0;
} .site-header {
position: sticky;
top: 0;
z-index: var(--z-sticky);
background: var(--glass-bg);
backdrop-filter: var(--glass-blur);
-webkit-backdrop-filter: var(--glass-blur);
border-bottom: 1px solid var(--glass-border);
height: var(--header-height);
transition: box-shadow var(--transition-base);
}
.site-header.scrolled {
box-shadow: var(--shadow-md);
} .site-header .container {
height: 100%;
}
.header-inner {
display: flex;
align-items: center;
justify-content: space-between;
height: 100%;
gap: var(--space-md);
}
.site-logo {
font-family: var(--font-heading);
font-size: var(--text-xl);
font-weight: var(--weight-extrabold);
color: var(--color-text);
display: flex;
align-items: center;
gap: var(--space-sm);
flex-shrink: 0;
}
.site-logo:hover {
color: var(--color-primary);
}
.site-logo .logo-icon {
width: 32px;
height: 32px;
background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
border-radius: var(--radius-sm);
display: flex;
align-items: center;
justify-content: center;
color: #fff;
font-size: var(--text-lg);
} .main-nav {
display: flex;
align-items: center;
gap: var(--space-xs);
list-style: none;
padding: 0;
margin: 0;
} .main-nav>li,
.main-nav__list>li {
list-style: none;
margin: 0;
padding: 0;
}
.main-nav>li>a,
.main-nav>a,
.main-nav__list>li>a {
display: block;
padding: var(--space-sm) var(--space-md);
border-radius: var(--radius-md);
font-size: var(--text-sm);
font-weight: var(--weight-medium);
color: var(--color-text-secondary);
transition: all var(--transition-fast);
white-space: nowrap;
}
.main-nav>li>a:hover,
.main-nav>li.current-menu-item>a,
.main-nav>a:hover,
.main-nav>a.active,
.main-nav__list>li>a:hover,
.main-nav__list>li.current-menu-item>a {
color: var(--color-primary);
background: rgba(108, 92, 231, 0.08);
} .theme-toggle--header {
display: flex;
align-items: center;
justify-content: center;
background: var(--color-bg-alt);
border: 1px solid var(--color-border);
border-radius: var(--radius-full);
width: 36px;
height: 36px;
cursor: pointer;
transition: all var(--transition-fast);
font-size: var(--text-lg);
color: var(--color-text-secondary);
padding: 0;
line-height: 1;
flex-shrink: 0;
}
.theme-toggle--header:hover {
background: var(--color-surface-hover);
color: var(--color-primary);
border-color: var(--color-primary-light);
} .nav-theme-toggle {
display: none;
} .menu-toggle {
display: none;
background: none;
border: none;
cursor: pointer;
padding: var(--space-sm);
color: var(--color-text);
font-size: var(--text-xl);
line-height: 1;
flex-shrink: 0;
}
.menu-toggle span {
display: block;
width: 22px;
height: 2px;
background: currentColor;
margin: 5px 0;
transition: all var(--transition-base);
border-radius: 2px;
}
.menu-toggle.active span:nth-child(1) {
transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
transform: rotate(-45deg) translate(5px, -5px);
} .hero {
padding: var(--space-4xl) 0;
text-align: center;
background: linear-gradient(135deg, rgba(108, 92, 231, 0.05), rgba(0, 206, 201, 0.05));
border-bottom: 1px solid var(--color-border);
position: relative;
overflow: visible; } .hero--compact {
padding: var(--space-2xl) 0;
}
.hero--compact h1 {
font-size: var(--text-4xl);
margin-bottom: var(--space-sm);
}
.hero--compact p {
margin-bottom: var(--space-lg);
}
.hero > .container {
position: relative;
z-index: 1;
}
.hero h1 {
font-size: var(--text-5xl);
font-weight: var(--weight-extrabold);
margin-bottom: var(--space-md);
background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.hero p {
font-size: var(--text-lg);
color: var(--color-text-secondary);
max-width: 600px;
margin: 0 auto var(--space-xl);
}
.hero-search {
max-width: 500px;
margin: 0 auto;
position: relative;
}
.hero-search input {
width: 100%;
padding: var(--space-md) var(--space-lg);
padding-right: 50px;
border: 2px solid var(--color-border);
border-radius: var(--radius-full);
font-family: var(--font-body);
font-size: var(--text-base);
background: var(--color-surface);
color: var(--color-text);
transition: all var(--transition-base);
}
.hero-search input:focus {
outline: none;
border-color: var(--color-primary);
box-shadow: var(--shadow-glow);
}
.hero-search button {
position: absolute;
right: 6px;
top: 50%;
transform: translateY(-50%);
width: 40px;
height: 40px;
border: none;
background: var(--color-primary);
color: #fff;
border-radius: var(--radius-full);
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: background var(--transition-fast);
}
.hero-search button:hover {
background: var(--color-primary-dark);
} .category-showcase {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
gap: var(--space-md);
margin: var(--space-2xl) 0;
}
.category-card {
display: flex;
flex-direction: column;
align-items: center;
gap: var(--space-sm);
padding: var(--space-lg);
background: var(--color-surface);
border: 1px solid var(--color-border);
border-radius: var(--radius-lg);
text-decoration: none;
color: var(--color-text);
transition: all var(--transition-base);
}
.category-card:hover {
transform: translateY(-4px);
box-shadow: var(--shadow-lg);
border-color: var(--color-primary-light);
color: var(--color-primary);
}
.category-card .cat-icon {
font-size: var(--text-3xl);
}
.category-card .cat-name {
font-family: var(--font-heading);
font-weight: var(--weight-semibold);
font-size: var(--text-sm);
text-align: center;
}
.category-card .cat-count {
font-size: var(--text-xs);
color: var(--color-text-muted);
} .post-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: var(--space-lg);
}
.post-card {
background: var(--color-surface);
border: 1px solid var(--color-border);
border-radius: var(--radius-lg);
overflow: hidden;
transition: all var(--transition-base);
display: flex;
flex-direction: column;
}
.post-card:hover {
transform: translateY(-4px);
box-shadow: var(--shadow-xl);
}
.post-card__thumb {
display: block;
width: 100%;
aspect-ratio: 16 / 9;
overflow: hidden;
}
.post-card__thumb img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform var(--transition-slow);
}
.post-card:hover .post-card__thumb img {
transform: scale(1.05);
}
.post-card__body {
padding: var(--space-lg);
flex: 1;
display: flex;
flex-direction: column;
}
.post-card__category {
display: inline-block;
font-size: var(--text-xs);
font-weight: var(--weight-semibold);
text-transform: uppercase;
letter-spacing: 0.05em;
color: var(--color-primary);
background: rgba(108, 92, 231, 0.08);
padding: var(--space-xs) var(--space-sm);
border-radius: var(--radius-sm);
margin-bottom: var(--space-sm);
width: fit-content;
}
.post-card__title {
font-size: var(--text-lg);
font-weight: var(--weight-semibold);
margin-bottom: var(--space-sm);
line-height: var(--leading-tight);
}
.post-card__title a {
color: var(--color-text);
}
.post-card__title a:hover {
color: var(--color-primary);
}
.post-card__excerpt {
font-size: var(--text-sm);
color: var(--color-text-secondary);
flex: 1;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
}
.post-card__meta {
display: flex;
align-items: center;
gap: var(--space-md);
margin-top: var(--space-md);
padding-top: var(--space-md);
border-top: 1px solid var(--color-border-light);
font-size: var(--text-xs);
color: var(--color-text-muted);
} .single-header {
padding: var(--space-2xl) 0;
background: linear-gradient(135deg, rgba(108, 92, 231, 0.03), rgba(0, 206, 201, 0.03));
border-bottom: 1px solid var(--color-border);
}
.single-header__breadcrumb {
font-size: var(--text-sm);
color: var(--color-text-muted);
margin-bottom: var(--space-md);
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 0;
}
.single-header__breadcrumb a {
color: var(--color-text-secondary);
white-space: nowrap;
}
.single-header__breadcrumb .bc-sep {
margin: 0 4px;
opacity: 0.5;
white-space: nowrap;
flex-shrink: 0;
}
.single-header__breadcrumb .bc-current { word-break: break-word;
overflow-wrap: anywhere;
}
.single-header h1 {
font-size: var(--text-4xl);
margin-bottom: var(--space-md);
}
.single-header__meta {
display: flex;
flex-wrap: wrap;
gap: var(--space-md);
font-size: var(--text-sm);
color: var(--color-text-secondary);
}
.single-header__meta .meta-item {
display: flex;
align-items: center;
gap: var(--space-xs);
} .song-info-box {
background: var(--color-surface);
border: 1px solid var(--color-border);
border-radius: var(--radius-lg);
padding: var(--space-lg);
margin-bottom: var(--space-xl);
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: var(--space-md);
}
.song-info-item {
display: flex;
flex-direction: column;
gap: var(--space-xs);
}
.song-info-item .label {
font-size: var(--text-xs);
font-weight: var(--weight-semibold);
text-transform: uppercase;
letter-spacing: 0.05em;
color: var(--color-text-secondary); }
.song-info-item .value {
font-size: var(--text-base);
font-weight: var(--weight-medium);
color: var(--color-text);
} .youtube-section {
margin-bottom: var(--space-xl);
}
.youtube-facade {
position: relative;
width: 100%;
padding-bottom: 56.25%;
background: var(--color-bg-alt);
border-radius: var(--radius-lg);
overflow: hidden;
cursor: pointer;
}
.youtube-facade img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
}
.youtube-facade .play-btn {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 72px;
height: 72px;
background: rgba(255, 0, 0, 0.85);
border-radius: var(--radius-xl);
display: flex;
align-items: center;
justify-content: center;
transition: all var(--transition-base);
}
.youtube-facade:hover .play-btn {
background: rgba(255, 0, 0, 1);
transform: translate(-50%, -50%) scale(1.1);
}
.youtube-facade .play-btn::after {
content: '';
display: block;
width: 0;
height: 0;
border-style: solid;
border-width: 12px 0 12px 22px;
border-color: transparent transparent transparent #fff;
margin-left: 4px;
}
.youtube-embed {
position: relative;
width: 100%;
padding-bottom: 56.25%;
border-radius: var(--radius-lg);
overflow: hidden;
}
.youtube-embed iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: 0;
} .yt-blocked-overlay {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 16px;
padding: 28px 24px;
background: #0f0f0f;
border-radius: var(--radius-lg);
text-align: center;
min-height: 180px;
}
.yt-blocked-overlay p {
color: #aaa;
font-size: 14px;
line-height: 1.6;
margin: 0;
max-width: 420px;
}
.yt-blocked-btn {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 10px 22px;
background: #ff0000;
color: #fff;
border-radius: 4px;
font-size: 14px;
font-weight: 600;
text-decoration: none;
transition: background .2s;
}
.yt-blocked-btn:hover {
background: #cc0000;
color: #fff;
} .lyrics-section {
background: var(--color-surface);
border: 1px solid var(--color-border);
border-radius: var(--radius-lg);
padding: var(--space-xl);
margin-bottom: var(--space-xl);
}
.lyrics-section__header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: var(--space-lg);
padding-bottom: var(--space-md);
border-bottom: 2px solid var(--color-primary-light);
}
.lyrics-section__header h2 {
font-size: var(--text-xl);
display: flex;
align-items: center;
gap: var(--space-sm);
}
.lyrics-text {
font-size: var(--text-base);
line-height: 1.5;
white-space: normal !important;
font-family: var(--font-body);
}
.lyrics-text p {
margin-bottom: var(--space-lg);
}
.lyrics-text p:last-child {
margin-bottom: 0;
} .commentary-section {
margin-bottom: var(--space-xl);
}
.commentary-section__header {
display: flex;
align-items: center;
gap: var(--space-sm);
margin-bottom: var(--space-lg);
}
.commentary-section__header h2 {
font-size: var(--text-2xl);
}
.commentary-section__badge {
display: inline-flex;
align-items: center;
gap: var(--space-xs);
font-size: var(--text-xs);
font-weight: var(--weight-semibold);
color: var(--color-text); background: rgba(0, 206, 201, 0.15);
padding: var(--space-xs) var(--space-sm);
border-radius: var(--radius-sm);
}
.commentary-content {
font-size: var(--text-base);
line-height: var(--leading-relaxed);
}
.commentary-content h2 {
font-size: var(--text-2xl);
margin-top: var(--space-xl);
margin-bottom: var(--space-md);
}
.commentary-content h3 {
font-size: var(--text-xl);
margin-top: var(--space-lg);
margin-bottom: var(--space-md);
}
.commentary-content p {
margin-bottom: var(--space-md);
}
.commentary-content ul,
.commentary-content ol {
margin-bottom: var(--space-md);
}
.commentary-content li {
margin-bottom: var(--space-sm);
} .commentary-content blockquote,
.commentary-content .wp-block-quote {
border-left: 4px solid var(--color-primary-light);
padding: var(--space-md) var(--space-lg);
margin: var(--space-lg) 0;
background: var(--color-bg-alt);
border-radius: 0 var(--radius-md) var(--radius-md) 0;
font-style: italic;
color: var(--color-text-secondary);
}
.commentary-content blockquote p:last-child,
.commentary-content .wp-block-quote p:last-child {
margin-bottom: 0;
}
.commentary-content .wp-block-heading {
margin-top: var(--space-xl);
margin-bottom: var(--space-md);
}
.commentary-content .wp-block-separator {
border: none;
border-top: 2px solid var(--color-border);
margin: var(--space-xl) 0;
}
.commentary-content .wp-block-image {
margin: var(--space-lg) 0;
}
.commentary-content .wp-block-image img {
border-radius: var(--radius-md);
}
.commentary-content pre,
.commentary-content .wp-block-code {
background: var(--color-bg-alt);
padding: var(--space-md);
border-radius: var(--radius-md);
overflow-x: auto;
font-family: var(--font-mono);
font-size: var(--text-sm);
} .sidebar {
position: sticky;
top: calc(var(--header-height) + var(--space-lg));
}
.sidebar-widget {
background: var(--color-surface);
border: 1px solid var(--color-border);
border-radius: var(--radius-lg);
padding: var(--space-lg);
margin-bottom: var(--space-lg);
}
.sidebar-widget:empty {
display: none;
}
.sidebar-widget__title {
font-size: var(--text-base);
font-weight: var(--weight-semibold);
margin-bottom: var(--space-md);
padding-bottom: var(--space-sm);
border-bottom: 2px solid var(--color-primary-light);
} .sidebar-categories {
list-style: none;
padding: 0;
margin: 0;
}
.sidebar-categories li {
margin-bottom: 2px;
}
.sidebar-categories a {
display: flex;
align-items: center;
gap: var(--space-sm);
padding: var(--space-sm) var(--space-sm);
border-radius: var(--radius-sm);
color: var(--color-text-secondary);
font-size: var(--text-sm);
font-weight: var(--weight-medium);
transition: all var(--transition-fast);
}
.sidebar-categories a:hover {
color: var(--color-primary);
background: rgba(108, 92, 231, 0.06);
}
.sidebar-categories .cat-icon {
font-size: var(--text-base);
} .sponsor-banner {
display: block;
margin-bottom: var(--space-md);
border-radius: var(--radius-xl);
overflow: hidden;
transition: transform var(--transition-base);
}
.sponsor-banner:last-child {
margin-bottom: 0;
}
.sponsor-banner:hover {
transform: translateY(-2px);
}
.sponsor-banner img {
width: 100%;
height: auto;
border-radius: var(--radius-xl);
} .live-search-wrapper {
position: relative;
}
.live-search-results {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--glass-bg);
backdrop-filter: var(--glass-blur);
-webkit-backdrop-filter: var(--glass-blur);
border: 1px solid var(--color-border);
border-top: none;
border-radius: 0 0 var(--radius-lg) var(--radius-lg);
box-shadow: var(--shadow-lg);
max-height: 60vh;
overflow-y: auto;
z-index: var(--z-dropdown);
display: none;
}
.live-search-results.active {
display: block;
}
.live-search-item {
display: flex;
align-items: center;
gap: var(--space-md);
padding: var(--space-md) var(--space-lg);
text-decoration: none;
color: var(--color-text);
border-bottom: 1px solid var(--color-border-light);
transition: background var(--transition-fast);
}
.live-search-item:last-child {
border-bottom: none;
}
.live-search-item:hover {
background: var(--color-bg-alt);
color: var(--color-primary);
}
.live-search-item .search-icon {
font-size: var(--text-lg);
flex-shrink: 0;
}
.live-search-item .search-thumb {
width: 48px;
height: 48px;
border-radius: var(--radius-sm);
overflow: hidden;
flex-shrink: 0;
}
.live-search-item .search-thumb img {
width: 100%;
height: 100%;
object-fit: cover;
}
.live-search-item .search-content {
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
gap: 2px;
}
.live-search-item .search-title {
font-size: var(--text-sm);
font-weight: var(--weight-medium);
}
.live-search-item .search-meta {
font-size: var(--text-xs);
color: var(--color-text-muted);
}
.live-search-more {
display: block;
text-align: center;
padding: var(--space-md);
font-size: var(--text-sm);
font-weight: var(--weight-semibold);
color: var(--color-primary);
border-top: 1px solid var(--color-border);
}
.live-search-more:hover {
background: rgba(108, 92, 231, 0.04);
} .toc-section {
background: var(--color-surface);
border: 1px solid var(--color-border);
border-radius: var(--radius-lg);
padding: var(--space-lg);
margin-bottom: var(--space-xl);
}
.toc-section__title {
font-size: var(--text-base);
font-weight: var(--weight-semibold);
margin-bottom: var(--space-md);
padding-bottom: var(--space-sm);
border-bottom: 2px solid var(--color-primary-light);
display: flex;
align-items: center;
gap: var(--space-sm);
}
.toc-list {
list-style: none;
padding: 0;
margin: 0;
counter-reset: toc;
}
.toc-list li {
counter-increment: toc;
}
.toc-list li a {
display: flex;
align-items: baseline;
gap: var(--space-sm);
padding: var(--space-xs) 0;
color: var(--color-text-secondary);
font-size: var(--text-sm);
transition: color var(--transition-fast);
}
.toc-list li a::before {
content: counter(toc) ".";
color: var(--color-primary-light);
font-weight: var(--weight-semibold);
font-size: var(--text-xs);
min-width: 1.5em;
}
.toc-list li a:hover {
color: var(--color-primary);
}
.toc-list li.toc-h3 a {
padding-left: var(--space-lg);
} .site-footer {
background: var(--color-bg-alt);
border-top: 1px solid var(--color-border);
padding: var(--space-3xl) 0 var(--space-xl);
}
.footer-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: var(--space-2xl);
margin-bottom: var(--space-2xl);
}
.footer-col h3 {
font-size: var(--text-base);
font-weight: var(--weight-semibold);
margin-bottom: var(--space-md);
color: var(--color-text);
}
.footer-col ul {
list-style: none;
padding: 0;
}
.footer-col ul li {
margin-bottom: var(--space-sm);
}
.footer-col ul a {
color: var(--color-text-secondary);
font-size: var(--text-sm);
transition: color var(--transition-fast);
}
.footer-col ul a:hover {
color: var(--color-primary);
}
.footer-bottom {
padding-top: var(--space-xl);
border-top: 1px solid var(--color-border);
text-align: center;
font-size: var(--text-sm);
color: var(--color-text-secondary); }
.footer-bottom a {
text-decoration: underline;  color: var(--color-text-secondary);
} .pagination {
margin: var(--space-2xl) 0;
text-align: center;
} .pagination .nav-links {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: var(--space-sm);
}
.pagination .page-numbers {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 40px;
height: 40px;
padding: 0 var(--space-sm);
border: 1px solid var(--color-border);
border-radius: var(--radius-md);
font-size: var(--text-sm);
font-weight: var(--weight-medium);
color: var(--color-text-secondary);
background: var(--color-surface);
transition: all var(--transition-fast);
text-decoration: none;
}
.pagination .page-numbers:hover {
border-color: var(--color-primary);
color: var(--color-primary);
}
.pagination .page-numbers.current {
background: var(--color-primary);
border-color: var(--color-primary);
color: #fff;
}
.pagination .page-numbers.dots {
border-color: transparent;
background: transparent;
} .section-title {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: var(--space-xl);
}
.section-title h2 {
font-size: var(--text-2xl);
font-weight: var(--weight-bold);
}
.section-title .view-all {
font-size: var(--text-sm);
font-weight: var(--weight-medium);
color: var(--color-primary);
display: flex;
align-items: center;
gap: var(--space-xs);
} .screen-reader-text {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border: 0;
}
.text-center {
text-align: center;
}
.mt-0 {
margin-top: 0;
}
.mb-0 {
margin-bottom: 0;
} @media (max-width: 1024px) {
.content-layout {
grid-template-columns: 1fr;
}
.sidebar {
position: static;
}
}
@media (max-width: 768px) {
:root {
--header-height: 56px;
} .theme-toggle--header {
display: none;
}
.menu-toggle {
display: block;
} .main-nav {
position: fixed;
top: var(--header-height);
left: 0;
right: 0;
bottom: 0;
background: var(--color-surface);
flex-direction: column;
align-items: stretch;
padding: 0;
gap: 0;
transform: translateX(100%);
transition: transform var(--transition-base);
z-index: var(--z-overlay);
overflow-y: auto;
-webkit-overflow-scrolling: touch;
}
.main-nav.open {
transform: translateX(0);
} .main-nav>li,
.main-nav>a,
.main-nav__list>li {
display: block;
border-bottom: 1px solid var(--color-border-light);
}
.main-nav>li>a,
.main-nav>a,
.main-nav__list>li>a {
display: block;
font-size: var(--text-lg);
padding: var(--space-lg) var(--space-xl);
border-radius: 0;
color: var(--color-text);
}
.main-nav>li>a:hover,
.main-nav>a:hover,
.main-nav__list>li>a:hover {
color: var(--color-primary);
background: rgba(108, 92, 231, 0.06);
} .nav-theme-toggle {
display: block;
border-top: 2px solid var(--color-border);
margin-top: auto;
}
.nav-theme-toggle .theme-toggle {
display: flex;
align-items: center;
gap: var(--space-md);
width: 100%;
padding: var(--space-lg) var(--space-xl);
background: none;
border: none;
cursor: pointer;
color: var(--color-text);
font-size: var(--text-lg);
}
.nav-theme-toggle .theme-icon {
font-size: var(--text-2xl);
}
.nav-theme-toggle .theme-label {
font-weight: var(--weight-medium);
color: var(--color-text-secondary);
}
.hero h1 {
font-size: var(--text-3xl);
}
.hero {
padding: var(--space-2xl) 0;
}
.hero--compact {
padding: var(--space-lg) 0;
}
.hero--compact h1 {
font-size: var(--text-2xl);
}
.post-grid {
grid-template-columns: 1fr;
}
.single-header h1 {
font-size: var(--text-2xl);
}
.lyrics-section {
padding: var(--space-lg);
}
.song-info-box {
grid-template-columns: 1fr 1fr;
}
.footer-grid {
grid-template-columns: 1fr 1fr;
}
.category-showcase {
grid-template-columns: repeat(3, 1fr);
}
}
@media (max-width: 480px) {
.category-showcase {
grid-template-columns: repeat(2, 1fr);
}
.song-info-box {
grid-template-columns: 1fr;
}
.footer-grid {
grid-template-columns: 1fr;
}
} @keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(16px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.animate-fade-in-up {
animation: fadeInUp var(--transition-slow) ease both;
}
.animate-fade-in {
animation: fadeIn var(--transition-slow) ease both;
} .post-card:nth-child(1) {
animation-delay: 0ms;
}
.post-card:nth-child(2) {
animation-delay: 80ms;
}
.post-card:nth-child(3) {
animation-delay: 160ms;
}
.post-card:nth-child(4) {
animation-delay: 240ms;
}
.post-card:nth-child(5) {
animation-delay: 320ms;
}
.post-card:nth-child(6) {
animation-delay: 400ms;
} .ai-ads {
margin: var(--space-lg) 0;
text-align: center;
} .hero-doodles {
position: absolute;
inset: 0;
pointer-events: none;
z-index: 0;
overflow: hidden;
}
.doodle {
position: absolute;
fill: var(--color-primary);
opacity: 0.07;
}
html.dark .doodle {
fill: var(--color-primary-light);
opacity: 0.14;
}
@keyframes doodle-float {
0%, 100% { transform: translateY(0px) rotate(0deg); }
33%       { transform: translateY(-12px) rotate(7deg); }
66%       { transform: translateY(-5px) rotate(-4deg); }
}
@keyframes doodle-float2 {
0%, 100% { transform: translateY(0px) rotate(-4deg); }
50%       { transform: translateY(-16px) rotate(6deg); }
}
@keyframes doodle-sway {
0%, 100% { transform: translateX(0px) rotate(0deg); }
50%       { transform: translateX(9px) rotate(10deg); }
}
.doodle-1  { top:  8%; left:  4%;   width: 46px; height: 46px; animation: doodle-float  6s   ease-in-out infinite; }
.doodle-2  { top: 60%; left:  6%;   width: 54px; height: 54px; animation: doodle-float2 7.5s ease-in-out infinite 1.2s; opacity: 0.05; }
.doodle-3  { top: 15%; right:  5%;  width: 50px; height: 50px; animation: doodle-sway   8s   ease-in-out infinite 0.5s; }
.doodle-4  { top: 62%; right:  4%;  width: 42px; height: 42px; animation: doodle-float  5.5s ease-in-out infinite 2s; }
.doodle-5  { top: 35%; left:  2%;   width: 30px; height: 30px; animation: doodle-float2 9s   ease-in-out infinite 3s;  opacity: 0.04; }
.doodle-6  { top: 18%; right: 12%;  width: 38px; height: 38px; animation: doodle-sway   7s   ease-in-out infinite 1s; }
.doodle-7  { top: 72%; right: 14%;  width: 28px; height: 28px; animation: doodle-float  6.5s ease-in-out infinite 0.8s; opacity: 0.05; } .doodle-8  { top: 45%; left:  8%;   width: 36px; height: 36px; animation: doodle-float  7s   ease-in-out infinite 0.3s; opacity: 0.05; }
.doodle-9  { top: 82%; left:  3%;   width: 44px; height: 44px; animation: doodle-sway   6.5s ease-in-out infinite 1.5s; }
.doodle-10 { top: 25%; left: 13%;   width: 28px; height: 28px; animation: doodle-float2 8s   ease-in-out infinite 2.5s; opacity: 0.04; }
.doodle-11 { top:  5%; right: 18%;  width: 40px; height: 40px; animation: doodle-float  5.5s ease-in-out infinite 0.7s; }
.doodle-12 { top: 80%; right:  8%;  width: 34px; height: 34px; animation: doodle-float2 7.5s ease-in-out infinite 1.8s; opacity: 0.05; }
.doodle-13 { top: 50%; right: 18%;  width: 26px; height: 26px; animation: doodle-sway   9s   ease-in-out infinite 2.2s; opacity: 0.04; }
.doodle-14 { top: 88%; left: 14%;   width: 48px; height: 48px; animation: doodle-float  6s   ease-in-out infinite 1.1s; }
.doodle-15 { top:  3%; left: 22%;   width: 32px; height: 32px; animation: doodle-sway   7s   ease-in-out infinite 0.9s; opacity: 0.05; }
.doodle-16 { top: 70%; left: 18%;   width: 42px; height: 42px; animation: doodle-float2 8.5s ease-in-out infinite 2s; }
.doodle-17 { top: 40%; right:  8%;  width: 38px; height: 38px; animation: doodle-float  6s   ease-in-out infinite 3.5s; opacity: 0.04; }
.doodle-18 { top: 92%; right: 20%;  width: 30px; height: 30px; animation: doodle-sway   7s   ease-in-out infinite 1.3s; }
.doodle-19 { top: 10%; left: 30%;   width: 24px; height: 24px; animation: doodle-float2 9.5s ease-in-out infinite 4s;   opacity: 0.04; }
.doodle-20 { top: 55%; left: 26%;   width: 46px; height: 46px; animation: doodle-float  5s   ease-in-out infinite 0.5s; opacity: 0.05; }
.doodle-21 { top: 78%; right: 26%;  width: 36px; height: 36px; animation: doodle-sway   8s   ease-in-out infinite 2.8s; }
.doodle-22 { top: 22%; right: 28%;  width: 50px; height: 50px; animation: doodle-float  7s   ease-in-out infinite 1.6s; opacity: 0.04; }
.doodle-23 { top: 95%; left: 32%;   width: 28px; height: 28px; animation: doodle-float2 6s   ease-in-out infinite 3.2s; }
.doodle-24 { top: 48%; left: 38%;   width: 22px; height: 22px; animation: doodle-sway  10s   ease-in-out infinite 0.2s; opacity: 0.03; }
.doodle-25 { top: 12%; right: 35%;  width: 40px; height: 40px; animation: doodle-float  8s   ease-in-out infinite 2.4s; opacity: 0.04; }
.doodle-26 { top: 85%; left: 42%;   width: 44px; height: 44px; animation: doodle-float2 7s   ease-in-out infinite 1s; }
.doodle-27 { top: 32%; right: 40%;  width: 32px; height: 32px; animation: doodle-sway   6.5s ease-in-out infinite 3s;   opacity: 0.03; }
.doodle-28 { top: 65%; right: 36%;  width: 36px; height: 36px; animation: doodle-float  9s   ease-in-out infinite 1.7s; opacity: 0.04; }
.doodle-29 { top:  5%; left: 48%;   width: 26px; height: 26px; animation: doodle-float2 8.5s ease-in-out infinite 0.6s; opacity: 0.03; }
.doodle-30 { top: 75%; left: 50%;   width: 42px; height: 42px; animation: doodle-float  6s   ease-in-out infinite 2.1s; }
.doodle-31 { top: 20%; left: 55%;   width: 34px; height: 34px; animation: doodle-sway   7.5s ease-in-out infinite 1.4s; opacity: 0.04; }
.doodle-32 { top: 58%; left: 62%;   width: 48px; height: 48px; animation: doodle-float2 8s   ease-in-out infinite 3.8s; opacity: 0.05; }
.doodle-33 { top: 90%; left: 68%;   width: 30px; height: 30px; animation: doodle-float  5.5s ease-in-out infinite 0.4s; }
.doodle-34 { top: 42%; left: 72%;   width: 38px; height: 38px; animation: doodle-sway   9s   ease-in-out infinite 2.6s; opacity: 0.04; }
.doodle-35 { top: 15%; left: 80%;   width: 44px; height: 44px; animation: doodle-float  7s   ease-in-out infinite 1.9s; opacity: 0.05; }
html.dark .doodle-2  { opacity: 0.1; }
html.dark .doodle-5  { opacity: 0.09; }
html.dark .doodle-7  { opacity: 0.1; }
html.dark .doodle-8  { opacity: 0.1; }
html.dark .doodle-10 { opacity: 0.09; }
html.dark .doodle-12 { opacity: 0.1; }
html.dark .doodle-13 { opacity: 0.09; }
html.dark .doodle-17 { opacity: 0.09; }
html.dark .doodle-19 { opacity: 0.09; }
html.dark .doodle-20 { opacity: 0.1; }
html.dark .doodle-22 { opacity: 0.09; }
html.dark .doodle-24 { opacity: 0.08; }
html.dark .doodle-25 { opacity: 0.09; }
html.dark .doodle-27 { opacity: 0.08; }
html.dark .doodle-28 { opacity: 0.09; }
html.dark .doodle-29 { opacity: 0.08; }
html.dark .doodle-31 { opacity: 0.09; }
html.dark .doodle-32 { opacity: 0.1; }
html.dark .doodle-34 { opacity: 0.09; }
html.dark .doodle-35 { opacity: 0.1; } .content-area,
.site-footer {
transition: filter var(--transition-base);
}
body.search-active .content-area,
body.search-active .site-footer {
filter: blur(4px);
pointer-events: none;
user-select: none;
} body.search-active .hero {
position: relative;
z-index: calc(var(--z-modal) + 100); } .single-header--song {
text-align: center;
}
.single-header--song .single-header__breadcrumb {
display: flex;
justify-content: center;
flex-wrap: wrap;
align-items: center;
row-gap: 2px;
}
.single-header--song .single-header__meta {
justify-content: center;
} .toc-toggle {
background: none;
border: none;
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0;
margin-bottom: 0;
cursor: pointer;
color: inherit;
font-family: inherit;
font-size: var(--text-base);
font-weight: var(--weight-semibold);
text-align: left;
border-bottom: 2px solid var(--color-primary-light);
padding-bottom: var(--space-sm);
}
.toc-toggle:focus-visible {
outline: 2px solid var(--color-primary);
border-radius: var(--radius-sm);
}
.toc-toggle-arrow {
display: inline-block;
font-style: normal;
font-size: var(--text-lg);
transition: transform var(--transition-base);
line-height: 1;
}
.toc-toggle[aria-expanded="true"] .toc-toggle-arrow {
transform: rotate(180deg);
}
.toc-list-wrap {
margin-top: var(--space-md);
} .toc-section__title.toc-toggle {
margin-bottom: 0;
} .more-songs-section {
background: var(--color-surface);
border: 1px solid var(--color-border);
border-radius: var(--radius-lg);
padding: var(--space-xl);
margin-top: var(--space-2xl);
}
.more-songs__title {
font-size: var(--text-xl);
font-weight: var(--weight-semibold);
margin-bottom: var(--space-lg);
color: var(--color-text);
}
.more-songs__grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--space-sm);
}
.more-songs__item {
display: flex;
align-items: center;
gap: var(--space-sm);
padding: var(--space-sm) var(--space-md);
background: var(--color-bg-alt);
border: 1px solid var(--color-border);
border-radius: var(--radius-md);
text-decoration: none;
color: var(--color-text-secondary);
font-size: var(--text-sm);
transition: all var(--transition-fast);
overflow: hidden;
}
.more-songs__item:hover {
background: rgba(108, 92, 231, 0.06);
border-color: var(--color-primary-light);
color: var(--color-primary);
}
.more-songs__icon {
flex-shrink: 0;
font-size: var(--text-base);
}
.more-songs__name {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
flex: 1;
}
@media (max-width: 640px) {
.more-songs__grid {
grid-template-columns: 1fr;
}
} .post-card__meta--compact {
flex-wrap: wrap;
gap: var(--space-sm);
padding-top: 8px;
margin-top: auto; border-top: 1px solid var(--color-border-light);
}
.meta-badge {
display: inline-flex;
align-items: center;
gap: 3px;
padding: 2px 8px;
border-radius: var(--radius-sm);
font-size: var(--text-xs);
font-weight: var(--weight-medium);
background: var(--color-bg-alt);
color: var(--color-text-muted);
border: 1px solid var(--color-border-light);
}
.meta-badge--video {
background: rgba(220, 38, 38, 0.07);
color: #dc2626;
border-color: rgba(220, 38, 38, 0.15);
} .plat-icons {
display: inline-flex;
align-items: center;
gap: 3px;
}
.plat-icon {
display: inline-flex;
align-items: center;
justify-content: center;
width: 24px;
height: 24px;
border-radius: 5px;
background: var(--color-bg-alt);
border: 1px solid var(--color-border-light);
opacity: 0.78;
flex-shrink: 0;
transition: opacity 0.15s ease, transform 0.15s ease;
text-decoration: none;
}
.plat-icon:hover {
opacity: 1;
transform: scale(1.12);
}
.plat-icon svg {
width: 14px;
height: 14px;
display: block;
pointer-events: none;
} @media (max-width: 640px) {
.sponsor-banners-grid {
column-count: 2;
column-gap: var(--space-sm);
display: block;
}
.sponsor-banners-grid .sponsor-banner {
break-inside: avoid;
margin-bottom: var(--space-sm);
display: block;
}
} .main-nav__list {
display: contents; list-style: none;
margin: 0;
padding: 0;
} @media (max-width: 767px) {
.single-sarki_sozleri .main-content article {
display: flex;
flex-direction: column;
} .single-sarki_sozleri .main-content article .song-info-box       { order: 1; }
.single-sarki_sozleri .main-content article .toc-section          { order: 2; }
.single-sarki_sozleri .main-content article .lyrics-section       { order: 3; }
.single-sarki_sozleri .main-content article .youtube-section      { order: 4; }
.single-sarki_sozleri .main-content article .commentary-section   { order: 5; }
.single-sarki_sozleri .main-content article .platform-links       { order: 6; }
.single-sarki_sozleri .main-content article .more-songs-section   { order: 7; }
} .platform-links {
margin: var(--space-xl) 0 var(--space-lg);
}
.platform-links__title {
font-size: var(--text-sm);
font-weight: var(--weight-semibold);
text-transform: uppercase;
letter-spacing: 0.04em;
color: var(--color-text-muted);
margin-bottom: var(--space-sm);
}
.platform-links__buttons {
display: flex;
flex-wrap: wrap;
gap: 8px;
} .platform-btn {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 7px 16px;
border-radius: 999px;
font-size: 13px;
font-weight: var(--weight-semibold);
text-decoration: none;
color: #fff;
white-space: nowrap;
transition: opacity 0.2s ease, transform 0.15s ease;
line-height: 1;
}
.platform-btn:hover {
opacity: 0.85;
transform: translateY(-1px);
color: #fff;
}
.platform-btn svg { flex-shrink: 0; width: 15px; height: 15px; } .platform-btn--ytmusic { background: #C20000; }
.platform-btn--spotify { background: #0d8039; }
.platform-btn--apple   { background: linear-gradient(135deg, #d42030, #8a0016); }
.platform-btn--deezer  { background: #8c22e0; } @media (max-width: 767px) {
.platform-links {
margin: var(--space-lg) 0;
}
.platform-links__buttons { gap: 6px; }
.platform-btn {
padding: 5px 12px;
font-size: 12px;
gap: 5px;
}
.platform-btn svg { width: 13px; height: 13px; }
}.is-small-text{font-size:.875em}.is-regular-text{font-size:1em}.is-large-text{font-size:2.25em}.is-larger-text{font-size:3em}.has-drop-cap:not(:focus):first-letter{float:left;font-size:8.4em;font-style:normal;font-weight:100;line-height:.68;margin:.05em .1em 0 0;text-transform:uppercase}body.rtl .has-drop-cap:not(:focus):first-letter{float:none;margin-left:.1em}p.has-drop-cap.has-background{overflow:hidden}:root :where(p.has-background){padding:1.25em 2.375em}:where(p.has-text-color:not(.has-link-color)) a{color:inherit}p.has-text-align-left[style*="writing-mode:vertical-lr"],p.has-text-align-right[style*="writing-mode:vertical-rl"]{rotate:180deg}