@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --tv8-front-bg: #f5f5f5;
    --tv8-front-surface: #ffffff;
    --tv8-front-surface-soft: #f3f4f6;
    --tv8-front-border: #d1d5db;
    --tv8-front-text: #0f172a;
    --tv8-front-muted: #6b7280;
    --tv8-front-primary: #111827;
    --tv8-front-primary-dark: #030712;
    --tv8-front-success: #111827;
    --tv8-front-warning: #374151;
    --tv8-front-danger: #4b5563;
    --tv8-front-shadow: 0 20px 50px rgba(15, 23, 42, .08);
    --tv8-front-radius: 1.5rem;
}

body.tv8-front-body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background:
        radial-gradient(circle at top left, rgba(17,24,39,.05), transparent 32%),
        radial-gradient(circle at top right, rgba(107,114,128,.05), transparent 28%),
        var(--tv8-front-bg);
    color: var(--tv8-front-text);
}

.tv8-front-body .text-danger,
.tv8-front-body .link-danger {
    color: #4b5563 !important;
}

.tv8-front-body .border-danger {
    border-color: rgba(75,85,99,.24) !important;
}

.tv8-front-body .bg-danger {
    background-color: #4b5563 !important;
}

.tv8-front-body .btn-danger {
    background: #111827 !important;
    border-color: #111827 !important;
}

.tv8-front-body .btn-danger:hover,
.tv8-front-body .btn-danger:focus {
    background: #374151 !important;
    border-color: #374151 !important;
}

.tv8-front-body .btn-outline-danger {
    color: #111827 !important;
    border-color: rgba(17,24,39,.22) !important;
}

.tv8-front-body .btn-outline-danger:hover,
.tv8-front-body .btn-outline-danger:focus {
    background: #111827 !important;
    border-color: #111827 !important;
    color: #fff !important;
}

.tv8-front-body .alert-danger {
    background: #f3f4f6;
    border-color: rgba(107,114,128,.24);
    color: #111827;
}

.tv8-front-navbar {
    background: rgba(255, 255, 255, .92) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(17,24,39,.08);
    box-shadow: 0 12px 40px rgba(15,23,42,.06);
    z-index: 1030;
}

.tv8-front-navbar .navbar-brand,
.tv8-front-navbar .nav-link {
    color: rgba(17,24,39,.88) !important;
}

.tv8-front-navbar .nav-link:hover,
.tv8-front-navbar .nav-link:focus {
    color: #000 !important;
}

.tv8-front-navbar .nav-link.active {
    color: #000 !important;
    font-weight: 700;
}

.tv8-front-navbar .nav-link {
    position: relative;
    padding-left: .95rem !important;
    padding-right: .95rem !important;
}

.tv8-front-navbar .nav-link::after {
    content: '';
    position: absolute;
    left: .95rem;
    right: .95rem;
    bottom: .4rem;
    height: 2px;
    border-radius: 999px;
    background: #111827;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .18s ease;
}

.tv8-front-navbar .nav-link.active::after,
.tv8-front-navbar .dropdown-toggle.active::after {
    opacity: 1;
    transform: scaleX(1);
}

.tv8-front-navbar .navbar-toggler {
    border-color: rgba(17,24,39,.16);
    border-radius: .9rem;
    padding: .5rem .7rem;
}

.tv8-front-navbar .navbar-toggler:focus {
    box-shadow: 0 0 0 .2rem rgba(17,24,39,.10);
}

.tv8-front-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2817,24,39,0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.tv8-front-navbar__actions {
    display: flex;
    align-items: center;
    margin-left: 1rem;
}

.tv8-front-navbar__member-btn {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    min-height: 44px;
    padding: .65rem 1rem;
    border-radius: .9rem;
    background: #111827;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 12px 24px rgba(17,24,39,.14);
    transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}

.tv8-front-navbar__member-btn:hover,
.tv8-front-navbar__member-btn:focus {
    background: #1f2937;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 16px 28px rgba(17,24,39,.18);
}

.tv8-front-navbar__member-btn.is-authenticated {
    background: #374151;
}

.tv8-front-navbar__member-btn i {
    font-size: .92rem;
}

