:root {
    --tcgr-ink: #111827;
    --tcgr-muted: #6b7280;
    --tcgr-line: #e5e7eb;
    --tcgr-soft: #f7f7f8;
    --tcgr-burgundy: #7b1538;
    --tcgr-burgundy-dark: #3a091a;
    --tcgr-burgundy-deep: #210510;
    --tcgr-gold: #d4af37;
    --tcgr-gold-light: #f3d76e;
    --tcgr-green: #0f766e;
    --tcgr-blue: #1f4e79;
    --tcgr-radius: 8px;
    --tcgr-shadow: 0 20px 45px rgba(17, 24, 39, .12);
}

* {
    box-sizing: border-box;
}

body.tcgr-body {
    margin: 0;
    color: var(--tcgr-ink);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #fff;
}

.tcgr-body h1,
.tcgr-body h2,
.tcgr-body h3,
.tcgr-body h4,
.tcgr-body h5,
.tcgr-body h6 {
    font-family: "Playfair Display", Georgia, serif;
    letter-spacing: 0;
}

.tcgr-body a {
    color: inherit;
    text-decoration: none;
}

.tcgr-body img {
    max-width: 100%;
    height: auto;
}

.tcgr-container {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
}

.tcgr-skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    transform: translateY(-140%);
    padding: 10px 14px;
    border-radius: var(--tcgr-radius);
    background: #fff;
    color: var(--tcgr-burgundy);
}

.tcgr-skip-link:focus {
    transform: translateY(0);
}

.tcgr-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 900;
    padding: 16px 0;
    color: #fff;
    transition: background .25s ease, box-shadow .25s ease, padding .25s ease, color .25s ease;
}

.tcgr-header.is-scrolled,
body:not(.home) .tcgr-header,
body.admin-bar .tcgr-header {
    padding: 8px 0;
    color: var(--tcgr-ink);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 12px 30px rgba(17, 24, 39, .08);
    backdrop-filter: blur(12px);
}

body.admin-bar .tcgr-header {
    top: 32px;
}

.tcgr-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.tcgr-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
}

.tcgr-brand-mark,
.tcgr-icon-button,
.tcgr-mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.tcgr-brand-mark {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, .18);
    transition: background .25s ease, color .25s ease;
}

.tcgr-header.is-scrolled .tcgr-brand-mark,
body:not(.home) .tcgr-brand-mark {
    background: var(--tcgr-burgundy);
}

.tcgr-brand svg,
.tcgr-button svg,
.tcgr-icon-button svg,
.tcgr-mobile-toggle svg,
.tcgr-contact-list svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.tcgr-brand-copy {
    display: grid;
    gap: 2px;
    line-height: 1.05;
}

.tcgr-brand-name {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 19px;
    font-weight: 800;
}

.tcgr-brand .custom-logo {
    display: block;
    width: auto;
    max-width: 230px;
    max-height: 48px;
}

.tcgr-brand-tagline {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    opacity: .78;
}

.tcgr-menu,
.tcgr-mobile-menu,
.tcgr-footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tcgr-menu {
    display: flex;
    align-items: center;
    gap: 2px;
}

.tcgr-menu > li {
    position: relative;
}

.tcgr-menu a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 8px 11px;
    border-radius: var(--tcgr-radius);
    font-size: 14px;
    font-weight: 700;
    color: currentColor;
    opacity: .9;
}

.tcgr-menu a:hover,
.tcgr-menu .current-menu-item > a {
    opacity: 1;
    background: rgba(255, 255, 255, .12);
}

.tcgr-header.is-scrolled .tcgr-menu a:hover,
body:not(.home) .tcgr-menu a:hover,
.tcgr-header.is-scrolled .tcgr-menu .current-menu-item > a,
body:not(.home) .tcgr-menu .current-menu-item > a {
    color: var(--tcgr-burgundy);
    background: rgba(123, 21, 56, .08);
}

.tcgr-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tcgr-icon-button,
.tcgr-mobile-toggle {
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    color: currentColor;
    background: transparent;
    cursor: pointer;
}

.tcgr-icon-button:hover,
.tcgr-mobile-toggle:hover {
    background: rgba(255, 255, 255, .12);
}

.tcgr-header.is-scrolled .tcgr-icon-button:hover,
.tcgr-header.is-scrolled .tcgr-mobile-toggle:hover,
body:not(.home) .tcgr-icon-button:hover,
body:not(.home) .tcgr-mobile-toggle:hover {
    background: rgba(17, 24, 39, .08);
}

.tcgr-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 10px 18px;
    border: 0;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
}

.tcgr-button-light {
    color: var(--tcgr-burgundy);
    background: #fff;
}

.tcgr-header.is-scrolled .tcgr-button-light,
body:not(.home) .tcgr-button-light {
    color: #fff;
    background: var(--tcgr-burgundy);
}

