/* Notification system */
.site-notification-container {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 10050;
    width: min(360px, calc(100vw - 24px));
}

.site-notification {
    position: relative;
    background: linear-gradient(145deg, #2a0f0f, #1a0c0c);
    border: 1px solid rgba(255, 82, 82, 0.35);
    color: #ffeaea;
    border-radius: 14px;
    padding: 14px 40px 14px 14px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.35s ease, transform 0.35s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-notification.show {
    opacity: 1;
    transform: translateY(0);
}

.site-notification.hide {
    opacity: 0;
    transform: translateY(16px);
}

.site-notification:hover {
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.52);
    border-color: rgba(255, 110, 110, 0.55);
}

.site-notification .notification-title {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.2px;
    color: #ff8b8b;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.site-notification .notification-message {
    font-size: 14px;
    line-height: 1.45;
    font-weight: 600;
    color: #fff5f5;
    word-break: break-word;
}

.site-notification .notification-close {
    position: absolute;
    top: 9px;
    right: 9px;
    width: 24px;
    height: 24px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
}

.site-notification .notification-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 576px) {
    .site-notification-container {
        right: 12px;
        left: 12px;
        bottom: 12px;
        width: auto;
    }

    .site-notification {
        padding: 12px 36px 12px 12px;
    }
}
/* Siyah Şık Tema */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --accent: #00d4ff;
    --accent-hover: #00b8e6;
    --border-color: #333333;
}

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

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
}