.tv8-front-navbar .dropdown-menu .dropdown-item.active,
.tv8-front-navbar .dropdown-menu .dropdown-item:active {
    background: rgba(17,24,39,.08);
    color: var(--tv8-front-primary-dark);
    font-weight: 700;
}

.tv8-front-footer {
    background: linear-gradient(180deg, #ffffff 0%, #f3f4f6 100%);
    border-top: 1px solid rgba(17,24,39,.08);
    color: #111827;
}

.tv8-cookie-banner {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 1100;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .18s ease, transform .18s ease;
}

.tv8-cookie-banner.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.tv8-cookie-banner__inner {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
    background: rgba(17,24,39,.96);
    color: #fff;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 1.25rem;
    padding: 1rem 1.1rem;
    box-shadow: 0 20px 50px rgba(15,23,42,.26);
    backdrop-filter: blur(14px);
}

.tv8-cookie-banner__icon {
    width: 2.9rem;
    height: 2.9rem;
    border-radius: .95rem;
    background: rgba(255,255,255,.10);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
}

.tv8-cookie-banner__text {
    color: rgba(255,255,255,.88);
    line-height: 1.65;
    font-size: .9rem;
}

.tv8-cookie-banner__text a,
.tv8-cookie-banner__link {
    color: #fff;
    font-weight: 700;
}

.tv8-cookie-banner__text a:hover,
.tv8-cookie-banner__link:hover {
    color: #d1d5db;
}

.tv8-cookie-banner__actions {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.tv8-cookie-banner__link {
    text-decoration: none;
    font-size: .88rem;
}

.tv8-cookie-banner__btn {
    border: 0;
    border-radius: 999px;
    background: #fff;
    color: #111827;
    font-weight: 800;
    min-height: 42px;
    padding: 0 1rem;
    box-shadow: 0 10px 24px rgba(0,0,0,.16);
}

.tv8-cookie-banner__btn:hover,
.tv8-cookie-banner__btn:focus {
    background: #e5e7eb;
}

.tv8-footer-shell {
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(17,24,39,.08);
    border-radius: 1.5rem;
    padding: 1.4rem;
    box-shadow: 0 18px 44px rgba(15,23,42,.05);
    backdrop-filter: blur(10px);
}

.tv8-footer-title {
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #111827;
    margin: .1rem 0 .75rem;
}

.tv8-footer-links {
    display: grid;
    gap: .45rem;
}

.tv8-footer-links a {
    color: #4b5563;
    text-decoration: none;
    font-size: .9rem;
    font-weight: 600;
}

.tv8-footer-links a:hover,
.tv8-footer-links a:focus {
    color: #111827;
}


.tv8-application-shell {
    padding: 2rem 0 4rem;
}

.tv8-hero-card,
.tv8-form-card,
.tv8-side-card,
.tv8-check-card {
    background: rgba(255,255,255,.95);
    border: 1px solid rgba(17,24,39,.08);
    border-radius: var(--tv8-front-radius);
    box-shadow: var(--tv8-front-shadow);
}

.tv8-hero-card {
    padding: 2rem;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(243,244,246,.98));
}

.tv8-hero-card::after {
    content: '';
    position: absolute;
    inset: auto -40px -40px auto;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(17,24,39,.10), transparent 70%);
    pointer-events: none;
}

.tv8-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(17,24,39,.08);
    color: var(--tv8-front-primary-dark);
    font-size: .82rem;
    font-weight: 700;
    padding: .5rem .85rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.tv8-hero-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.08;
    font-weight: 800;
    margin-bottom: .75rem;
}

.tv8-hero-text {
    color: var(--tv8-front-muted);
    max-width: 54rem;
    margin-bottom: 0;
}

.tv8-breadcrumb-card {
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(17,24,39,.08);
    border-radius: 1rem;
    box-shadow: var(--tv8-front-shadow);
    padding: .85rem 1rem;
}

.tv8-breadcrumb {
    --bs-breadcrumb-divider-color: var(--tv8-front-muted);
    --bs-breadcrumb-item-active-color: var(--tv8-front-text);
    margin: 0;
}

.tv8-breadcrumb .breadcrumb-item,
.tv8-breadcrumb .breadcrumb-item a {
    font-size: .92rem;
}

.tv8-breadcrumb .breadcrumb-item a {
    color: var(--tv8-front-primary-dark);
    text-decoration: none;
    font-weight: 600;
}