.tcgr-button-dark {
    color: #fff;
    background: var(--tcgr-burgundy);
}

.tcgr-button-gold {
    color: var(--tcgr-burgundy-deep);
    background: var(--tcgr-gold);
}

.tcgr-mobile-toggle,
.tcgr-mobile-panel,
.tcgr-search-panel {
    display: none;
}

.tcgr-mobile-panel,
.tcgr-search-panel {
    margin-top: 8px;
    color: var(--tcgr-ink);
    background: #fff;
    border-top: 1px solid var(--tcgr-line);
    box-shadow: 0 20px 40px rgba(17, 24, 39, .1);
}

.tcgr-mobile-panel.is-open,
.tcgr-search-panel.is-open {
    display: block;
}

.tcgr-mobile-menu,
.tcgr-mobile-panel .tcgr-menu {
    display: grid;
    gap: 2px;
    padding: 14px 0;
}

.tcgr-mobile-menu a,
.tcgr-mobile-panel .tcgr-menu a {
    display: block;
    padding: 12px 14px;
    border-radius: var(--tcgr-radius);
    font-weight: 800;
}

.tcgr-mobile-listen {
    width: 100%;
    margin: 0 0 16px;
}

.tcgr-search-panel {
    padding: 18px 0;
}

.tcgr-search-form {
    display: flex;
    gap: 12px;
}

.tcgr-search-form input {
    width: 100%;
    height: 52px;
    padding: 0 18px;
    border: 1px solid var(--tcgr-line);
    border-radius: 999px;
    font: inherit;
}

.tcgr-search-form button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 130px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: var(--tcgr-burgundy);
    font-weight: 800;
}

.tcgr-main {
    min-height: 70vh;
}

body:not(.home) .tcgr-main {
    padding-top: 62px;
}

.tcgr-badge {
    display: inline-flex;
    align-items: center;
    width: max-content;
    min-height: 26px;
    padding: 6px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.tcgr-badge-gold {
    color: var(--tcgr-burgundy-deep);
    background: var(--tcgr-gold);
}

.tcgr-archive-hero {
    position: relative;
    min-height: 360px;
    display: grid;
    align-items: end;
    padding: 110px 0 64px;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(26, 7, 15, .92), rgba(58, 9, 26, .65), rgba(31, 78, 121, .24)),
        url("../images/hero-bg.jpg") center/cover;
}

.tcgr-archive-hero h1 {
    max-width: 820px;
    margin: 16px 0 12px;
    font-size: clamp(38px, 6vw, 68px);
    line-height: .98;
}

.tcgr-archive-hero p {
    max-width: 660px;
    margin: 0;
    color: rgba(255, 255, 255, .76);
    font-size: 18px;
    line-height: 1.7;
}

.tcgr-archive-section {
    padding: 70px 0 90px;
    background: #f6f7f9;
}

.tcgr-post-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.tcgr-card-post {
    overflow: hidden;
    border: 1px solid rgba(17, 24, 39, .06);
    border-radius: var(--tcgr-radius);
    background: #fff;
    box-shadow: 0 10px 24px rgba(17, 24, 39, .06);
    transition: transform .25s ease, box-shadow .25s ease;
}

.tcgr-card-post:hover {
    transform: translateY(-4px);
    box-shadow: var(--tcgr-shadow);
}

.tcgr-card-thumb {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #d1d5db;
}

.tcgr-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.tcgr-card-post:hover .tcgr-card-thumb img {
    transform: scale(1.05);
}

.tcgr-card-thumb .tcgr-badge {
    position: absolute;
    left: 14px;
    top: 14px;
}

.tcgr-card-body {
    padding: 22px;
}

.tcgr-card-body h2 {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.15;
}

.tcgr-card-body h2 a:hover,
.tcgr-text-link:hover {
    color: var(--tcgr-burgundy);
}

.tcgr-meta,
.tcgr-single-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    color: var(--tcgr-muted);
    font-size: 13px;
    font-weight: 700;
}

.tcgr-card-body p {
    color: var(--tcgr-muted);
    line-height: 1.7;
}

.tcgr-text-link {
    color: var(--tcgr-burgundy);
    font-weight: 900;
}

.tcgr-pagination {
    margin-top: 40px;
}

.tcgr-pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.tcgr-pagination a,
.tcgr-pagination span {
    min-width: 40px;
    padding: 10px 13px;
    border-radius: var(--tcgr-radius);
    background: #fff;
}

.tcgr-pagination .current {
    color: #fff;
    background: var(--tcgr-burgundy);
}

.tcgr-single-hero {
    min-height: 560px;
    display: grid;
    align-items: end;
    padding: 130px 0 80px;
    color: #fff;
    background-position: center;
    background-size: cover;
}