/* Ana sayfada kırmızı-gri atmosfer (genel zemin) */
body.home-page {
    background:
        radial-gradient(circle at 10% 15%, rgba(180, 40, 40, 0.14), transparent 34%),
        radial-gradient(circle at 85% 25%, rgba(130, 24, 24, 0.12), transparent 36%),
        repeating-linear-gradient(
            -35deg,
            rgba(255, 80, 80, 0.045) 0px,
            rgba(255, 80, 80, 0.045) 14px,
            rgba(10, 10, 10, 0.0) 14px,
            rgba(10, 10, 10, 0.0) 34px
        ),
        linear-gradient(180deg, #121010 0%, #0b0b0c 45%, #121417 100%);
    background:
        radial-gradient(circle at 10% 15%, color-mix(in srgb, var(--home-ac-page-tint, #B42828) 26%, transparent), transparent 34%),
        radial-gradient(circle at 85% 25%, color-mix(in srgb, var(--home-ac-page-tint, #B42828) 20%, #000 80%), transparent 36%),
        repeating-linear-gradient(
            -35deg,
            color-mix(in srgb, var(--home-ac-page-tint, #B42828) 18%, transparent) 0px,
            color-mix(in srgb, var(--home-ac-page-tint, #B42828) 18%, transparent) 14px,
            rgba(10, 10, 10, 0.0) 14px,
            rgba(10, 10, 10, 0.0) 34px
        ),
        linear-gradient(180deg, #121010 0%, #0b0b0c 45%, #121417 100%);
    background-attachment: fixed;
}

/* Navbar */
.navbar-dark {
    background-color: var(--bg-secondary) !important;
    border-bottom: 1px solid var(--border-color);
}

.navbar-brand, .nav-link {
    color: var(--text-primary) !important;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--accent) !important;
}

/* Container */
.container {
    padding: 8px 5px;
    max-width: 100%;
    margin: 0 auto;
}

@media (min-width: 769px) {
    .container {
        max-width: 600px;
        padding: 10px 20px;
        margin: 0 auto;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 800px;
        padding: 15px 30px;
        margin: 0 auto;
    }
}

/* Banner Section */
.banner-section {
    margin: 10px 0;
}

.banner-group {
    margin-bottom: 10px;
}

@media (min-width: 769px) {
    .banner-section {
        margin: 6px 0;
    }
    
    .banner-group {
        margin-bottom: 6px;
    }
}

@media (min-width: 1200px) {
    .banner-section {
        margin: 8px 0;
    }
    
    .banner-group {
        margin-bottom: 8px;
    }
}

.banner-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

@media (min-width: 769px) {
    .banner-grid {
        grid-template-columns: 1fr;
        gap: 8px;
        max-width: 100%;
    }
}

@media (min-width: 1200px) {
    .banner-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        max-width: 100%;
    }
}

.banner-item {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

@media (min-width: 769px) {
    .banner-item {
        max-width: 100%;
        width: 100%;
    }
    
    .banner-item img {
        max-height: none;
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}

@media (min-width: 1200px) {
    .banner-item img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}

.banner-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 212, 255, 0.25);
}

.banner-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Bonus Cards Section */
.bonus-section {
    margin: 10px 0;
    padding: 0;
}

@media (min-width: 769px) {
    .bonus-section {
        margin: 6px 0;
    }
}

@media (min-width: 1200px) {
    .bonus-section {
        margin: 8px 0;
    }
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

@media (min-width: 769px) {
    .bonus-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
        max-width: 100%;
        justify-items: center;
    }
}

@media (min-width: 1200px) {
    .bonus-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
        max-width: 100%;
        justify-items: center;
    }
}

.bonus-card {
    width: 100%;
    height: auto;
    aspect-ratio: 150 / 195;
    margin: 0;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    background: var(--bg-secondary);
    min-height: 0;
}

@media (min-width: 769px) {
    .bonus-card {
        width: 100%;
        max-width: 100%;
        aspect-ratio: 150 / 195;
        height: auto;
    }
    
    .bonus-card img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

@media (min-width: 1200px) {
    .bonus-card {
        width: 100%;
        max-width: 100%;
    }
}

.bonus-card:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 8px rgba(0, 212, 255, 0.3);
}

/* 4 veya daha az bonus kart varsa daha büyük göster */
.bonus-section--few-cards .bonus-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.bonus-section--few-cards .bonus-card {
    max-width: 320px;
    margin: 0 auto;
}

@media (min-width: 769px) {
    .bonus-section--few-cards .bonus-grid {
        gap: 16px;
    }
}

@media (min-width: 1200px) {
    .bonus-section--few-cards .bonus-grid {
        gap: 20px;
        max-width: 1000px;
    }
    
    .bonus-section--few-cards .bonus-card {
        max-width: 360px;
    }
}

.bonus-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Mobil için bonus kartları - 5 sütun (tüm mobil cihazlarda) */
@media (max-width: 768px) {
    .container {
        padding: 10px 8px;
    }
    
    .banner-group {
        margin-bottom: 15px;
    }
    
    .bonus-section {
        margin: 15px 0;
    }
    
    .banner-grid {
        gap: 8px;
    }
    
    .bonus-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 6px;
        padding: 0;
        max-width: 100%;
    }
    
    .bonus-section--few-cards .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        max-width: 85%;
    }
    
    .bonus-section--few-cards .bonus-card {
        max-width: 140px;
    }
    
    .bonus-card {
        width: 100%;
        height: auto;
        aspect-ratio: 150 / 195;
        min-height: 0;
    }
    
    .bonus-card img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

/* Çok küçük ekranlar için de 5 sütun (mobilde her zaman 5 sütun) */
@media (max-width: 480px) {
    .bonus-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 4px;
    }
    
    .bonus-section--few-cards .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .container {
        padding: 8px 5px;
    }
}

/* Admin Panel Styles */
.admin-container {
    background-color: var(--bg-secondary);
    min-height: calc(100vh - 56px);
    padding: 30px 0;
}

.admin-card {
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.admin-card:hover {
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.2);
}

.admin-card h3 {
    color: var(--accent);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

/* Quick Cards */
.quick-card {
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
}

.quick-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 212, 255, 0.3);
}

.quick-card-link {
    text-decoration: none;
    color: inherit;
}

.quick-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.quick-card-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.quick-card h2 {
    font-size: 2rem;
    font-weight: bold;
    margin: 10px 0;
    color: var(--text-primary);
}

.quick-card .text-accent {
    color: var(--accent);
    font-weight: 600;
}

.gap-2 {
    gap: 0.5rem;
}

.form-control, .form-select {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.form-control:focus, .form-select:focus {
    background-color: var(--bg-secondary);
    border-color: var(--accent);
    color: var(--text-primary);
    box-shadow: 0 0 0 0.2rem rgba(0, 212, 255, 0.25);
}

.btn-primary {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--bg-primary);
    font-weight: 600;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
}

.btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
}

.table-dark {
    background-color: var(--bg-tertiary);
    color: var(--text-primary);
}

.table-dark th {
    border-color: var(--border-color);
    color: var(--accent);
}

.table-dark td {
    border-color: var(--border-color);
}

/* Login Page */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.login-card {
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 40px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.login-card h2 {
    color: var(--accent);
    text-align: center;
    margin-bottom: 30px;
}

/* Upload Area */
.upload-area {
    border: 2px dashed var(--border-color);
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    background-color: var(--bg-secondary);
    transition: border-color 0.3s;
    cursor: pointer;
}

.upload-area:hover {
    border-color: var(--accent);
}

.upload-area.dragover {
    border-color: var(--accent);
    background-color: var(--bg-tertiary);
}

/* Sortable */
.sortable-item {
    cursor: move;
    margin-bottom: 10px;
}

.sortable-item:hover {
    opacity: 0.8;
}

/* Image Gallery */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-item-info {
    padding: 10px;
    background: var(--bg-tertiary);
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Responsive - Tablet ve küçük ekranlar */
@media (max-width: 992px) and (min-width: 769px) {
    .bonus-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 4px;
    }
    
    .container {
        padding: 8px 5px;
    }
}

/* Responsive - Admin paneli mobil */
@media (max-width: 768px) {
    .admin-card {
        padding: 15px;
    }
    
    .quick-card-icon {
        font-size: 2rem;
    }
    
    .quick-card h2 {
        font-size: 1.5rem;
    }
}

/* Loading Spinner */
.spinner-border {
    color: var(--accent);
}

/* Alert */
.alert {
    border-radius: 8px;
    border: none;
}

.alert-success {
    background-color: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border-left: 4px solid #28a745;
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.2);
    color: #dc3545;
    border-left: 4px solid #dc3545;
}

.alert-info {
    background-color: rgba(0, 212, 255, 0.2);
    color: var(--accent);
    border-left: 4px solid var(--accent);
}

/* 3. Grup Şablon Stilleri */
.template-section {
    margin: 20px 0;
}

.template-container {
    position: relative;
    width: 100%;
    max-width: 1680px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
}

.template-background {
    width: 100%;
    height: auto;
    display: block;
}

.template-bonus-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
    gap: 10px;
    padding: 20px;
    box-sizing: border-box;
    pointer-events: none;
}

.template-bonus-card {
    width: 150px;
    height: 195px;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    padding: 5px;
    backdrop-filter: blur(2px);
    pointer-events: auto;
}

.template-bonus-card:hover {
    transform: scale(1.05);
    background: rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.template-bonus-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 4px;
    background: rgba(26, 26, 26, 0.8);
}

@media (max-width: 768px) {
    .template-bonus-overlay {
        gap: 5px;
        padding: 10px;
    }
    
    .template-bonus-card {
        width: 120px !important;
        height: 156px !important;
    }
    
    .bonus-section--few-cards.template-section .template-bonus-card {
        width: 160px !important;
        height: 208px !important;
    }
}

/* 4 veya daha az bonus kart – şablon modunda daha büyük kartlar */
.bonus-section--few-cards.template-section .template-bonus-card {
    width: 200px;
    height: 260px;
}

.bonus-section--few-cards.template-section .template-bonus-overlay {
    gap: 16px;
    padding: 24px;
}

/* Anasayfa SSS (yönetim panelinden) */
.home-sss {
    background: linear-gradient(180deg, rgba(18, 18, 18, 0.72) 0%, rgba(17, 17, 17, 0.66) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: #f2f2f2;
}

.home-sss-title {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    margin: 0 0 1rem;
    color: #fff;
}

.home-sss-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.home-sss-item {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(26, 26, 26, 0.85);
    overflow: hidden;
}

.home-sss-summary {
    list-style: none;
    cursor: pointer;
    padding: 14px 16px;
    font-weight: 700;
    font-size: 0.95rem;
    color: #ffe4e4;
    position: relative;
    padding-right: 40px;
}

.home-sss-summary::-webkit-details-marker {
    display: none;
}

.home-sss-summary::after {
    content: "+";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.55);
    transition: transform 0.2s ease, color 0.2s ease;
}

.home-sss-item[open] .home-sss-summary::after {
    content: "−";
    color: #ff8b8b;
}

.home-sss-body {
    padding: 0 16px 16px;
    font-size: 0.92rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 12px;
    margin-top: 0;
}

@media (max-width: 576px) {
    .home-sss-summary {
        font-size: 0.9rem;
        padding: 12px 38px 12px 12px;
    }
}

/* Anasayfa — Milyonerler kayan kartlar */
.home-millionaires {
    background: linear-gradient(180deg, rgba(16, 16, 16, 0.55) 0%, rgba(14, 14, 14, 0.52) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.home-millionaires-title {
    margin: 0 0 12px;
    color: #fff;
    font-weight: 900;
    font-size: 1.28rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.home-millionaires-slider {
    overflow: hidden;
    position: relative;
}
.home-millionaires-track {
    display: flex;
    gap: 14px;
    width: max-content;
    will-change: transform;
    animation: milMarquee var(--mil-marquee-duration, 28s) linear infinite;
}
.home-millionaires-slider:hover .home-millionaires-track {
    animation-play-state: paused;
}
@keyframes milMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.home-millionaire-card {
    width: calc((100vw - 72px) / 3);
    max-width: 250px;
    min-width: 180px;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(180deg, #192235 0%, #0f1626 45%, #091223 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.home-millionaire-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.52);
}
.home-millionaire-card__image-wrap {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}
.home-millionaire-card__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.home-millionaire-card__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 10px 10px 12px;
    background: linear-gradient(180deg, rgba(8, 16, 34, 0.86) 0%, rgba(6, 12, 24, 0.96) 100%);
}
.home-millionaire-card__name {
    font-size: 0.92rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-align: center;
}
.home-millionaire-card__amount {
    font-size: 1.75rem;
    font-weight: 900;
    line-height: 1.05;
    color: #fff;
}
.home-millionaire-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 8px;
    padding: 8px 10px;
    width: 100%;
    color: #fff;
    background: linear-gradient(180deg, #ef1746 0%, #c90f38 100%);
}

@media (max-width: 768px) {
    .home-millionaire-card {
        width: calc((100vw - 46px) / 3);
        min-width: 138px;
    }
    .home-millionaire-card__amount {
        font-size: 1.25rem;
    }
    .home-millionaire-card__name {
        font-size: 0.75rem;
    }
    .home-millionaire-card__btn {
        font-size: 0.66rem;
        padding: 7px 8px;
    }
}

/* Ana sayfa — Blog kartları */
.home-blog {
    background: linear-gradient(180deg, rgba(17, 17, 19, 0.72) 0%, rgba(12, 12, 14, 0.88) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.home-blog__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}
.home-blog__title {
    margin: 0;
    color: #fff;
    font-weight: 900;
    font-size: 1.24rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.home-blog__all {
    color: #ff9ea9;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
}
.home-blog__all:hover {
    text-decoration: underline;
    color: #ffd3d8;
}
.home-blog__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.home-blog-card {
    background: linear-gradient(180deg, #141a24 0%, #0c1018 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    min-height: 210px;
}
.home-blog-card__image {
    width: 100%;
    max-height: 170px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.home-blog-card__title {
    margin: 0 0 8px;
    font-size: 1rem;
    line-height: 1.35;
}
.home-blog-card__title a {
    color: #f8fbff;
    text-decoration: none;
}
.home-blog-card__title a:hover {
    color: #ffd8dd;
}
.home-blog-card__meta {
    font-size: 0.78rem;
    color: #9bb5d0;
    margin-bottom: 6px;
}
.home-blog-card__keywords {
    display: inline-block;
    font-size: 0.72rem;
    color: #ffc8ce;
    background: rgba(239, 23, 70, 0.2);
    border: 1px solid rgba(239, 23, 70, 0.35);
    border-radius: 999px;
    padding: 3px 8px;
    margin-bottom: 8px;
}
.home-blog-card__excerpt {
    color: #d5e0ee;
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 12px;
    flex: 1;
}
.home-blog-card__read {
    align-self: flex-start;
    text-decoration: none;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: linear-gradient(180deg, #ef1746 0%, #b01032 100%);
    border-radius: 8px;
    padding: 8px 12px;
}
.home-blog-card__read:hover {
    color: #fff;
    filter: brightness(1.08);
}
@media (max-width: 992px) {
    .home-blog__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 768px) {
    .home-blog__grid {
        grid-template-columns: 1fr;
    }
}

/* Blog sayfası */
.site-blog-page {
    background: #0b0d12;
    min-height: calc(100vh - 140px);
}
.site-blog-page__title {
    color: #fff;
    margin: 0 0 6px;
    font-weight: 900;
    letter-spacing: 0.04em;
}
.site-blog-page__subtitle {
    color: #a8bad0;
}
.blog-banner-zone {
    display: grid;
    gap: 10px;
    width: 100%;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}
.blog-banner-item {
    display: block;
    width: 100%;
    max-width: 100%;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.12);
    background: #0f141d;
    text-decoration: none;
    box-sizing: border-box;
}
.blog-banner-item img {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 12 / 2;
    max-height: 118px;
    object-fit: contain;
    background: #0b0d12;
    display: block;
}
@media (max-width: 768px) {
    .blog-banner-zone {
        max-width: 100%;
    }
    .blog-banner-item img {
        aspect-ratio: 11 / 2.2;
        max-height: 84px;
        object-fit: contain;
    }
}
.site-blog-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}
.site-blog-card {
    background: linear-gradient(180deg, #131925 0%, #0c1018 100%);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 12px;
    padding: 14px;
}
.site-blog-card__image {
    width: 100%;
    max-height: 220px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.site-blog-card__title {
    margin: 0 0 6px;
    font-size: 1.15rem;
}
.site-blog-card__title a {
    color: #f7fbff;
    text-decoration: none;
}
.site-blog-card__meta {
    color: #9bb5d0;
    font-size: 0.82rem;
    margin-bottom: 6px;
}
.site-blog-card__keywords {
    color: #ffc8ce;
    font-size: 0.78rem;
    margin-bottom: 8px;
}
.site-blog-card__excerpt {
    color: #d8e4f2;
    line-height: 1.6;
    margin-bottom: 10px;
}
.site-blog-card__read {
    color: #ff9ea9;
    text-decoration: none;
    font-weight: 700;
}
.site-blog-card__read:hover {
    text-decoration: underline;
}
.site-blog-article {
    background: linear-gradient(180deg, #131925 0%, #0c1018 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
}
.site-blog-back {
    color: #ff9ea9;
    text-decoration: none;
}
.site-blog-article__title {
    color: #fff;
    margin: 0 0 8px;
}
.site-blog-article__meta {
    color: #9bb5d0;
    font-size: 0.85rem;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.site-blog-article__keywords {
    color: #ffc8ce;
}
.site-blog-article__content {
    color: #d8e4f2;
    line-height: 1.75;
    font-size: 0.96rem;
}
.site-blog-article__image-wrap {
    margin-top: 14px;
}
.site-blog-article__image {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.site-blog-article__backlink-wrap {
    margin-top: 12px;
}
.site-blog-article__backlink {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    background: linear-gradient(180deg, #ef1746 0%, #b01032 100%);
}
.site-blog-article__backlink:hover {
    color: #fff;
    filter: brightness(1.08);
}
.site-blog-more__title {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.site-blog-more__list {
    display: grid;
    gap: 10px;
}
.site-blog-more__item {
    display: block;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 10px;
    padding: 10px;
    text-decoration: none;
}
.site-blog-more__item strong {
    display: block;
    color: #fff;
    margin-bottom: 4px;
}
.site-blog-more__item span {
    color: #b9cadd;
    font-size: 0.88rem;
}

/* Milyonerler — site içi yayın penceresi (iframe) */
.mil-embed-modal {
    position: fixed;
    inset: 0;
    z-index: 11050;
    display: none;
    align-items: center;
    justify-content: center;
    padding: max(12px, env(safe-area-inset-top)) max(12px, env(safe-area-inset-right)) max(12px, env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
    box-sizing: border-box;
}
.mil-embed-modal.is-open {
    display: flex;
}
.mil-embed-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    cursor: pointer;
}
.mil-embed-modal__box {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: min(980px, 96vw);
    max-height: min(92vh, 900px);
    background: #050508;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(239, 23, 70, 0.15);
}
.mil-embed-modal__cta {
    display: block;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    padding: 14px 52px 14px 12px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-weight: 900;
    font-size: clamp(0.55rem, 2.2vw, 0.82rem);
    line-height: 1.3;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: linear-gradient(90deg, #4a040c 0%, #9a0a22 22%, #ef1746 50%, #9a0a22 78%, #4a040c 100%);
    background-size: 280% 100%;
    border-bottom: 2px solid rgba(255, 215, 0, 0.55);
    animation: milCtaBlink 1.1s ease-in-out infinite, milCtaBgSlide 2.8s linear infinite;
    text-shadow:
        0 0 12px rgba(0, 0, 0, 0.95),
        0 2px 4px rgba(0, 0, 0, 0.85),
        0 0 20px rgba(239, 23, 70, 0.45);
    cursor: pointer;
}
.mil-embed-modal__cta:hover {
    filter: brightness(1.12);
    color: #fff;
}
.mil-embed-modal__cta:active {
    filter: brightness(0.95);
}
.mil-embed-modal__cta-text {
    display: block;
}
@keyframes milCtaBlink {
    0%,
    100% {
        opacity: 1;
        filter: brightness(1);
    }
    50% {
        opacity: 0.9;
        filter: brightness(1.28);
    }
}
@keyframes milCtaBgSlide {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}
@media (prefers-reduced-motion: reduce) {
    .mil-embed-modal__cta {
        animation: none;
    }
}
.mil-embed-modal__frame-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    flex-shrink: 0;
    background: #000;
    min-height: 180px;
}
.mil-embed-modal__iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    background: #000;
}
.mil-embed-modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 5;
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    background: linear-gradient(180deg, #2a2f3a 0%, #151922 100%);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.12s ease;
}
.mil-embed-modal__close:hover {
    background: linear-gradient(180deg, #ef1746 0%, #b00d2e 100%);
    border-color: rgba(255, 255, 255, 0.35);
}
.mil-embed-modal__close:active {
    transform: scale(0.96);
}
.mil-embed-modal__footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px 18px;
    padding: 12px 14px 14px;
    background: linear-gradient(180deg, #12151c 0%, #0a0c10 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.mil-embed-modal__logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    max-width: min(200px, 42vw);
    text-decoration: none;
    line-height: 0;
}
.mil-embed-modal__logo {
    display: block;
    max-width: 100%;
    max-height: 36px;
    width: auto;
    height: auto;
    object-fit: contain;
}
.mil-embed-modal__footer-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    min-width: 160px;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 900;
    font-size: clamp(0.72rem, 2.2vw, 0.88rem);
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(180deg, #ef1746 0%, #a60d2a 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
    transition: filter 0.15s ease, transform 0.12s ease;
}
.mil-embed-modal__footer-login:hover {
    filter: brightness(1.08);
    color: #fff;
}
.mil-embed-modal__footer-login:active {
    transform: scale(0.98);
}

/* Admin’den gönderilen anlık üst duyuru (sitede açık ziyaretçiler) */
.site-live-broadcast-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10060;
    padding: 12px 16px;
    background: linear-gradient(135deg, #1a0a0a 0%, #3d0808 45%, #7a0e0e 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-live-broadcast-bar--visible {
    transform: translateY(0);
    opacity: 1;
}

.site-live-broadcast-bar__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 16px;
    position: relative;
    padding-right: 36px;
}

.site-live-broadcast-bar__close {
    position: absolute;
    top: 0;
    right: 0;
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.25);
    color: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.site-live-broadcast-bar__close:hover {
    background: rgba(0, 0, 0, 0.4);
}

.site-live-broadcast-bar__text {
    flex: 1 1 220px;
    min-width: 0;
    color: #fff5f5;
}

.site-live-broadcast-bar__title {
    font-weight: 800;
    font-size: 1.05rem;
    margin-bottom: 4px;
    color: #fff;
}

.site-live-broadcast-bar__body {
    font-size: 0.95rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.92);
}

.site-live-broadcast-bar__btn {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    color: #1a0505 !important;
    background: linear-gradient(180deg, #ffe566 0%, #ffc107 100%);
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.site-live-broadcast-bar__btn:hover {
    filter: brightness(1.06);
    color: #1a0505 !important;
}

@media (max-width: 576px) {
    .site-live-broadcast-bar__inner {
        padding-right: 0;
        padding-top: 28px;
    }
    .site-live-broadcast-bar__close {
        top: -4px;
        right: -4px;
    }
    .site-live-broadcast-bar__btn {
        width: 100%;
        justify-content: center;
    }
}

/* Web Push — Sinyal CTA (site bildirim çubuğundan bağımsız) */
.push-signal-cta-root {
    position: fixed;
    left: 16px;
    bottom: 16px;
    z-index: 10040;
    max-width: min(320px, calc(100vw - 32px));
}

.push-signal-cta-panel {
    background: linear-gradient(145deg, #121a24, #0d1118);
    border: 1px solid rgba(74, 158, 255, 0.35);
    border-radius: 12px;
    padding: 12px 14px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

.push-signal-cta-title {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 8px;
}

.push-signal-cta-status {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.35;
}

/* Ana sayfa — üst bar (Altay tarzı: koyu zemin, sol marka + rozet, sağda sponsor / hakkımda / iletişim) */
.home-site-header {
    position: sticky;
    top: 0;
    z-index: 9000;
    background: linear-gradient(180deg, #0c0c0d 0%, #060606 100%);
    border-bottom: 1px solid rgba(180, 50, 50, 0.45);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.04) inset,
        0 8px 28px rgba(0, 0, 0, 0.55);
}
.home-site-header__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px 20px;
    padding: 14px 0 15px;
}
.home-site-brand-wrap {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
}
.home-site-brand-wrap:hover .home-site-brand-text {
    color: #ffc9c9;
}
.home-site-logo {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 2px 10px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 80, 80, 0.35);
}
.home-site-logo--letter {
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    color: #fff;
    background: linear-gradient(145deg, #d32f2f 0%, #6d0a0a 55%, #3a0505 100%);
}
.home-site-logo--img {
    padding: 0;
    overflow: hidden;
    background: #1a0a0a;
}
.home-site-logo--img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.home-site-brand-text {
    color: #fafafa;
    transition: color 0.2s ease;
    display: inline-flex;
    flex-direction: column;
    gap: 2px;
}
.home-site-brand-title {
    margin: 0;
    font-weight: 800;
    font-size: 1.12rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: inherit;
    line-height: 1.15;
}
.home-site-brand-subtitle {
    margin: 0;
    font-weight: 600;
    font-size: 0.62rem;
    letter-spacing: 0.04em;
    text-transform: lowercase;
    color: #d2cdc4;
    line-height: 1.1;
}
.home-site-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 8px;
    align-items: center;
    justify-content: flex-end;
}
.home-site-nav__link {
    color: var(--home-ac-nav-link, #B8A078);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.98rem;
    padding: 8px 14px;
    border-radius: 999px;
    transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.home-site-nav__link:hover {
    color: #fff5e6;
    background: rgba(180, 40, 40, 0.35);
    background: color-mix(in srgb, var(--home-ac-nav-hover-bg, #7A1E1E) 70%, transparent);
    box-shadow: 0 0 0 1px rgba(255, 120, 100, 0.25);
}

.scroll-target {
    scroll-margin-top: 88px;
}

#sponsorlar.scroll-target {
    scroll-margin-top: 88px;
}

/* Hakkımda / İletişim — kırmızı–gri premium bloklar */
.home-about-contact {
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(120, 20, 20, 0.24), transparent 55%),
        linear-gradient(180deg, rgba(20, 17, 17, 0.76) 0%, rgba(14, 12, 12, 0.66) 42%, rgba(18, 20, 24, 0.70) 100%);
    border-top: 1px solid rgba(120, 72, 72, 0.38);
    color: #e4e1dc;
}
.home-ac-bgfx {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 12% 30%, rgba(255, 60, 60, 0.07), transparent 38%),
        radial-gradient(circle at 88% 70%, rgba(255, 100, 80, 0.06), transparent 40%);
    opacity: 1;
}
.home-ac-inner {
    max-width: 920px;
    margin: 0 auto;
}
.home-ac-block {
    margin-bottom: 2.75rem;
}
.home-ac-block:last-of-type {
    margin-bottom: 1.75rem;
}
.home-ac-panel {
    position: relative;
    padding: 1.75rem 1.5rem 1.85rem;
    border-radius: 18px;
    background: linear-gradient(160deg, rgba(38, 28, 28, 0.92) 0%, rgba(18, 16, 16, 0.96) 100%);
    border: 1px solid rgba(255, 90, 90, 0.14);
    box-shadow:
        0 18px 48px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
}
.home-ac-panel--contact {
    background: linear-gradient(165deg, rgba(28, 30, 34, 0.95) 0%, rgba(16, 14, 15, 0.97) 100%);
    border-color: rgba(120, 120, 130, 0.35);
}
.home-ac-title {
    margin: 0 0 1rem;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #f5f2ed;
}
.home-ac-title__text {
    display: inline-block;
    padding-bottom: 0.35rem;
    border-bottom: 3px solid var(--home-ac-title-underline, #C62828);
    box-shadow: 0 4px 0 -1px rgba(198, 40, 40, 0.25);
    box-shadow: 0 4px 0 -1px color-mix(in srgb, var(--home-ac-title-underline, #C62828) 35%, transparent);
}
.home-ac-panel--contact .home-ac-title__text {
    border-bottom-color: var(--home-ac-contact-underline, #8D6E63);
    box-shadow: 0 4px 0 -1px rgba(141, 110, 99, 0.3);
    box-shadow: 0 4px 0 -1px color-mix(in srgb, var(--home-ac-contact-underline, #8D6E63) 40%, transparent);
}
.home-ac-lead {
    font-size: 1.2rem;
    line-height: 1.55;
    color: #c4bfb8;
    margin-bottom: 1.2rem;
    font-weight: 500;
}
.home-ac-intro {
    color: #b5b0a8;
    line-height: 1.6;
    margin-bottom: 1.1rem;
    font-size: 1rem;
}
.home-ac-body {
    line-height: 1.7;
    color: #dcd7d0;
    margin-bottom: 1rem;
    font-size: 0.98rem;
}
.home-ac-subcard {
    margin-top: 1.15rem;
    padding: 1.1rem 1.2rem;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 120, 100, 0.12);
    border-left: 4px solid #b71c1c;
}
.home-ac-panel--contact .home-ac-subcard {
    border-left-color: #6d4c41;
}
.home-ac-subtitle {
    font-size: 1.02rem;
    font-weight: 700;
    color: #ffab91;
    margin-bottom: 0.45rem;
}
.home-ac-panel--contact .home-ac-subtitle.home-ac-muted {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #9e9a93;
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-weight: 600;
}
.home-ac-muted {
    color: #9e9a93;
}
.home-ac-contact-list {
    margin-top: 0.35rem;
}
.home-ac-contact-item {
    padding: 12px 14px;
    margin-bottom: 10px;
    border-radius: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-left: 3px solid rgba(198, 40, 40, 0.65);
}
.home-ac-contact-item:last-child {
    margin-bottom: 0;
}
.home-ac-ci-label {
    min-width: 110px;
    color: #ffccbc;
    font-size: 0.92rem;
}
.home-ac-ci-link {
    color: var(--home-ac-contact-link, #FF8A65);
    text-decoration: none;
    font-weight: 600;
    word-break: break-word;
    transition: color 0.2s ease;
}
.home-ac-ci-link:hover {
    color: #ffd180;
    text-decoration: underline;
}
.home-ac-ci-line {
    color: #e0dbd4;
}
.home-ac-footer-note {
    margin-top: 0.5rem;
    padding: 1rem 1.25rem;
    border-radius: 14px;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
    color: #b0aba5;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.home-footer-center {
    padding: 8px 0 16px;
}
.home-footer-center__inner {
    max-width: 680px;
    margin: 0 auto;
    padding: 12px 14px;
    border-radius: 14px;
    text-align: center;
    background: rgba(0, 0, 0, 0.34);
    border: 1px solid rgba(255, 255, 255, 0.07);
}
.home-footer-center__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px 22px;
    flex-wrap: wrap;
}
.home-footer-center__logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    transition: transform 0.16s ease, background-color 0.16s ease;
}
.home-footer-center__logo-link:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.06);
}
.home-footer-center__logo {
    max-width: 170px;
    max-height: 46px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}
.home-footer-center__text {
    margin-top: 10px;
    font-size: 0.92rem;
    line-height: 1.5;
    color: #cbc6be;
}


@media (max-width: 576px) {
    .home-site-header {
        border-bottom-color: rgba(180, 140, 80, 0.35);
    }
    .home-site-header__inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px 10px;
        padding: 8px 0 10px;
    }
    .home-site-brand-wrap {
        justify-content: center;
        gap: 8px;
    }
    .home-site-logo {
        width: 34px;
        height: 34px;
        border-radius: 9px;
    }
    .home-site-brand-text {
        align-items: center;
        text-align: center;
        gap: 1px;
    }
    .home-site-brand-title {
        font-size: 1.95rem;
        letter-spacing: 0.08em;
        line-height: 1;
    }
    .home-site-brand-subtitle {
        font-size: 0.58rem;
        letter-spacing: 0.03em;
    }
    .home-site-nav {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 6px 10px;
        margin-top: 4px;
    }
    .home-site-nav__link {
        padding: 4px 8px;
        font-size: 0.74rem;
        letter-spacing: 0.01em;
    }
    .home-ac-panel {
        padding: 1.35rem 1.1rem;
    }
    .home-ac-title {
        font-size: 1.15rem;
    }
    .home-footer-center__inner {
        max-width: 100%;
        padding: 10px 12px;
    }
    .home-footer-center__logos {
        gap: 8px 12px;
    }
    .home-footer-center__logo {
        max-width: 140px;
        max-height: 40px;
    }
    .home-footer-center__text {
        font-size: 0.86rem;
    }
}