.tv8-breadcrumb .breadcrumb-item a:hover,
.tv8-breadcrumb .breadcrumb-item a:focus {
    text-decoration: underline;
}

.tv8-breadcrumb .breadcrumb-item.active {
    font-weight: 700;
}

.tv8-meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.tv8-meta-item {
    background: rgba(255,255,255,.8);
    border: 1px solid rgba(17,24,39,.08);
    border-radius: 1.1rem;
    padding: 1rem 1.1rem;
}

.tv8-meta-label {
    display: block;
    color: var(--tv8-front-muted);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: .4rem;
}

.tv8-meta-value {
    font-weight: 700;
}

.tv8-form-card {
    padding: 1.5rem;
}

.tv8-section-card {
    border: 1px solid rgba(17,24,39,.08);
    border-radius: 1.25rem;
    background: #fff;
    padding: 1.4rem;
    margin-bottom: 1rem;
}

.tv8-section-head {
    margin-bottom: 1.25rem;
}

.tv8-section-title {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: .25rem;
}

.tv8-section-desc {
    color: var(--tv8-front-muted);
    margin-bottom: 0;
    font-size: .92rem;
}

.tv8-field-card {
    background: linear-gradient(180deg, #fff 0%, #f9fafb 100%);
    border: 1px solid rgba(17,24,39,.08);
    border-radius: 1.1rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

.tv8-field-label {
    font-weight: 700;
    margin-bottom: .65rem;
}

.tv8-field-hint {
    color: var(--tv8-front-muted);
    font-size: .85rem;
    margin-top: .45rem;
}

.tv8-control,
.tv8-select,
.tv8-file {
    border-radius: .95rem;
    border-color: #d6deea;
    min-height: 50px;
    padding: .8rem 1rem;
}

.tv8-control:focus,
.tv8-select:focus,
.tv8-file:focus {
    border-color: #6b7280;
    box-shadow: 0 0 0 .2rem rgba(17,24,39,.10);
}

.tv8-check-card {
    padding: 1rem 1.1rem;
    margin-bottom: .85rem;
}

.tv8-check-card .form-check-input {
    margin-top: .3rem;
}

.tv8-check-title {
    font-weight: 700;
}

.tv8-check-desc {
    color: var(--tv8-front-muted);
    font-size: .92rem;
    margin-top: .2rem;
}

.tv8-consent-group {
    display: grid;
    gap: .85rem;
}

.tv8-consent-line {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    color: var(--tv8-front-text);
    font-weight: 700;
    line-height: 1.55;
}

.tv8-consent-line .form-check-input {
    flex-shrink: 0;
    margin-top: .3rem;
}

.tv8-consent-line a {
    color: #2563eb;
    text-decoration: none;
}

.tv8-consent-line a:hover,
.tv8-consent-line a:focus {
    text-decoration: underline;
}

.tv8-commercial-consent {
    align-items: flex-start;
}

.tv8-link-button {
    appearance: none;
    border: 0;
    background: transparent;
    color: #2563eb;
    font: inherit;
    font-weight: 800;
    padding: 0;
    text-decoration: none;
}

.tv8-link-button:hover,
.tv8-link-button:focus {
    text-decoration: underline;
}

.tv8-communication-consent,
.tv8-communication-panel {
    border: 1px solid rgba(17,24,39,.08);
    border-radius: 1.1rem;
    background: rgba(249,250,251,.88);
    padding: 1rem;
}

.tv8-preference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: .75rem;
}

.tv8-preference-option,
.tv8-communication-option {
    display: flex;
    align-items: center;
    gap: .7rem;
    font-weight: 800;
    line-height: 1.35;
}

.tv8-preference-option {
    min-height: 48px;
    border: 1px solid rgba(17,24,39,.08);
    border-radius: .95rem;
    background: #fff;
    padding: .75rem .85rem;
}

.tv8-preference-option i,
.tv8-communication-option i {
    width: 1.2rem;
    text-align: center;
}

.tv8-communication-option + .tv8-communication-option {
    margin-top: 1rem;
}

.tv8-communication-modal .modal-content {
    border: 0;
    border-radius: 1rem;
    overflow: hidden;
}

.tv8-communication-modal .modal-header {
    background: linear-gradient(135deg, #1d4ed8, #7c3aed);
    color: #fff;
    border-bottom: 0;
}

.tv8-communication-modal .btn-close {
    filter: invert(1) grayscale(100%);
    opacity: .85;
}

.tv8-code-input {
    font-weight: 800;
    letter-spacing: .18rem;
    text-transform: uppercase;
}

.tv8-submit-bar {
    position: sticky;
    bottom: 1rem;
    z-index: 5;
    margin-top: 1.5rem;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(17,24,39,.08);
    border-radius: 1.2rem;
    padding: 1rem;
    box-shadow: 0 18px 40px rgba(15,23,42,.12);
}

.tv8-submit-btn {
    border: 0;
    border-radius: 1rem;
    min-height: 56px;
    font-weight: 800;
    background: linear-gradient(135deg, #111827, #374151);
    box-shadow: 0 16px 32px rgba(17,24,39,.18);
}

.tv8-inline-status {
    display: none;
    margin-top: 1rem;
}

.tv8-inline-status.is-visible {
    display: block;
}

.tv8-side-card {
    padding: 1.4rem;
}

.tv8-home-grid,
.tv8-application-grid {
    display: grid;
    gap: 1.25rem;
}

.tv8-home-card,
.tv8-application-card {
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(17,24,39,.08);
    border-radius: 1.35rem;
    overflow: hidden;
    box-shadow: var(--tv8-front-shadow);
}

.tv8-application-card--interactive {
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.tv8-application-card--interactive:hover,
.tv8-application-card--interactive:focus-within {
    transform: translateY(-4px);
    border-color: rgba(17,24,39,.18);
    box-shadow: 0 24px 48px rgba(15,23,42,.12);
}

.tv8-home-card__media {
    min-height: 200px;
    display: flex;
    align-items: end;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(17,24,39,.94), rgba(55,65,81,.94));
    color: #fff;
}

.tv8-home-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tv8-home-card__body,
.tv8-application-card__body {
    padding: 1.35rem;
}

.tv8-home-card__title,
.tv8-application-card__title {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: .45rem;
}

.tv8-home-card__text,
.tv8-application-card__text {
    color: var(--tv8-front-muted);
    margin-bottom: 1rem;
}

.tv8-home-card__footer,
.tv8-application-card__footer {
    padding: 0 1.35rem 1.35rem;
}

.tv8-badge-soft {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: rgba(17,24,39,.08);
    color: var(--tv8-front-primary-dark);
    border-radius: 999px;
    padding: .45rem .75rem;
    font-size: .8rem;
    font-weight: 700;
}

.tv8-filter-bar {
    display: flex;
    flex-direction: column;
    gap: .9rem;
    background: rgba(255,255,255,.9);
    border: 1px solid rgba(17,24,39,.08);
    border-radius: 1.35rem;
    box-shadow: var(--tv8-front-shadow);
    padding: 1rem 1.1rem;
}

.tv8-filter-bar__label {
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--tv8-front-muted);
}

.tv8-filter-bar__items {
    display: flex;
    gap: .75rem;
    overflow-x: auto;
    padding-bottom: .25rem;
}

.tv8-filter-pill {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    white-space: nowrap;
    text-decoration: none;
    color: var(--tv8-front-text);
    background: rgba(248,250,252,.95);
    border: 1px solid rgba(17,24,39,.08);
    border-radius: 999px;
    padding: .75rem 1rem;
    font-weight: 700;
    transition: all .2s ease;
}

.tv8-filter-pill:hover,
.tv8-filter-pill:focus {
    color: var(--tv8-front-primary-dark);
    border-color: rgba(17,24,39,.18);
    background: rgba(243,244,246,.95);
}

.tv8-filter-pill.is-active {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, #111827, #374151);
    box-shadow: 0 14px 28px rgba(17,24,39,.18);
}

.tv8-empty-panel {
    text-align: center;
    padding: 3rem 1.5rem;
    background: rgba(255,255,255,.92);
    border: 1px dashed rgba(148,163,184,.55);
    border-radius: 1.4rem;
    box-shadow: var(--tv8-front-shadow);
}

.tv8-cta-strip {
    background: linear-gradient(135deg, rgba(17,24,39,.98), rgba(55,65,81,.98));
    border-radius: 1.5rem;
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 20px 45px rgba(17,24,39,.18);
}

.tv8-cta-strip .btn-light {
    border-radius: 999px;
    font-weight: 700;
}

.tv8-content-card {
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(17,24,39,.08);
    border-radius: 1.35rem;
    box-shadow: var(--tv8-front-shadow);
    padding: 1.5rem;
}

.tv8-content-card.is-active {
    border-color: rgba(17,24,39,.22);
    box-shadow: 0 20px 45px rgba(15,23,42,.12);
    background: linear-gradient(180deg, rgba(243,244,246,.92), rgba(255,255,255,.98));
}

.tv8-schedule-section + .tv8-schedule-section {
    margin-top: 1.5rem;
}

.tv8-empty-inline {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    color: var(--tv8-front-muted);
    background: rgba(248,250,252,.92);
    border: 1px dashed rgba(148,163,184,.45);
    border-radius: 999px;
    padding: .7rem 1rem;
}

.tv8-cms-content {
    line-height: 1.75;
    color: var(--tv8-front-text);
}

.tv8-cms-content h2,
.tv8-cms-content h3,
.tv8-cms-content h4 {
    margin-top: 1.5rem;
    margin-bottom: .75rem;
    font-weight: 800;
}

.tv8-cms-content p,
.tv8-cms-content li {
    color: #334155;
}

.tv8-contact-meta {
    display: grid;
    gap: .9rem;
}

.tv8-contact-meta__item {
    display: flex;
    gap: .85rem;
    align-items: start;
    background: rgba(243,244,246,.88);
    border: 1px solid rgba(209,213,219,.85);
    border-radius: 1rem;
    padding: 1rem;
}

.tv8-contact-meta__icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e5e7eb;
    color: #111827;
    flex-shrink: 0;
}

.tv8-side-list {
    display: grid;
    gap: .85rem;
}

.tv8-side-list__item {
    display: flex;
    align-items: start;
    gap: .75rem;
    background: rgba(243,244,246,.88);
    border: 1px solid rgba(209,213,219,.85);
    border-radius: 1rem;
    padding: .95rem 1rem;
}

.tv8-side-list__item.is-active {
    border-color: rgba(17,24,39,.18);
    background: rgba(249,250,251,.96);
    box-shadow: inset 0 0 0 1px rgba(17,24,39,.05);
}

.tv8-side-list__icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #111827;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tv8-contract-modal .modal-content {
    border-radius: 1.25rem;
    border: 1px solid rgba(219,229,243,.85);
}