.tcgr-single-hero h1 {
    max-width: 900px;
    margin: 18px 0;
    font-size: clamp(40px, 6vw, 74px);
    line-height: .98;
}

.tcgr-single-meta {
    color: rgba(255, 255, 255, .72);
}

.tcgr-single-wrap {
    padding: 70px 0;
    background: #fff;
}

.tcgr-single-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 56px;
}

.tcgr-single-content {
    font-size: 18px;
    line-height: 1.85;
}

.tcgr-single-content > *:first-child {
    margin-top: 0;
}

.tcgr-single-content p,
.tcgr-single-content li {
    color: #374151;
}

.tcgr-single-content h2,
.tcgr-single-content h3 {
    margin-top: 1.5em;
    color: var(--tcgr-burgundy);
}

.tcgr-single-content blockquote {
    margin: 32px 0;
    padding: 26px 30px;
    border-left: 5px solid var(--tcgr-gold);
    border-radius: var(--tcgr-radius);
    color: var(--tcgr-burgundy-dark);
    background: #fbf7ea;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 24px;
    line-height: 1.5;
}

.tcgr-single-sidebar {
    display: grid;
    align-content: start;
    gap: 22px;
}

.tcgr-sidebar-card {
    padding: 24px;
    border: 1px solid rgba(17, 24, 39, .08);
    border-radius: var(--tcgr-radius);
    background: #fff;
    box-shadow: 0 12px 28px rgba(17, 24, 39, .08);
}

.tcgr-sidebar-card h2 {
    margin: 12px 0 18px;
    font-size: 25px;
}

.tcgr-radio-card {
    color: #fff;
    background:
        linear-gradient(140deg, rgba(123, 21, 56, .94), rgba(33, 5, 16, .98)),
        url("../images/radio-studio.jpg") center/cover;
}

.tcgr-mini-list {
    display: grid;
    gap: 16px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.tcgr-mini-list a {
    display: block;
    font-weight: 900;
    line-height: 1.3;
}

.tcgr-mini-list span {
    display: block;
    margin-top: 5px;
    color: var(--tcgr-muted);
    font-size: 13px;
}

.tcgr-post-nav {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 42px;
}

.tcgr-post-nav a {
    display: inline-flex;
    padding: 13px 18px;
    border-radius: 999px;
    color: #fff;
    background: var(--tcgr-burgundy);
    font-size: 14px;
    font-weight: 900;
}

.tcgr-footer {
    padding: 70px 0 92px;
    color: #fff;
    background: var(--tcgr-burgundy-deep);
}

.tcgr-footer-grid {
    display: grid;
    grid-template-columns: 1.35fr .85fr .85fr 1fr;
    gap: 44px;
}

.tcgr-footer .tcgr-brand-mark {
    color: var(--tcgr-gold);
    background: rgba(255, 255, 255, .1);
}

.tcgr-footer p,
.tcgr-footer-menu a,
.tcgr-contact-list {
    color: rgba(255, 255, 255, .58);
}

.tcgr-footer-brand p {
    max-width: 310px;
    margin: 18px 0;
    line-height: 1.7;
}

.tcgr-footer h2 {
    margin: 0 0 18px;
    font-family: Inter, system-ui, sans-serif;
    font-size: 18px;
}

.tcgr-footer-menu {
    display: grid;
    gap: 12px;
}

.tcgr-footer-menu a:hover {
    color: var(--tcgr-gold);
}

.tcgr-socials {
    display: flex;
    gap: 10px;
}

.tcgr-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, .1);
    font-weight: 900;
}

.tcgr-socials a:hover {
    color: var(--tcgr-burgundy-deep);
    background: var(--tcgr-gold);
}

.tcgr-contact-list {
    display: grid;
    gap: 14px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.tcgr-contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tcgr-contact-list svg {
    color: var(--tcgr-gold);
}

.tcgr-footer-note {
    margin-top: 22px;
    padding: 16px;
    border-radius: var(--tcgr-radius);
    background: rgba(255, 255, 255, .06);
}

.tcgr-footer-note p {
    margin: 0 0 6px;
    font-size: 12px;
}

.tcgr-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 50px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.tcgr-footer-bottom p {
    margin: 0;
    font-size: 14px;
}

.tcgr-live-bar {
    position: fixed;
    inset: auto 0 0;
    z-index: 890;
    color: #fff;
    background: var(--tcgr-burgundy-dark);
    border-top: 1px solid rgba(212, 175, 55, .28);
}

.tcgr-live-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 52px;
}

.tcgr-live-title,
.tcgr-live-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 800;
}

.tcgr-live-title svg,
.tcgr-live-actions svg {
    width: 18px;
    height: 18px;
    color: var(--tcgr-gold);
    fill: currentColor;
}