.tv8-auth-grid {
    display: grid;
    gap: 1.5rem;
}

.tv8-auth-card {
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(17,24,39,.08);
    border-radius: 1.5rem;
    box-shadow: var(--tv8-front-shadow);
    overflow: hidden;
}

.tv8-auth-card__body {
    padding: 1.5rem;
}

.tv8-auth-side {
    background: linear-gradient(135deg, rgba(17,24,39,.96), rgba(55,65,81,.96));
    color: #fff;
    padding: 1.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 45px rgba(17,24,39,.18);
}

.tv8-auth-side ul {
    padding-left: 1.1rem;
    margin-bottom: 0;
}

.tv8-auth-side li + li {
    margin-top: .6rem;
}

.tv8-profile-summary {
    display: grid;
    gap: .9rem;
}

.tv8-profile-summary__item {
    border: 1px solid rgba(17,24,39,.08);
    border-radius: 1rem;
    padding: .9rem 1rem;
    background: rgba(255,255,255,.86);
}

.tv8-profile-summary__label {
    color: var(--tv8-front-muted);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    display: block;
    margin-bottom: .3rem;
}

/* ──────────────────────────────────────────────────────────────────
   TV8 Show Card — Ana sayfa yarışma kartları
────────────────────────────────────────────────────────────────── */
.tv8-show-card {
    background: #fff;
    border: 1px solid rgba(219,229,243,.88);
    border-radius: 1.35rem;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(15,23,42,.07);
    display: flex;
    flex-direction: column;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.tv8-show-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(15,23,42,.12);
    border-color: rgba(17,24,39,.18);
}

/* Logo bölümü */
.tv8-show-card__logo {
    width: 100%;
    height: 170px;
    background: #fff;
    border-bottom: 1px solid rgba(219,229,243,.7);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tv8-show-card__logo img {
    max-width: calc(100% - 1.5rem);
    max-height: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform .3s ease;
}

.tv8-show-card:hover .tv8-show-card__logo img {
    transform: scale(1.06);
}

/* Fallback (resim yoksa) */
.tv8-show-card__logo--fallback {
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.tv8-show-card__logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 1.5rem;
    font-weight: 800;
    font-size: 1.05rem;
    gap: .5rem;
}

/* Body */
.tv8-show-card__body {
    padding: .9rem 1rem .6rem;
    flex: 1;
}

.tv8-show-card__title {
    font-size: .92rem;
    font-weight: 800;
    color: var(--tv8-front-text);
    margin-bottom: 0;
    line-height: 1.3;
    text-align: center;
}

.tv8-show-card__subtitle {
    font-size: .85rem;
    color: var(--tv8-front-muted);
    margin-bottom: .65rem;
}

/* Aktif badge */
.tv8-badge-active {
    background: rgba(17,24,39,.08);
    color: #111827;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .78rem;
    font-weight: 700;
    padding: .35rem .7rem;
    border-radius: 999px;
}

.tv8-badge-active .fa-circle-dot {
    font-size: .6rem;
    animation: pulse-dot 1.4s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: .4; }
}