.tcgr-live-actions span {
    color: rgba(255, 255, 255, .58);
    font-size: 12px;
}

.tcgr-live-pulse {
    position: relative;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #ef4444;
}

.tcgr-live-pulse::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: inherit;
    animation: tcgr-ping 1.4s infinite;
}

@keyframes tcgr-ping {
    to {
        transform: scale(2.5);
        opacity: 0;
    }
}

.tcgr-radio-player {
    display: grid;
    gap: 14px;
}

.tcgr-radio-player iframe,
.tcgr-radio-player audio {
    width: 100%;
}

.tcgr-radio-player-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
}

.tcgr-radio-player-title svg {
    width: 22px;
    height: 22px;
    color: var(--tcgr-gold);
    fill: currentColor;
}

.tcgr-radio-player .tcgr-button {
    width: max-content;
}

.tcgr-elementor-home {
    font-family: Inter, system-ui, sans-serif;
}

.tcgr-elementor-home.tcgr-home-hero {
    position: relative;
}

.tcgr-elementor-home.tcgr-home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .82), rgba(0, 0, 0, .45), rgba(0, 0, 0, .08)),
        linear-gradient(0deg, rgba(0, 0, 0, .55), transparent 45%);
    pointer-events: none;
}

.tcgr-elementor-home.tcgr-home-hero > .elementor-container,
.tcgr-elementor-home.tcgr-home-hero > .elementor-widget-wrap {
    position: relative;
    z-index: 1;
}

.tcgr-elementor-home .elementor-heading-title {
    letter-spacing: 0;
}

.tcgr-elementor-home .tcgr-section-title .elementor-heading-title {
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 800;
}

.tcgr-elementor-home.tcgr-home-hero {
    min-height: 85vh;
}

.tcgr-home-hero .elementor-widget-text-editor {
    max-width: 680px;
    color: rgba(255, 255, 255, .82);
    font-size: 18px;
    line-height: 1.7;
}

.tcgr-dark-section .elementor-widget-text-editor,
.tcgr-dark-section .elementor-image-box-description {
    color: rgba(255, 255, 255, .7);
}

.tcgr-dark-section .elementor-image-box-title,
.tcgr-dark-section .elementor-heading-title {
    color: #fff;
}

.tcgr-elementor-home .tcgr-news-card,
.tcgr-elementor-home .tcgr-music-card,
.tcgr-elementor-home .tcgr-partner-card,
.tcgr-elementor-home .tcgr-category-card {
    overflow: hidden;
    border-radius: var(--tcgr-radius);
    transition: transform .25s ease, box-shadow .25s ease;
}

.tcgr-elementor-home .tcgr-news-card:hover,
.tcgr-elementor-home .tcgr-music-card:hover,
.tcgr-elementor-home .tcgr-partner-card:hover,
.tcgr-elementor-home .tcgr-category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--tcgr-shadow);
}

.tcgr-elementor-home .tcgr-glass-panel {
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--tcgr-radius);
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(14px);
}

.tcgr-empty {
    padding: 50px;
    border-radius: var(--tcgr-radius);
    text-align: center;
    background: #fff;
}

@media (max-width: 1120px) {
    .tcgr-primary-nav,
    .tcgr-header-actions .tcgr-icon-button,
    .tcgr-header-actions .tcgr-button-light {
        display: none;
    }

    .tcgr-mobile-toggle {
        display: inline-flex;
    }

    .tcgr-post-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tcgr-single-layout,
    .tcgr-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 782px) {
    body.admin-bar .tcgr-header {
        top: 46px;
    }
}

@media (max-width: 720px) {
    .tcgr-container {
        width: min(100% - 24px, 1240px);
    }

    .tcgr-header {
        padding: 10px 0;
    }

    .tcgr-brand {
        min-width: 0;
    }

    .tcgr-brand-name {
        font-size: 16px;
    }

    .tcgr-brand-tagline {
        display: none;
    }

    .tcgr-brand .custom-logo {
        max-width: 175px;
    }

    .tcgr-archive-hero,
    .tcgr-single-hero {
        min-height: 420px;
        padding-bottom: 48px;
    }

    .tcgr-post-grid,
    .tcgr-single-layout,
    .tcgr-footer-grid {
        grid-template-columns: 1fr;
    }

    .tcgr-single-content {
        font-size: 17px;
    }

    .tcgr-post-nav,
    .tcgr-footer-bottom,
    .tcgr-live-inner,
    .tcgr-live-actions,
    .tcgr-search-form {
        flex-direction: column;
        align-items: stretch;
    }

    .tcgr-live-bar {
        position: sticky;
        margin-top: -1px;
    }

    .tcgr-live-title {
        padding-top: 12px;
    }

    .tcgr-live-actions {
        padding-bottom: 12px;
    }
}