/* Footer */
.tv8-show-card__footer {
    padding: 0 1rem 1rem;
}

.tv8-show-card__footer .btn-primary {
    background: linear-gradient(135deg, #111827, #374151);
    border: 0;
    min-height: 38px;
    font-size: .82rem;
    box-shadow: 0 6px 16px rgba(17,24,39,.16);
    transition: box-shadow .2s ease, transform .15s ease;
}

.tv8-show-card__footer .btn-primary:hover {
    box-shadow: 0 10px 22px rgba(17,24,39,.22);
    transform: translateY(-1px);
}

@media (max-width: 991.98px) {
    .tv8-application-shell {
        padding-top: 1.25rem;
    }

    .tv8-hero-card,
    .tv8-form-card,
    .tv8-side-card {
        padding: 1.2rem;
    }

    .tv8-submit-bar {
        position: static;
    }

    .tv8-footer-shell {
        padding: 1.25rem;
    }

    .tv8-front-navbar__actions {
        margin-left: 0;
        margin-top: .75rem;
    }

    .tv8-front-navbar__member-btn {
        width: 100%;
        justify-content: center;
    }

    .tv8-cookie-banner__inner {
        grid-template-columns: 1fr;
        align-items: flex-start;
    }

    .tv8-cookie-banner__actions {
        width: 100%;
        justify-content: flex-start;
    }
}

/* ──────────────────────────────────────────────────────────────────
   Başvuru Formu — modern Bootstrap 5 tabanlı (basvuru.twig inline CSS)
   Not: Alan bazlı stiller basvuru.twig içindeki <style> bloğunda
────────────────────────────────────────────────────────────────── */

/* Ana sayfa show kartlarındaki butonları daha temiz yap */
.tv8-show-card__footer .btn {
    border-radius: 4px;
    font-size: .82rem;
    padding: .4rem .75rem;
}

.tv8-show-card__footer .btn-primary {
    background: #111827 !important;
    border-color: #111827 !important;
    box-shadow: none;
}

.tv8-show-card__footer .btn-primary:hover,
.tv8-show-card__footer .btn-primary:focus {
    background: #374151 !important;
    border-color: #374151 !important;
    box-shadow: none;
    transform: none;
}

.tv8-show-card__footer .btn-outline-primary {
    color: #111827 !important;
    border-color: #111827 !important;
}

.tv8-show-card__footer .btn-outline-primary:hover,
.tv8-show-card__footer .btn-outline-primary:focus {
    background: #111827 !important;
    color: #fff !important;
}

.tv8-show-card__footer .btn-outline-secondary {
    border-radius: 4px;
    font-size: .78rem;
}

/* Navbar aktif başvuru butonu */
.tv8-front-navbar .btn-danger,
.btn-tv8 {
    background: #111827;
    border-color: #111827;
}

/* Breadcrumb düzenlemesi */
.breadcrumb {
    background: rgba(255,255,255,.9);
    border: 1px solid rgba(209,213,219,.7);
    border-radius: .5rem;
    padding: .5rem 1rem;
    font-size: .9rem;
}
