/**
 * Pars Portal - Ana Stil Dosyası
 * Premium Arayüz ve Mikro Etkileşimler
 */

@import url('variables.css');
@import url('dark-mode.css');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700;900&family=Fira+Code:wght@500;700&family=Oswald:wght@500;700&family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Syne:wght@700;800&family=Montserrat:wght@800;900&display=swap');

/* 1. SIFIRLAMA VE TEMEL ÖĞELER */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    transition: background-color var(--transition-normal), color var(--transition-normal);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: var(--font-primary);
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
}

/* Boşluk Sınıfları */
.pars-mt {
    margin-top: 40px;
}

/* Konteyner Genişliği */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
}

/* 2. HEADER VE NAVİGASYON */
.arse-header-news {
    background-color: var(--primary);
    color: var(--text-on-primary);
    font-size: 13px;
    font-weight: 500;
    padding: 8px 0;
    overflow: hidden;
}

.arse-news-wrapper {
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 100%;
}

.arse-news-title {
    flex-shrink: 0;
    position: relative;
    z-index: 10;
    background-color: var(--primary);
    padding-right: 15px;
    font-size: 16px;
    animation: flash 1.5s infinite;
}

.arse-news-container {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.arse-news {
    list-style: none;
    display: flex;
    gap: 30px;
    animation: marquee-news 25s linear infinite;
    white-space: nowrap;
}

.arse-news a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

@keyframes marquee-news {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

header {
    background-color: var(--bg-header);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
    transition: background-color var(--transition-normal);
}

.wrapper-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-header {
    display: block;
    max-width: 240px;
}

.logo-header img {
    height: 58px;
    width: auto;
    object-fit: contain;
    transition: transform var(--transition-normal);
}

.logo-header:hover img {
    transform: scale(1.03);
}

.box-nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.menu-item {
    font-size: 15px;
    font-weight: 500;
    position: relative;
    padding: 10px 0;
}

.menu-item .item-link {
    display: flex;
    align-items: center;
    gap: 6px;
}

.menu-item .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 12px;
    min-width: 180px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 99;
}

.menu-item:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.sub-menu-item {
    padding: 8px 12px;
    font-size: 14px;
    border-radius: var(--radius-sm);
}

.sub-menu-item:hover {
    background-color: var(--bg-input);
}

.nav-icon {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.nav-icon-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-round);
    background-color: var(--bg-input);
    font-size: 16px;
    position: relative;
}

.nav-icon-item:hover {
    background-color: var(--primary);
    color: var(--text-on-primary);
    transform: translateY(-2px);
}

.nav-icon-item .count-box {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--primary);
    color: var(--text-on-primary);
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: var(--radius-round);
    border: 2px solid var(--bg-header);
}

.header-ek-buton a {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary);
    color: var(--text-on-primary);
    font-weight: 500;
    padding: 10px 18px;
    border-radius: var(--radius-md);
    font-size: 14px;
}

.header-ek-buton a:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

/* 3. KRİPTO TICKER */
.arse-koin-wrapper {
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
}

.arse-koinler {
    display: inline-flex;
    gap: 40px;
    animation: marquee-coin 30s linear infinite;
}

.arse-koin {
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.arse-koin span {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 11px;
}

@keyframes marquee-coin {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

/* 4. YATAY KATEGORİ HEADER */
.pars-header-menu-kategori-header {
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
}

.pars-header-menu-kategori-list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
}

.pars-header-menu-kategori-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
}

.pars-header-menu-kategori-link:hover {
    background-color: var(--bg-input);
}

/* H1 Alanı */
.pars-home-h1-alani-1 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 30px 0 20px 0;
    background-color: var(--bg-card);
    padding: 15px 20px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary);
    box-shadow: var(--shadow-sm);
}

.pars-home-h1-icon-1 {
    font-size: 24px;
    color: var(--primary);
}

.pars-home-h1-metin-1 {
    font-size: 18px;
    font-weight: 600;
}

/* 5. INSTAGRAM STORY BİLEŞENİ */
.pars-hikaye-container {
    overflow-x: auto;
    padding: 15px 0;
    display: flex;
    gap: 18px;
    scrollbar-width: none; /* Firefox */
}

.pars-hikaye-container::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.pars-hikaye-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 80px;
    cursor: pointer;
}

.pars-hikaye-avatar-container {
    width: 68px;
    height: 68px;
    border-radius: var(--radius-round);
    padding: 3px;
    border: 2px solid var(--primary);
    background-color: var(--bg-body);
    transition: transform var(--transition-fast);
}

.pars-hikaye-item:hover .pars-hikaye-avatar-container {
    transform: scale(1.05);
}

.pars-hikaye-avatar {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-round);
    object-fit: cover;
}

.pars-hikaye-kullanici {
    font-size: 10px;
    font-weight: 500;
    color: var(--text-muted);
    margin-top: 6px;
    max-width: 75px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* STORY MODAL */
.pars-hikaye-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.pars-hikaye-icerik {
    width: 100%;
    max-width: 420px;
    height: 90vh;
    max-height: 750px;
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #000000;
}

.pars-hikaye-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    z-index: 2;
    color: #FFFFFF;
}

.pars-hikaye-progress {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
}

.pars-hikaye-progress-bar {
    flex: 1;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.pars-hikaye-progress-fill {
    width: 0%;
    height: 100%;
    background-color: #FFFFFF;
    transition: width 0.1s linear;
}

.pars-hikaye-kullanici-bilgi {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pars-hikaye-modal-avatar {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-round);
    object-fit: cover;
}

.pars-hikaye-modal-kullanici {
    font-size: 13px;
    font-weight: 600;
    display: flex;
    flex-direction: column;
}

.pars-hikaye-zaman {
    font-size: 10px;
    opacity: 0.7;
}

.pars-hikaye-gorsel {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pars-hikaye-baslik {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
    color: #FFFFFF;
    z-index: 2;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}

.pars-hikaye-kapat {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 36px;
    color: #FFFFFF;
    background: none;
    z-index: 10;
}

.pars-hikaye-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-round);
    color: #FFFFFF;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: background-color var(--transition-fast);
}

.pars-hikaye-nav:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.pars-hikaye-nav-sol { left: -60px; }
.pars-hikaye-nav-sag { right: -60px; }

/* 6. HERO MANŞET SLIDER (ARSE MANSET WIDGET 2) */
.arse-manset-widget-2-container {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 430px;
    box-shadow: var(--shadow-md);
}

.arse-manset-widget-2-wrapper {
    height: 100%;
    width: 100%;
    position: relative;
}

.arse-manset-widget-2-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.arse-manset-widget-2-slide.active {
    opacity: 1;
    visibility: visible;
}

.arse-manset-widget-2-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.arse-manset-widget-2-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0) 100%);
    color: #FFFFFF;
}

.arse-manset-widget-2-category {
    display: inline-block;
    background-color: var(--primary);
    color: var(--text-on-primary);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
}

.arse-manset-widget-2-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.arse-manset-widget-2-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 12px;
    opacity: 0.8;
}

.arse-manset-widget-2-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.arse-manset-widget-2-author img {
    width: 24px;
    height: 24px;
    border-radius: var(--radius-round);
}

.arse-manset-widget-2-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: var(--radius-round);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--transition-fast);
}

.arse-manset-widget-2-nav-button:hover {
    background-color: var(--primary);
}

.arse-manset-widget-2-prev { left: 15px; }
.arse-manset-widget-2-next { right: 15px; }

.arse-manset-widget-2-pagination {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    gap: 6px;
    z-index: 2;
}

.arse-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-round);
    background-color: rgba(255, 255, 255, 0.5);
    transition: width var(--transition-fast), background-color var(--transition-fast);
}

.arse-pagination-bullet.active {
    background-color: var(--primary);
    width: 20px;
    border-radius: var(--radius-sm);
}

/* NAYS MANŞET (SAĞ LİSTE) */
.nays-manset {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nays-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 12px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.nays-card:hover {
    transform: translateX(4px);
    border-color: var(--primary);
}

.nays-card .row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nays-card img {
    width: 66px;
    height: 66px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.blog-widget-text {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

/* 7. ETİKET BULUTU YATAY */
.pars-etiketler-2-container {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: var(--shadow-sm);
    margin: 30px 0;
}

.pars-etiketler-2-wrapper {
    flex: 1;
    overflow-x: auto;
    scrollbar-width: none;
}

.pars-etiketler-2-wrapper::-webkit-scrollbar {
    display: none;
}

.pars-etiketler-2-scroll {
    display: flex;
    gap: 10px;
    white-space: nowrap;
}

.pars-etiketler-2-tag {
    background-color: var(--bg-input);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500;
}

.pars-etiketler-2-tag:hover {
    background-color: var(--primary);
    color: var(--text-on-primary);
    border-color: var(--primary);
}

.pars-etiketler-2-buttons {
    display: flex;
    gap: 8px;
}

.pars-etiketler-2-btn {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-round);
    border: 1px solid var(--border-color);
    background-color: var(--bg-input);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pars-etiketler-2-btn:hover:not(:disabled) {
    background-color: var(--primary);
    color: var(--text-on-primary);
}

/* MODÜL 9 CAROUSEL SLIDER */
.pars-modul-9-slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 10px 0;
}

.pars-modul-9-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scrollbar-width: none;
}

.pars-modul-9-slider::-webkit-scrollbar {
    display: none;
}

.pars-modul-9-slide {
    min-width: 280px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.pars-modul-9-slide img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.pars-modul-9-content {
    padding: 15px;
}

.pars-modul-9-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.pars-modul-9-date {
    font-size: 11px;
    color: var(--text-muted);
}

.pars-modul-9-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-round);
    box-shadow: var(--shadow-md);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pars-modul-9-arrow.left { left: 10px; }
.pars-modul-9-arrow.right { right: 10px; }

/* 8. 5'Lİ KATEGORİ SÜTUNLARI */
.pars-kategori-5li-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.pars-kategori-5li-card {
    height: 280px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    transition: transform var(--transition-normal);
}

.pars-kategori-5li-card:hover {
    transform: translateY(-5px);
}

.pars-kategori-5li-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 8px;
}

.pars-kategori-5li-question {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}

.pars-kategori-5li-overlay {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    color: var(--text-on-primary);
    padding: 25px;
    transition: top var(--transition-normal);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pars-kategori-5li-card:hover .pars-kategori-5li-overlay {
    top: 0;
}

.pars-kategori-5li-overlay-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.pars-kategori-5li-overlay-text {
    font-size: 13px;
    line-height: 1.5;
}

/* Renk Çeşitleri */
.pars-kategori-5li-card:nth-child(2) .pars-kategori-5li-title { color: #EC4899; }
.pars-kategori-5li-card:nth-child(2) .pars-kategori-5li-overlay { background-color: #EC4899; }

.pars-kategori-5li-card:nth-child(3) .pars-kategori-5li-title { color: #10B981; }
.pars-kategori-5li-card:nth-child(3) .pars-kategori-5li-overlay { background-color: #10B981; }

.pars-kategori-5li-card:nth-child(4) .pars-kategori-5li-title { color: #3B82F6; }
.pars-kategori-5li-card:nth-child(4) .pars-kategori-5li-overlay { background-color: #3B82F6; }

.pars-kategori-5li-card:nth-child(5) .pars-kategori-5li-title { color: #F59E0B; }
.pars-kategori-5li-card:nth-child(5) .pars-kategori-5li-overlay { background-color: #F59E0B; }

/* 9. SEKMELİ BLOG TABS */
.pars-sekmeli-blog-tabs {
    margin: 30px 0;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

.pars-sekmeli-tabs {
    display: flex;
    gap: 15px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.pars-sekmeli-tab {
    font-size: 15px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: var(--radius-sm);
}

.pars-sekmeli-tab.active {
    background-color: var(--primary);
    color: var(--text-on-primary);
}

.pars-sekmeli-blog-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 25px;
}

.pars-sekmeli-side-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pars-sekmeli-blog-card {
    display: flex;
    gap: 15px;
    align-items: center;
}

.pars-sekmeli-blog-card.pars-sekmeli-small img {
    width: 100px;
    height: 60px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.pars-sekmeli-baslik h3 {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
}

.pars-sekmeli-blog-card.pars-sekmeli-big {
    flex-direction: column;
    align-items: flex-start;
}

.pars-sekmeli-blog-card.pars-sekmeli-big img {
    width: 100%;
    height: 210px;
    border-radius: var(--radius-md);
    object-fit: cover;
}

.pars-sekmeli-blog-content {
    margin-top: 15px;
}

.pars-sekmeli-blog-content h2 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 10px;
}

.pars-sekmeli-meta {
    display: flex;
    gap: 15px;
    font-size: 11px;
    color: var(--text-muted);
}

/* 10. ZAMAN TÜNELİ DİKEY AKIŞ (POST 5) */
.pars-blog-post-5-list {
    position: relative;
    padding-left: 30px;
}

.pars-blog-post-5-list::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    bottom: 0;
    width: 2px;
    background-color: var(--border-color);
}

.pars-blog-post-5-item {
    position: relative;
    margin-bottom: 40px;
}

.pars-blog-post-5-timeline {
    position: absolute;
    left: -40px;
    top: 5px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.pars-blog-post-5-date-icon {
    width: 22px;
    height: 22px;
    border-radius: var(--radius-round);
    background-color: var(--primary);
    color: var(--text-on-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    z-index: 2;
}

.pars-blog-post-5-date-text {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    background-color: var(--bg-body);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
}

.pars-blog-post-5-main {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 20px;
    transition: transform var(--transition-fast);
}

.pars-blog-post-5-main:hover {
    transform: translateY(-3px);
}

.pars-blog-post-5-image {
    width: 260px;
    height: 150px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.pars-blog-post-5-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pars-blog-post-5-category {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 6px;
}

.pars-blog-post-5-heading {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}

.pars-blog-post-5-content p {
    font-size: 12px;
    color: var(--text-muted);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-top: 8px;
}

/* load more */
.pars-load-more-wrapper {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.pars-load-more-btn {
    background-color: var(--primary);
    color: var(--text-on-primary);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: var(--radius-md);
    font-size: 14px;
    transition: transform var(--transition-fast);
}

.pars-load-more-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

/* 11. REKLAM ALANI STİLİ */
.home-banner-ad {
    margin: 30px 0;
    display: flex;
    justify-content: center;
}

.home-banner-ad img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

/* 12. SIDEBAR BİLEŞENLERİ (ASIDE) */
.arse-sidebar-widgets {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 25px;
}

.arse-sidebar-widgets-title {
    font-size: 16px;
    font-weight: 600;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.pars-kategori-2-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pars-kategori-2-item {
    display: block;
    background-color: var(--bg-input);
    border-radius: var(--radius-sm);
    padding: 10px 15px;
}

.pars-kategori-2-item-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pars-kategori-2-item-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}

.pars-kategori-2-item-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pars-kategori-2-count {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: var(--radius-sm);
}

.pars-kategori-2-item:hover {
    background-color: var(--primary);
    color: var(--text-on-primary);
}

/* SIDEBAR YENİ / POPÜLER TABS */
.tab-container {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 25px;
}

.custom-tabs {
    display: flex;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 15px;
}

.custom-tabs button {
    flex: 1;
    font-weight: 600;
    padding: 8px;
    font-size: 14px;
}

.custom-tabs button.active-tab {
    border-bottom: 2px solid var(--primary);
    color: var(--primary);
}

.sidebar-item {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 15px;
}

.sidebar-item img {
    width: 66px;
    height: 66px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.sidebar-title h3 {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
}

/* SOSYAL MEDYA BUTONLARI */
.pars-sidebar-sosyal-medya-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.pars-sidebar-sosyal-medya-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 500;
    color: #FFFFFF;
}

.pars-sidebar-sosyal-medya-btn i {
    font-size: 18px;
    margin-bottom: 5px;
}

.facebook { background-color: #3b5998; }
.twitter { background-color: #1da1f2; }
.linkedin { background-color: #0077b5; }
.pinterest { background-color: #bd081c; }
.youtube { background-color: #cd201f; }
.instagram { background-color: #e4405f; }
.whatsapp { background-color: #25d366; }
.telegram { background-color: #0088cc; }
.tiktok { background-color: #010101; }

.pars-sidebar-sosyal-medya-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* 13. WHATSAPP DESTEK BANNERI */
.pars-whatsapp-bar {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 99;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #FFFFFF;
    padding: 12px 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    display: flex;
    align-items: center;
    gap: 15px;
}

.pars-whatsapp-bar i {
    font-size: 24px;
}

.pars-whatsapp-text {
    font-size: 13px;
    font-weight: 500;
}

.pars-whatsapp-btn {
    background-color: #FFFFFF;
    color: #128C7E;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 11px;
}

/* 14. FOOTER VE GOTOP */
footer {
    background-color: var(--bg-header);
    border-top: 4px solid var(--primary);
    padding: 40px 0 20px 0;
    margin-top: 50px;
    border-bottom: 1px solid var(--border-color);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo img {
    height: 48px;
    margin-bottom: 15px;
}

.footer-about p {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-widget-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 13px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-muted);
}

#goTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-round);
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--primary);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
}

#goTop.show {
    opacity: 1;
    visibility: visible;
}

.border-progress {
    position: absolute;
    top: -1px;
    left: -1px;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-round);
    border: 2px solid transparent;
    border-top-color: var(--primary);
    transform: rotate(0deg);
}

/* 15. RESPONSİVE MEDYA KURALLARI */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    .pars-kategori-5li-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    .pars-sekmeli-blog-grid {
        grid-template-columns: 1fr;
    }
    .pars-blog-post-5-main {
        flex-direction: column;
    }
    .pars-blog-post-5-image {
        width: 100%;
        height: 200px;
    }
    .pars-kategori-5li-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }
    .pars-kategori-5li-wrapper {
        grid-template-columns: 1fr;
    }
    .footer-top {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   16. MOBİL MENÜ PANELİ, BİLDİRİM PANELİ VE ARAMA MODALI
   ========================================================================== */

/* MOBİL MENÜ SOL PANEL */
.mobile-menu-panel {
    position: fixed;
    top: 0;
    left: -320px;
    width: 280px;
    height: 100vh;
    background-color: var(--bg-card);
    border-right: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    padding: 30px 20px;
    transition: left var(--transition-normal) cubic-bezier(0.16, 1, 0.3, 1);
    list-style: none;
}

.mobile-menu-panel.active {
    left: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    background: none;
    border: none;
    color: var(--text-main);
    cursor: pointer;
}

.mobile-menu-list {
    list-style: none;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0;
}

.mobile-menu-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-main);
    padding: 10px 15px;
    border-radius: var(--radius-sm);
    transition: background-color var(--transition-fast);
}

.mobile-menu-list li a:hover {
    background-color: var(--bg-input);
    color: var(--primary);
}

/* BİLDİRİM PANELİ SAĞ */
.notification-panel {
    position: fixed;
    top: 0;
    right: -360px;
    width: 320px;
    height: 100vh;
    background-color: var(--bg-card);
    border-left: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    padding: 25px 20px;
    transition: right var(--transition-normal) cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.notification-panel.active {
    right: 0;
}

.notification-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.notification-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-main);
}

.notification-header button {
    font-size: 24px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
}

.notification-body {
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow-y: auto;
    flex: 1;
}

.notification-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    background-color: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 12px;
    color: var(--text-main);
    transition: transform var(--transition-fast);
}

.notification-item:hover {
    transform: translateY(-2px);
}

.notification-item i {
    font-size: 16px;
    margin-top: 2px;
}

.notification-item small {
    color: var(--text-muted);
    margin-top: 4px;
    display: block;
}

/* INSTANT ARAMA MODALI */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.search-modal-close, .search-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 40px;
    color: #FFFFFF;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    z-index: 10001;
}

.search-modal-content {
    width: 90%;
    max-width: 600px;
}

.search-modal-content form {
    display: flex;
    align-items: center;
    border-bottom: 2px solid #FFFFFF;
    padding-bottom: 10px;
}

.search-modal-content input {
    flex: 1;
    background: none;
    border: none;
    font-size: 24px;
    color: #FFFFFF;
    outline: none;
    padding: 0 10px;
}

.search-modal-content input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-modal-content button {
    background: none;
    border: none;
    font-size: 24px;
    color: #FFFFFF;
    cursor: pointer;
}

/* ==========================================================================
   17. PREMIUM RESİMLİ MEGA MENÜ STİLLERİ
   ========================================================================== */

/* Mega Menü Parent */
.mega-menu-parent {
    position: static !important; /* Mega menünün tüm ekran genişliğinde açılabilmesi için static olmalı */
}

/* Header Wrapper mega menüye göre hizalansın */
.wrapper-header {
    position: relative;
}

/* Mega Menü Açılır Panel */
.mega-menu-content {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-top: 3px solid var(--primary);
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    z-index: 999;
}

.mega-menu-parent:hover .mega-menu-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* İç Kılavuz Grid Yerleşimi */
.mega-menu-inner-grid {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 30px;
    padding: 30px 15px;
}

/* Sol Sütun: Son 3 Haber Kartı */
.mega-menu-left-posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    border-right: 1px solid var(--border-color);
    padding-right: 30px;
}

/* Haber Kartı */
.mega-post-card {
    background-color: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-fast), border-color var(--transition-fast);
    display: flex;
    flex-direction: column;
}

.mega-post-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
}

.mega-post-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

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

.mega-post-info {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.mega-post-cat {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
}

.mega-post-info h4 {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.mega-post-info h4 a {
    color: var(--text-main);
}

.mega-post-info h4 a:hover {
    color: var(--primary);
}

/* Sağ Sütun: Alt Kategoriler Listesi */
.mega-menu-right-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mega-menu-right-links h5 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-main);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 8px;
    margin: 0;
}

.mega-menu-right-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.mega-menu-right-links ul li a {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    padding: 6px 12px;
    background-color: var(--bg-input);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--border-color);
    transition: all var(--transition-fast);
}

.mega-menu-right-links ul li a:hover {
    color: var(--primary);
    background-color: var(--bg-card);
    transform: translateX(4px);
}

/* ==========================================================================
   17. ANASAYFA RESPONSIVE VE TASARIM DÜZELTMELERİ
   ========================================================================== */

/* Genel Anasayfa Grid Sistemi */
.pars-main-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 20px;
    align-items: start;
    width: 100%;
}

/* Günün Burçları Yatay Şeridi Mobil Koruması */
.zodiac-home-scroll {
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.zodiac-home-scroll::-webkit-scrollbar {
    display: none;
}

/* Tablet ve Altı Cihazlar İçin Grid Dönüşümü */
@media (max-width: 992px) {
    .pars-main-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Kahraman Slider Boyutu Responsive Uyumluluğu */
    .arse-manset-widget-2-container {
        height: 350px;
    }
}

/* Mobil Cihazlar İçin Ekran Sınır Korumaları */
@media (max-width: 576px) {
    .zodiac-home-container {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 10px !important;
    }
    
    .zodiac-home-scroll {
        width: 100%;
        padding: 5px 0;
    }
    
    .arse-manset-widget-2-container {
        height: 260px;
    }
    
    .arse-manset-widget-2-content {
        padding: 15px;
    }
    
    .arse-manset-widget-2-title {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .arse-manset-widget-2-meta {
        gap: 10px;
        font-size: 10px;
    }
}

/* ==========================================================================
   18. MOBİL UYUMLULUK VE DETAYLI RESPONSIVE STİLLERİ
   ========================================================================== */

/* Header Mobil Görünürlük Sınıfları */
.d-mobile-menu {
    display: none;
}

@media (max-width: 992px) {
    .d-none-mobile {
        display: none !important;
    }
    .d-mobile-menu {
        display: block !important;
    }
    .logo-header img {
        height: 44px !important;
    }
    .wrapper-header {
        gap: 10px;
    }
    .nav-icon {
        gap: 8px !important;
    }
    .nav-icon-item {
        width: 34px !important;
        height: 34px !important;
        font-size: 14px !important;
    }
}

/* Yorum ve İletişim Formu Responsive Grid Yapıları */
.pars-comment-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.pars-contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 576px) {
    .pars-comment-form-grid,
    .pars-contact-info-grid {
        grid-template-columns: 1fr;
    }
    .pars-details-container {
        padding: 15px !important;
    }
    .pars-post-title {
        font-size: 20px !important;
    }
    .pars-comment-form-box {
        padding: 15px !important;
    }
    .pars-share-buttons {
        flex-wrap: wrap;
    }
    .pars-share-btn {
        flex: 1;
        min-width: 120px;
        justify-content: center;
    }
    .contact-form-wrapper {
        padding: 20px !important;
    }
}

/* Astroloji ve Burç Yorumları Sayfası Mobil Düzeltmeleri */
@media (max-width: 768px) {
    .astro-hero {
        padding: 30px 15px !important;
    }
    .astro-title {
        font-size: 22px !important;
    }
    .astro-display-panel {
        padding: 20px !important;
    }
    .astro-display-header {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 20px !important;
    }
    .astro-nav-pills {
        width: 100%;
        display: flex;
    }
    .astro-nav-link {
        flex: 1;
        padding: 8px 10px !important;
        font-size: 12px !important;
        text-align: center;
    }
}

/* ==========================================================================
   19. HİKAYELER CAROUSEL OK STİLLERİ
   ========================================================================== */
.pars-stories-carousel-wrapper {
    position: relative;
    width: 100%;
}
.pars-stories-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-round);
    box-shadow: var(--shadow-md);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--text-main);
}
.pars-stories-arrow:hover {
    background-color: var(--primary);
    color: var(--text-on-primary);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.05);
}
.pars-stories-arrow.left {
    left: -15px;
}
.pars-stories-arrow.right {
    right: -15px;
}
@media (max-width: 768px) {
    .pars-stories-arrow {
        display: none !important; /* Mobilde parmak kaydırması için oklar gizlenir */
    }
}

/* ==========================================================================
   10 PREMIUM AVANT-GARDE TASARIM STİLLERİ (STYLE-1 - STYLE-10)
   ========================================================================== */

/* --- STYLE-1: KLASİK MODERN LÜKS (Varsayılan Stil - Değişiklik Yok) --- */

/* --- STYLE-2: GLASSMORPHIC NEO-DARK ---
   Yarı saydam beyaz/koyu zemin, blur efekti, neon kenarlıklar ve radial-glow */
.style-2 {
    background: rgba(15, 23, 42, 0.8) !important;
    backdrop-filter: blur(16px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(16px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 24px !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37), 
                inset 0 0 20px rgba(255, 255, 255, 0.02) !important;
    position: relative;
    overflow: hidden;
    color: #ffffff !important;
}
.style-2::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 45, 85, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}
.style-2 * {
    color: #cbd5e1 !important;
}
.style-2 a {
    color: #ffffff !important;
}
.style-2 a:hover {
    color: #ff2d55 !important;
}
.style-2 .arse-sidebar-widgets-title,
.style-2 .zodiac-header-text,
.style-2 h2, .style-2 h3, .style-2 h6, .style-2 h1 {
    color: #ffffff !important;
}

/* --- STYLE-3: MINIMALIST BORDERLESS ---
   Geniş whitespace, cesur ve devasa modern yazı tipleri, kenarlıksız yalın tasarım */
.style-3 {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}
.style-3 h3, .style-3 h2, .style-3 .module-title, .style-3 .arse-sidebar-widgets-title {
    font-size: 1.8rem !important;
    font-weight: 900 !important;
    letter-spacing: -1.5px !important;
    text-transform: uppercase !important;
    color: #0f172a !important;
}
.style-3 p {
    font-size: 1.1rem !important;
    line-height: 1.8 !important;
    color: #4b5563 !important;
}

/* --- STYLE-4: GRADIENT ACCENT ---
   Degrade geçişli renk parıltıları, parıltılı gölgeler ve dinamik geçişli kenarlar */
.style-4 {
    background: #ffffff !important;
    border-radius: 20px !important;
    border: 1px solid rgba(0,0,0,0.03) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02) !important;
    position: relative;
    overflow: hidden;
}
.style-4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff2d55, #007aff, #ffcc00);
    border-radius: 10px 10px 0 0;
}

/* --- STYLE-5: ASYMMETRIC GRID ---
   Dergi tarzı asimetrik yerleşimler, yaratıcı kenar boşlukları ve şık açılı kesimler */
.style-5 {
    transform: rotate(-0.5deg) !important;
    border-radius: 12px 30px 12px 30px !important;
    border-left: 5px solid #ff2d55 !important;
    box-shadow: 10px 10px 0px rgba(0,0,0,0.03) !important;
}

/* --- STYLE-6: CYBERPUNK ELECTRO ---
   Neon mor/cyan keskin renkler, mor zeminler ve elektrik parıltısı */
.style-6 {
    background: #0d0614 !important;
    color: #00f0ff !important;
    border: 2px solid #ff007f !important;
    box-shadow: 0 0 15px rgba(255, 0, 127, 0.2), 
                inset 0 0 15px rgba(0, 240, 255, 0.1) !important;
}
.style-6 * {
    color: #00f0ff !important;
}
.style-6 a {
    color: #00f0ff !important;
}
.style-6 a:hover {
    color: #ff007f !important;
    text-shadow: 0 0 8px #ff007f !important;
}
.style-6 .arse-sidebar-widgets-title, 
.style-6 .zodiac-header-text,
.style-6 h2, .style-6 h3, .style-6 h6, .style-6 .module-title {
    color: #ff007f !important;
    font-family: 'Courier New', Courier, monospace !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    text-shadow: 0 0 5px rgba(255, 0, 127, 0.5) !important;
}

/* --- STYLE-7: ROYAL GOLD & VELVET ---
   Zengin lacivert/siyah kadife zeminler ve asil altın sarısı yaldızlı çizgiler */
.style-7 {
    background: linear-gradient(135deg, #090e1a 0%, #03060f 100%) !important;
    color: #f1e4c3 !important;
    border: 2px solid #d4af37 !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.6), 
                0 0 20px rgba(212, 175, 55, 0.15) !important;
}
.style-7 * {
    color: #cbd5e1 !important;
}
.style-7 a {
    color: #f1e4c3 !important;
}
.style-7 a:hover {
    color: #d4af37 !important;
}
.style-7 .arse-sidebar-widgets-title,
.style-7 h2, .style-7 h3, .style-7 h6, .style-7 .module-title {
    color: #d4af37 !important;
    font-family: 'Playfair Display', Georgia, serif !important;
}

/* --- STYLE-8: CLEAN SOFT LIGHT ---
   Açık pastel tonlar, devasa yumuşak gölgeler ve yuvarlak organik köşeler */
.style-8 {
    background: #fdfefe !important;
    border: 1px solid rgba(0, 0, 0, 0.02) !important;
    border-radius: 32px !important;
    box-shadow: 0 20px 40px rgba(148, 163, 184, 0.12) !important;
}

/* --- STYLE-9: MONOCHROME BRUTALIST ---
   Siyah-beyaz brutalist tarz, kalın dış konturlar ve keskin 90 derece gölgeler */
.style-9 {
    background: #ffffff !important;
    border: 4px solid #000000 !important;
    border-radius: 0px !important;
    box-shadow: 8px 8px 0px #000000 !important;
    transform: none !important;
}
.style-9 * {
    border-radius: 0px !important;
}
.style-9 a:hover {
    text-decoration: underline !important;
}

/* --- STYLE-10: 3D INTERACTIVE CARD ---
   Fare hareketine duyarlı 3D parallax hissi, ultra derin gölgeler */
.style-10 {
    background: #ffffff !important;
    border-radius: 20px !important;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1) !important;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}
.style-10:hover {
    transform: scale(1.02) translateY(-5px) !important;
    box-shadow: 0 45px 80px rgba(0,0,0,0.15) !important;
}

/* --- STYLE-11: FUTURISTIC NEUMORPHISM ---
   İç bükey ve dış bükey soft gölgelendirmelerle 3D plastik dokusu */
.style-11 {
    background: #e0e0e0 !important;
    border: none !important;
    border-radius: 20px !important;
    box-shadow: 9px 9px 16px #bebebe, 
                -9px -9px 16px #ffffff !important;
    color: #4d4d4d !important;
    transition: all 0.3s ease !important;
}
.style-11:hover {
    box-shadow: inset 9px 9px 16px #bebebe, 
                inset -9px -9px 16px #ffffff !important;
}
.style-11 * {
    color: #4d4d4d !important;
}

/* --- STYLE-12: RETRO NEON SYNTHWAVE ---
   80'lerin retro mor-turuncu gün batımı degradeleri ve neon ızgara çizgileri */
.style-12 {
    background: linear-gradient(180deg, #2b0f54 0%, #15052b 100%) !important;
    border: 2px solid #ff5e62 !important;
    border-radius: 16px !important;
    box-shadow: 0 0 20px rgba(255, 94, 98, 0.3), 
                inset 0 0 15px rgba(255, 94, 98, 0.15) !important;
    color: #ff9966 !important;
}
.style-12 * {
    color: #ff9966 !important;
}
.style-12 a {
    color: #ff5e62 !important;
}
.style-12 a:hover {
    color: #ff9966 !important;
    text-shadow: 0 0 5px #ff9966 !important;
}
.style-12 .arse-sidebar-widgets-title, 
.style-12 h2, .style-12 h3, .style-12 h6, .style-12 .module-title {
    color: #ff9966 !important;
    font-family: 'Oswald', sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    text-shadow: 0 0 4px rgba(255, 153, 102, 0.6) !important;
}

/* --- STYLE-13: CYBERPUNK CYBER-GOTH ---
   Tamamen simsiyah derinlikler, keskin kireç yeşili ve elektrik kırmızısı vurgular */
.style-13 {
    background: #000000 !important;
    border: 2px solid #39ff14 !important;
    border-radius: 0px !important;
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.4) !important;
    color: #ffffff !important;
}
.style-13 * {
    color: #ffffff !important;
}
.style-13 a {
    color: #39ff14 !important;
}
.style-13 a:hover {
    color: #ff073a !important;
    text-shadow: 0 0 6px #ff073a !important;
}
.style-13 .arse-sidebar-widgets-title, 
.style-13 h2, .style-13 h3, .style-13 h6, .style-13 .module-title {
    color: #ff073a !important;
    font-family: 'Courier New', monospace !important;
    border-bottom: 1px dashed #39ff14 !important;
    padding-bottom: 8px !important;
}

/* --- STYLE-14: GLASSMORPHISM LIGHT (PREMIUM FROST) ---
   Açık renkli cihazlar için buzlu cam etkisi ve gökkuşağı parıltılı kenarlar */
.style-14 {
    background: rgba(255, 255, 255, 0.45) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border: 1px solid rgba(209, 213, 219, 0.3) !important;
    border-radius: 24px !important;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05) !important;
    position: relative;
}
.style-14::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, #ff007f, #7f00ff, #00f0ff);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.15;
    transition: opacity 0.3s ease;
}
.style-14:hover::before {
    opacity: 0.3;
}

/* --- STYLE-15: ART DECO VINTAGE (GATSBY STYLE) ---
   Siyah-altın geometrik asil desenler ve Gatsby tarzı lüks tipografi */
.style-15 {
    background: #111111 !important;
    color: #e5c158 !important;
    border: 3px double #e5c158 !important;
    border-radius: 4px !important;
    box-shadow: 0 0 0 4px #111111, 0 10px 25px rgba(0,0,0,0.5) !important;
    position: relative;
}
.style-15 * {
    color: #ebd391 !important;
}
.style-15 a {
    color: #e5c158 !important;
}
.style-15 a:hover {
    color: #ffffff !important;
    text-decoration: underline !important;
}
.style-15 .arse-sidebar-widgets-title, 
.style-15 h2, .style-15 h3, .style-15 h6, .style-15 .module-title {
    color: #e5c158 !important;
    font-family: 'Cinzel', serif, Georgia !important;
    text-transform: uppercase !important;
    letter-spacing: 3px !important;
    text-align: center !important;
    border-bottom: 2px solid #e5c158 !important;
    padding-bottom: 10px !important;
}

/* ==========================================================================
   PREMIUM HERO SLIDER DESIGN VARIATIONS (STYLE 1 - 15)
   ========================================================================== */

/* STYLE-2: Glassmorphic Neo-Dark Hero Slider */
.hero_slider-module.style-2 .arse-manset-widget-2-container {
    border-radius: 24px !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3) !important;
}
.hero_slider-module.style-2 .arse-manset-widget-2-content {
    background: rgba(15, 23, 42, 0.7) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 16px !important;
    margin: 15px !important;
    width: calc(100% - 30px) !important;
}
.hero_slider-module.style-2 .nays-card {
    background: rgba(15, 23, 42, 0.6) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 14px !important;
}
.hero_slider-module.style-2 .nays-card:hover {
    border-color: #ff2d55 !important;
    box-shadow: 0 0 15px rgba(255, 45, 85, 0.2) !important;
}

/* STYLE-3: Minimalist Borderless Hero Slider */
.hero_slider-module.style-3 .arse-manset-widget-2-container {
    border-radius: 0px !important;
    box-shadow: none !important;
}
.hero_slider-module.style-3 .arse-manset-widget-2-content {
    background: linear-gradient(180deg, transparent 0%, #ffffff 90%) !important;
    padding: 30px 20px 20px 20px !important;
}
.hero_slider-module.style-3 .arse-manset-widget-2-title a {
    color: #0f172a !important;
    font-weight: 900 !important;
    letter-spacing: -1px !important;
}
.hero_slider-module.style-3 .nays-card {
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid #cbd5e1 !important;
    border-radius: 0px !important;
    padding-left: 0 !important;
}

/* STYLE-4: Gradient Accent Hero Slider */
.hero_slider-module.style-4 .arse-manset-widget-2-container {
    border-radius: 20px !important;
}
.hero_slider-module.style-4 .arse-manset-widget-2-container::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0; height: 5px;
    background: linear-gradient(90deg, #ff2d55, #007aff, #ffcc00) !important;
    z-index: 10;
}
.hero_slider-module.style-4 .arse-manset-widget-2-content {
    background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.95) 100%) !important;
}
.hero_slider-module.style-4 .nays-card {
    border-left: 4px solid #ff2d55 !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02) !important;
}

/* STYLE-5: Asymmetric Grid Hero Slider */
.hero_slider-module.style-5 .arse-manset-widget-2-container {
    transform: rotate(-0.5deg) !important;
    border-radius: 24px 8px 24px 8px !important;
    overflow: hidden !important;
}
.hero_slider-module.style-5 .nays-card {
    transform: rotate(0.5deg) !important;
    border-radius: 8px 20px 8px 20px !important;
    border-left: 4px solid #ec4899 !important;
}

/* STYLE-6: Cyberpunk Electro Hero Slider */
.hero_slider-module.style-6 .arse-manset-widget-2-container {
    border: 2px solid #ff007f !important;
    box-shadow: 0 0 20px rgba(255, 0, 127, 0.25) !important;
}
.hero_slider-module.style-6 .arse-manset-widget-2-content {
    background: rgba(13, 6, 20, 0.9) !important;
    border-top: 2px solid #00f0ff !important;
}
.hero_slider-module.style-6 .arse-manset-widget-2-title a {
    color: #00f0ff !important;
    font-family: 'Courier New', monospace !important;
}
.hero_slider-module.style-6 .nays-card {
    background: #0d0614 !important;
    border: 1px solid #ff007f !important;
}
.hero_slider-module.style-6 .nays-card a {
    color: #00f0ff !important;
}
.hero_slider-module.style-6 .nays-card:hover {
    box-shadow: 0 0 10px #00f0ff !important;
}

/* STYLE-7: Royal Gold & Velvet Hero Slider */
.hero_slider-module.style-7 .arse-manset-widget-2-container {
    border: 2px solid #d4af37 !important;
    box-shadow: 0 10px 30px rgba(9, 14, 26, 0.5) !important;
}
.hero_slider-module.style-7 .arse-manset-widget-2-content {
    background: linear-gradient(180deg, transparent 0%, #090e1a 100%) !important;
}
.hero_slider-module.style-7 .arse-manset-widget-2-title a {
    color: #d4af37 !important;
    font-family: 'Playfair Display', serif !important;
}
.hero_slider-module.style-7 .nays-card {
    background: #090e1a !important;
    border: 1px solid #d4af37 !important;
}
.hero_slider-module.style-7 .nays-card a {
    color: #f1e4c3 !important;
}
.hero_slider-module.style-7 .nays-card a:hover {
    color: #d4af37 !important;
}

/* STYLE-8: Clean Soft Light Hero Slider */
.hero_slider-module.style-8 .arse-manset-widget-2-container {
    border-radius: 32px !important;
    box-shadow: 0 25px 50px rgba(148, 163, 184, 0.15) !important;
}
.hero_slider-module.style-8 .nays-card {
    background: #ffffff !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 20px rgba(148, 163, 184, 0.05) !important;
}

/* STYLE-9: Monochrome Brutalist Hero Slider */
.hero_slider-module.style-9 .arse-manset-widget-2-container {
    border: 4px solid #000000 !important;
    border-radius: 0px !important;
    box-shadow: 10px 10px 0px #000000 !important;
}
.hero_slider-module.style-9 .arse-manset-widget-2-content {
    background: #ffffff !important;
    border-top: 4px solid #000000 !important;
    color: #000000 !important;
}
.hero_slider-module.style-9 .arse-manset-widget-2-title a {
    color: #000000 !important;
    font-weight: 900 !important;
}
.hero_slider-module.style-9 .nays-card {
    background: #ffffff !important;
    border: 3px solid #000000 !important;
    border-radius: 0px !important;
    box-shadow: 4px 4px 0px #000000 !important;
}

/* STYLE-10: 3D Interactive Card Hero Slider */
.hero_slider-module.style-10 .arse-manset-widget-2-container {
    border-radius: 20px !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15) !important;
    transition: transform 0.3s ease !important;
}
.hero_slider-module.style-10 .arse-manset-widget-2-container:hover {
    transform: translateY(-5px) scale(1.01) !important;
}
.hero_slider-module.style-10 .nays-card {
    border-radius: 16px !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.02) !important;
    transition: all 0.3s ease !important;
}
.hero_slider-module.style-10 .nays-card:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08) !important;
}

/* STYLE-11: Futuristic Neumorphism Hero Slider */
.hero_slider-module.style-11 .arse-manset-widget-2-container {
    background: #e0e0e0 !important;
    border: none !important;
    border-radius: 24px !important;
    box-shadow: 9px 9px 16px #bebebe, -9px -9px 16px #ffffff !important;
}
.hero_slider-module.style-11 .arse-manset-widget-2-content {
    background: rgba(224, 224, 224, 0.9) !important;
    box-shadow: inset 5px 5px 10px #bebebe, inset -5px -5px 10px #ffffff !important;
    border-radius: 16px !important;
    margin: 15px !important;
    width: calc(100% - 30px) !important;
}
.hero_slider-module.style-11 .arse-manset-widget-2-title a {
    color: #2d3748 !important;
}
.hero_slider-module.style-11 .nays-card {
    background: #e0e0e0 !important;
    border-radius: 16px !important;
    box-shadow: 5px 5px 10px #bebebe, -5px -5px 10px #ffffff !important;
}

/* STYLE-12: Retro Neon Synthwave Hero Slider */
.hero_slider-module.style-12 .arse-manset-widget-2-container {
    border: 2px solid #ff5e62 !important;
    box-shadow: 0 0 25px rgba(255, 94, 98, 0.4) !important;
    border-radius: 20px !important;
}
.hero_slider-module.style-12 .arse-manset-widget-2-content {
    background: rgba(43, 15, 84, 0.9) !important;
    border-top: 2px dashed #ff5e62 !important;
}
.hero_slider-module.style-12 .arse-manset-widget-2-title a {
    color: #ff9966 !important;
    font-family: 'Oswald', sans-serif !important;
}
.hero_slider-module.style-12 .nays-card {
    background: #15052b !important;
    border: 1px solid #ff5e62 !important;
    border-radius: 12px !important;
}
.hero_slider-module.style-12 .nays-card a {
    color: #ff9966 !important;
}

/* STYLE-13: Cyberpunk Cyber-Goth Hero Slider */
.hero_slider-module.style-13 .arse-manset-widget-2-container {
    border: 2px solid #39ff14 !important;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.3) !important;
    border-radius: 0px !important;
}
.hero_slider-module.style-13 .arse-manset-widget-2-content {
    background: #000000 !important;
    border-top: 2px solid #ff073a !important;
}
.hero_slider-module.style-13 .arse-manset-widget-2-title a {
    color: #39ff14 !important;
    font-family: 'Courier New', monospace !important;
}
.hero_slider-module.style-13 .nays-card {
    background: #000000 !important;
    border: 1px solid #39ff14 !important;
    border-radius: 0px !important;
}
.hero_slider-module.style-13 .nays-card a {
    color: #39ff14 !important;
}
.hero_slider-module.style-13 .nays-card a:hover {
    color: #ff073a !important;
}

/* STYLE-14: Glassmorphism Light Hero Slider */
.hero_slider-module.style-14 .arse-manset-widget-2-container {
    border-radius: 24px !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 15px 35px rgba(31, 38, 135, 0.05) !important;
}
.hero_slider-module.style-14 .arse-manset-widget-2-content {
    background: rgba(255, 255, 255, 0.5) !important;
    backdrop-filter: blur(15px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(15px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 16px !important;
    margin: 15px !important;
    width: calc(100% - 30px) !important;
}
.hero_slider-module.style-14 .arse-manset-widget-2-title a {
    color: #1e293b !important;
}
.hero_slider-module.style-14 .nays-card {
    background: rgba(255, 255, 255, 0.4) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 16px !important;
}

/* STYLE-15: Art Deco Vintage Hero Slider */
.hero_slider-module.style-15 .arse-manset-widget-2-container {
    border: 3px double #e5c158 !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7) !important;
    border-radius: 4px !important;
}
.hero_slider-module.style-15 .arse-manset-widget-2-content {
    background: rgba(17, 17, 17, 0.9) !important;
    border-top: 2px solid #e5c158 !important;
}
.hero_slider-module.style-15 .arse-manset-widget-2-title a {
    color: #e5c158 !important;
    font-family: 'Cinzel', serif !important;
    letter-spacing: 1px !important;
}
.hero_slider-module.style-15 .nays-card {
    background: #111111 !important;
    border: 1px solid #e5c158 !important;
    border-radius: 4px !important;
}
.hero_slider-module.style-15 .nays-card a {
    color: #ebd391 !important;
}
.hero_slider-module.style-15 .nays-card a:hover {
    color: #ffffff !important;
}

/* --------------------------------------------------------------------------
   PREMIUM SLIDER NAVIGATION BUTTONS & PAGINATION BULLETS VARYASYONLARI
   -------------------------------------------------------------------------- */

/* STYLE-2 (Glassmorphic Neo-Dark) */
.hero_slider-module.style-2 .arse-pagination-bullet {
    background: rgba(255, 255, 255, 0.2) !important;
}
.hero_slider-module.style-2 .arse-pagination-bullet.active {
    background: #ff2d55 !important;
    box-shadow: 0 0 10px #ff2d55 !important;
}
.hero_slider-module.style-2 .arse-manset-widget-2-nav-button {
    background: rgba(15, 23, 42, 0.6) !important;
    backdrop-filter: blur(8px) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
}
.hero_slider-module.style-2 .arse-manset-widget-2-nav-button:hover {
    background: #ff2d55 !important;
    color: #ffffff !important;
    box-shadow: 0 0 15px rgba(255,45,85,0.4) !important;
}

/* STYLE-6 (Cyberpunk Electro) */
.hero_slider-module.style-6 .arse-pagination-bullet {
    background: rgba(0, 240, 255, 0.3) !important;
    border-radius: 0px !important;
}
.hero_slider-module.style-6 .arse-pagination-bullet.active {
    background: #ff007f !important;
    box-shadow: 0 0 8px #ff007f !important;
}
.hero_slider-module.style-6 .arse-manset-widget-2-nav-button {
    background: #0d0614 !important;
    color: #00f0ff !important;
    border: 2px solid #ff007f !important;
    border-radius: 0px !important;
}
.hero_slider-module.style-6 .arse-manset-widget-2-nav-button:hover {
    background: #ff007f !important;
    color: #0d0614 !important;
    box-shadow: 0 0 10px #ff007f !important;
}

/* STYLE-7 (Royal Gold) */
.hero_slider-module.style-7 .arse-pagination-bullet {
    background: rgba(212, 175, 55, 0.25) !important;
}
.hero_slider-module.style-7 .arse-pagination-bullet.active {
    background: #d4af37 !important;
    box-shadow: 0 0 6px #d4af37 !important;
}
.hero_slider-module.style-7 .arse-manset-widget-2-nav-button {
    background: #090e1a !important;
    color: #d4af37 !important;
    border: 1px solid #d4af37 !important;
}
.hero_slider-module.style-7 .arse-manset-widget-2-nav-button:hover {
    background: #d4af37 !important;
    color: #090e1a !important;
}

/* STYLE-9 (Monochrome Brutalist) */
.hero_slider-module.style-9 .arse-pagination-bullet {
    background: #ffffff !important;
    border: 2px solid #000000 !important;
    border-radius: 0px !important;
}
.hero_slider-module.style-9 .arse-pagination-bullet.active {
    background: #000000 !important;
}
.hero_slider-module.style-9 .arse-manset-widget-2-nav-button {
    background: #ffffff !important;
    color: #000000 !important;
    border: 3px solid #000000 !important;
    border-radius: 0px !important;
    box-shadow: 3px 3px 0px #000000 !important;
}
.hero_slider-module.style-9 .arse-manset-widget-2-nav-button:hover {
    background: #000000 !important;
    color: #ffffff !important;
    box-shadow: none !important;
    transform: translate(3px, 3px) !important;
}

/* STYLE-11 (Futuristic Neumorphism) */
.hero_slider-module.style-11 .arse-pagination-bullet {
    background: #e0e0e0 !important;
    box-shadow: inset 2px 2px 5px #bebebe, inset -2px -2px 5px #ffffff !important;
}
.hero_slider-module.style-11 .arse-pagination-bullet.active {
    box-shadow: 2px 2px 5px #bebebe, -2px -2px 5px #ffffff !important;
}
.hero_slider-module.style-11 .arse-manset-widget-2-nav-button {
    background: #e0e0e0 !important;
    color: #4d4d4d !important;
    box-shadow: 4px 4px 8px #bebebe, -4px -4px 8px #ffffff !important;
}
.hero_slider-module.style-11 .arse-manset-widget-2-nav-button:hover {
    box-shadow: inset 4px 4px 8px #bebebe, inset -4px -4px 8px #ffffff !important;
}

/* STYLE-12 (Retro Neon Synthwave) */
.hero_slider-module.style-12 .arse-pagination-bullet {
    background: rgba(255, 94, 98, 0.3) !important;
}
.hero_slider-module.style-12 .arse-pagination-bullet.active {
    background: #ff5e62 !important;
    box-shadow: 0 0 10px #ff5e62 !important;
}
.hero_slider-module.style-12 .arse-manset-widget-2-nav-button {
    background: #2b0f54 !important;
    color: #ff5e62 !important;
    border: 1px solid #ff5e62 !important;
}
.hero_slider-module.style-12 .arse-manset-widget-2-nav-button:hover {
    background: #ff5e62 !important;
    color: #ffffff !important;
    box-shadow: 0 0 15px rgba(255, 94, 98, 0.5) !important;
}

/* STYLE-13 (Cyberpunk Cyber-Goth) */
.hero_slider-module.style-13 .arse-pagination-bullet {
    background: rgba(57, 255, 20, 0.25) !important;
    border-radius: 0px !important;
}
.hero_slider-module.style-13 .arse-pagination-bullet.active {
    background: #39ff14 !important;
    box-shadow: 0 0 10px #39ff14 !important;
}
.hero_slider-module.style-13 .arse-manset-widget-2-nav-button {
    background: #000000 !important;
    color: #39ff14 !important;
    border: 2px solid #39ff14 !important;
    border-radius: 0px !important;
}
.hero_slider-module.style-13 .arse-manset-widget-2-nav-button:hover {
    background: #39ff14 !important;
    color: #000000 !important;
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.5) !important;
}

/* STYLE-15 (Art Deco Vintage) */
.hero_slider-module.style-15 .arse-pagination-bullet {
    background: rgba(229, 193, 88, 0.3) !important;
    border-radius: 2px !important;
}
.hero_slider-module.style-15 .arse-pagination-bullet.active {
    background: #e5c158 !important;
    box-shadow: 0 0 8px #e5c158 !important;
}
.hero_slider-module.style-15 .arse-manset-widget-2-nav-button {
    background: #111111 !important;
    color: #e5c158 !important;
    border: 1px solid #e5c158 !important;
    border-radius: 2px !important;
}
.hero_slider-module.style-15 .arse-manset-widget-2-nav-button:hover {
    background: #e5c158 !important;
    color: #111111 !important;
}

/* ==========================================================================
   SLIDER REVOLUTION LAYERED ANIMATION & KEN BURNS EFFECT ENGINE
   ========================================================================== */

/* 1. Arka Plan Resim Kutusu & Ken Burns Zoom Efekti */
.rev-slide-bg-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}
.rev-slide-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
/* Slayt aktif olduğunda arka plan yavaşça zoom olur (Ken Burns) */
.arse-manset-widget-2-slide.active .rev-slide-bg {
    transform: scale(1.08) !important;
}

/* 2. Premium Degrade Karartma Katmanı */
.rev-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 20%, rgba(0,0,0,0.85) 90%) !important;
    z-index: 2;
    pointer-events: none;
    transition: background 0.5s ease;
}

/* 3. Slider Revolution Katmanlı Animasyon Akış Motoru */
.rev-layers {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px !important;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Pasif Durumda Katmanlar (Ekranda Gizli ve Varsayılan Olarak Aşağıda Bekler) */
.rev-layer-badge,
.rev-layer-title,
.rev-layer-summary,
.rev-layer-btn,
.rev-layer-meta {
    opacity: 0 !important;
    transform: translateY(35px) !important;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Aktif Durumda Katmanlar (Slayt Aktif Olduğunda Sırayla Animasyonla Gelir) */
.arse-manset-widget-2-slide.active .rev-layer-badge,
.arse-manset-widget-2-slide.active .rev-layer-title,
.arse-manset-widget-2-slide.active .rev-layer-summary,
.arse-manset-widget-2-slide.active .rev-layer-btn,
.arse-manset-widget-2-slide.active .rev-layer-meta {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Katmanlar Arası Gecikme (Delay) Süreleri - Slider Revolution İmzası */
.arse-manset-widget-2-slide.active .rev-layer-badge { transition-delay: 0.1s !important; }
.arse-manset-widget-2-slide.active .rev-layer-title { transition-delay: 0.25s !important; }
.arse-manset-widget-2-slide.active .rev-layer-summary { transition-delay: 0.4s !important; }
.arse-manset-widget-2-slide.active .rev-layer-btn { transition-delay: 0.55s !important; }
.arse-manset-widget-2-slide.active .rev-layer-meta { transition-delay: 0.7s !important; }

/* 4. Ek Katman: Summary/Açıklama Katmanı */
.rev-layer-summary {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.5;
    max-width: 600px;
    margin-bottom: 5px;
}

/* ==========================================================================
   15 PREMIUM SLIDER REVOLUTION STİL TASARIMLARI
   ========================================================================== */

/* STYLE-1 (Classic Elegance - Klasik Lüks Modern) */
.hero_slider-module.style-1 {
    --rev-progress-color: #ff2d55;
}
.hero_slider-module.style-1 .rev-layer-title a {
    font-family: var(--font-primary) !important;
    font-weight: 800 !important;
    font-size: 24px !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3) !important;
}
.hero_slider-module.style-1 .rev-layer-summary {
    max-width: 520px;
}
.hero_slider-module.style-1 .rev-btn-primary {
    background: #ff2d55 !important;
    color: #ffffff !important;
}
.hero_slider-module.style-1 .rev-btn-primary:hover {
    box-shadow: 0 8px 25px rgba(255, 45, 85, 0.4) !important;
}
.hero_slider-module.style-1 .rev-counter-current {
    color: #ff2d55;
}
.hero_slider-module.style-1 .arse-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}
.hero_slider-module.style-1 .arse-pagination-bullet.active {
    background: #ff2d55;
    transform: scale(1.3);
}
.hero_slider-module.style-1 .nays-card-glow {
    background: linear-gradient(135deg, rgba(255,45,85,0.03) 0%, transparent 60%);
}

/* STYLE-2 (Glassmorphic Neo-Dark - Buzlu Cam Koyu) */
.hero_slider-module.style-2 {
    --rev-progress-color: #ff2d55;
}
.hero_slider-module.style-2 .rev-layers {
    background: rgba(15, 23, 42, 0.55) !important;
    backdrop-filter: blur(16px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(16px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 20px !important;
    margin: 30px !important;
    width: calc(100% - 60px) !important;
    padding: 30px !important;
    bottom: 10px !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37) !important;
}
.hero_slider-module.style-2 .rev-slide-overlay {
    background: rgba(15, 23, 42, 0.35) !important;
}
.hero_slider-module.style-2 .rev-layer-badge {
    background: linear-gradient(135deg, #ff2d55, #b5179e) !important;
    border-radius: 6px !important;
}
.hero_slider-module.style-2 .rev-layer-title a {
    font-size: 24px !important;
}
.hero_slider-module.style-2 .rev-layer-summary {
    max-width: 500px;
}
.hero_slider-module.style-2 .rev-btn-primary {
    background: linear-gradient(135deg, #ff2d55, #b5179e) !important;
    color: #ffffff !important;
    border-radius: 12px !important;
}
.hero_slider-module.style-2 .rev-btn-primary:hover {
    box-shadow: 0 8px 25px rgba(255, 45, 85, 0.5) !important;
}
.hero_slider-module.style-2 .rev-counter-current {
    color: #ff2d55;
}
.hero_slider-module.style-2 .arse-pagination-bullet {
    width: 24px;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}
.hero_slider-module.style-2 .arse-pagination-bullet.active {
    background: #ff2d55;
    width: 32px;
    box-shadow: 0 0 10px rgba(255, 45, 85, 0.8);
}
.hero_slider-module.style-2 .arse-manset-widget-2-nav-button {
    background: rgba(15, 23, 42, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(8px) !important;
    color: #ffffff !important;
    border-radius: 14px !important;
}
.hero_slider-module.style-2 .arse-manset-widget-2-nav-button:hover {
    background: #ff2d55 !important;
    box-shadow: 0 0 15px rgba(255, 45, 85, 0.6) !important;
}
.hero_slider-module.style-2 .nays-card-glow {
    background: linear-gradient(135deg, rgba(255,45,85,0.05) 0%, transparent 60%);
}

/* STYLE-3 (Minimalist Borderless - Beyaz Magazin) */
.hero_slider-module.style-3 {
    --rev-progress-color: #0f172a;
}
.hero_slider-module.style-3 .rev-layers {
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.98) 90%) !important;
    padding: 60px 40px 40px 40px !important;
}
.hero_slider-module.style-3 .rev-slide-overlay {
    background: none !important;
}
.hero_slider-module.style-3 .rev-layer-title a {
    color: #0f172a !important;
    font-family: 'Syne', sans-serif !important;
    font-weight: 900 !important;
    font-size: 26px !important;
    letter-spacing: -1.5px !important;
}
.hero_slider-module.style-3 .rev-layer-summary {
    color: #475569 !important;
    font-weight: 500;
    max-width: 520px;
}
.hero_slider-module.style-3 .rev-layer-badge {
    background: #0f172a !important;
    color: #ffffff !important;
    border-radius: 0px !important;
}
.hero_slider-module.style-3 .rev-layer-meta {
    color: #64748b !important;
}
.hero_slider-module.style-3 .rev-layer-meta span, 
.hero_slider-module.style-3 .rev-layer-meta i {
    color: #64748b !important;
}
.hero_slider-module.style-3 .rev-btn-primary {
    background: #0f172a !important;
    color: #ffffff !important;
    border-radius: 0 !important;
}
.hero_slider-module.style-3 .rev-btn-primary:hover {
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.3) !important;
}
.hero_slider-module.style-3 .rev-counter-current {
    color: #0f172a;
}
.hero_slider-module.style-3 .rev-counter-sep,
.hero_slider-module.style-3 .rev-counter-total {
    color: rgba(15, 23, 42, 0.4);
}
.hero_slider-module.style-3 .arse-pagination-bullet {
    width: 30px;
    height: 3px;
    background: rgba(15, 23, 42, 0.2);
    border-radius: 0px;
    transition: all 0.4s ease;
}
.hero_slider-module.style-3 .arse-pagination-bullet.active {
    background: #0f172a;
    width: 50px;
}
.hero_slider-module.style-3 .arse-manset-widget-2-nav-button {
    background: #ffffff !important;
    color: #0f172a !important;
    border-radius: 0px !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1) !important;
}
.hero_slider-module.style-3 .arse-manset-widget-2-nav-button:hover {
    background: #0f172a !important;
    color: #ffffff !important;
}
.hero_slider-module.style-3 .nays-card-glow {
    background: linear-gradient(135deg, rgba(15,23,42,0.03) 0%, transparent 60%);
}

/* STYLE-4 (Gradient Accent - Neon Çizgili) */
.hero_slider-module.style-4 {
    --rev-progress-color: #ff2d55;
}
.hero_slider-module.style-4 .arse-manset-widget-2-container::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0; height: 6px;
    background: linear-gradient(90deg, #ff2d55, #007aff, #ffcc00, #ff2d55) !important;
    background-size: 200% auto !important;
    animation: flowGradient 4s linear infinite !important;
    z-index: 10;
}
@keyframes flowGradient {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}
.hero_slider-module.style-4 .rev-layer-title a {
    background: linear-gradient(90deg, #ffffff, #f3f4f6);
    -webkit-background-clip: text;
    background-clip: text;
    font-weight: 900 !important;
    font-size: 26px !important;
}
.hero_slider-module.style-4 .rev-layer-summary {
    max-width: 500px;
}
.hero_slider-module.style-4 .rev-layer-badge {
    background: linear-gradient(90deg, #ff2d55, #007aff) !important;
    border-radius: 30px !important;
    padding: 6px 16px !important;
}
.hero_slider-module.style-4 .rev-btn-primary {
    background: linear-gradient(90deg, #ff2d55, #007aff) !important;
    color: #ffffff !important;
}
.hero_slider-module.style-4 .rev-btn-primary:hover {
    box-shadow: 0 8px 25px rgba(255, 45, 85, 0.4) !important;
}
.hero_slider-module.style-4 .rev-counter-current {
    background: linear-gradient(90deg, #ff2d55, #007aff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero_slider-module.style-4 .arse-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.3);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}
.hero_slider-module.style-4 .arse-pagination-bullet.active {
    background: transparent;
    border-color: #ff2d55;
    box-shadow: 0 0 8px #ff2d55;
    transform: scale(1.2);
}
.hero_slider-module.style-4 .nays-card-glow {
    background: linear-gradient(135deg, rgba(255,45,85,0.05) 0%, rgba(0,122,255,0.03) 60%, transparent 80%);
}

/* STYLE-5 (Asymmetric Magazine - Yamuk Dergi) */
.hero_slider-module.style-5 {
    --rev-progress-color: #ec4899;
}
.hero_slider-module.style-5 .arse-manset-widget-2-container {
    transform: rotate(-1deg) !important;
    border-radius: 24px 8px 24px 8px !important;
    overflow: hidden;
}
.hero_slider-module.style-5 .rev-layers {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.96), rgba(139, 92, 246, 0.96)) !important;
    border-radius: 16px !important;
    margin: 25px !important;
    width: calc(100% - 50px) !important;
    padding: 30px !important;
    transform: rotate(1deg) !important;
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.4) !important;
}
.hero_slider-module.style-5 .rev-layer-title a {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 900 !important;
    font-size: 24px !important;
    text-transform: uppercase;
}
.hero_slider-module.style-5 .rev-layer-summary {
    max-width: 480px;
}
.hero_slider-module.style-5 .rev-btn-primary {
    background: #ffffff !important;
    color: #ec4899 !important;
    border-radius: 8px 4px !important;
}
.hero_slider-module.style-5 .rev-btn-primary:hover {
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.4) !important;
}
.hero_slider-module.style-5 .rev-counter-current {
    color: #ffffff;
}
.hero_slider-module.style-5 .arse-pagination-bullet {
    width: 16px;
    height: 10px;
    border-radius: 8px 4px;
    background: rgba(255,255,255,0.4);
    transition: all 0.3s ease;
}
.hero_slider-module.style-5 .arse-pagination-bullet.active {
    background: #ffffff;
    width: 28px;
    border-radius: 4px 8px;
}
.hero_slider-module.style-5 .arse-manset-widget-2-nav-button {
    border-radius: 12px 4px !important;
    background: #ffffff !important;
    color: #ec4899 !important;
}
.hero_slider-module.style-5 .nays-card-glow {
    background: linear-gradient(135deg, rgba(236,72,153,0.05) 0%, rgba(139,92,246,0.03) 60%, transparent 80%);
}

/* STYLE-6 (Cyberpunk Electro - Neon Grid) */
.hero_slider-module.style-6 {
    --rev-progress-color: #00f0ff;
}
.hero_slider-module.style-6 .arse-manset-widget-2-container {
    border: 2px solid #ff007f !important;
    box-shadow: 0 0 30px rgba(255, 0, 127, 0.3), inset 0 0 60px rgba(0, 240, 255, 0.03) !important;
    border-radius: 0px !important;
}
.hero_slider-module.style-6 .rev-layers {
    background: rgba(10, 5, 18, 0.92) !important;
    border: 1px solid #00f0ff !important;
    margin: 20px !important;
    width: calc(100% - 40px) !important;
    border-radius: 4px !important;
    padding: 25px !important;
}
.hero_slider-module.style-6 .rev-layer-title a {
    color: #00f0ff !important;
    font-family: 'Fira Code', monospace !important;
    font-weight: 700 !important;
    font-size: 23px !important;
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.7) !important;
}
.hero_slider-module.style-6 .rev-layer-summary {
    color: #ff007f !important;
    font-family: 'Fira Code', monospace !important;
    max-width: 500px;
    font-size: 13px !important;
}
.hero_slider-module.style-6 .rev-layer-badge {
    background: #ff007f !important;
    border-radius: 0px !important;
    font-family: 'Fira Code', monospace !important;
}
.hero_slider-module.style-6 .rev-btn-primary {
    background: #00f0ff !important;
    color: #0a0512 !important;
    border-radius: 0 !important;
    font-family: 'Fira Code', monospace !important;
}
.hero_slider-module.style-6 .rev-btn-primary:hover {
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.6) !important;
}
.hero_slider-module.style-6 .rev-counter-current {
    color: #00f0ff;
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.7);
}
.hero_slider-module.style-6 .arse-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #0a0512;
    border: 1px solid #ff007f;
    border-radius: 0px;
    transition: all 0.3s ease;
}
.hero_slider-module.style-6 .arse-pagination-bullet.active {
    background: #00f0ff;
    border-color: #00f0ff;
    box-shadow: 0 0 10px #00f0ff;
    transform: rotate(45deg);
}
.hero_slider-module.style-6 .arse-manset-widget-2-nav-button {
    background: #0a0512 !important;
    color: #ff007f !important;
    border: 1px solid #ff007f !important;
    border-radius: 0px !important;
}
.hero_slider-module.style-6 .arse-manset-widget-2-nav-button:hover {
    background: #ff007f !important;
    color: #ffffff !important;
    box-shadow: 0 0 12px #ff007f !important;
}
.hero_slider-module.style-6 .nays-card-glow {
    background: linear-gradient(135deg, rgba(0,240,255,0.05) 0%, transparent 60%);
}

/* STYLE-7 (Royal Gold & Velvet - Kraliyet Asaleti) */
.hero_slider-module.style-7 {
    --rev-progress-color: #d4af37;
}
.hero_slider-module.style-7 .arse-manset-widget-2-container {
    border: 3px double #d4af37 !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5) !important;
    border-radius: 8px !important;
}
.hero_slider-module.style-7 .rev-slide-overlay {
    background: radial-gradient(circle, rgba(13,20,38,0.2) 0%, rgba(9,14,26,0.95) 100%) !important;
}
.hero_slider-module.style-7 .rev-layer-title a {
    color: #e5c158 !important;
    font-family: 'Playfair Display', serif !important;
    font-size: 26px !important;
    font-style: italic;
    font-weight: 700 !important;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}
.hero_slider-module.style-7 .rev-layer-badge {
    background: transparent !important;
    border: 1px solid #d4af37 !important;
    color: #d4af37 !important;
    border-radius: 30px !important;
    padding: 4px 15px !important;
    letter-spacing: 1px;
}
.hero_slider-module.style-7 .rev-layer-summary {
    color: #ebd391 !important;
    font-family: 'Playfair Display', serif !important;
    max-width: 500px;
}
.hero_slider-module.style-7 .rev-btn-primary {
    background: transparent !important;
    border: 1px solid #d4af37 !important;
    color: #d4af37 !important;
    border-radius: 30px !important;
    letter-spacing: 1px;
}
.hero_slider-module.style-7 .rev-btn-primary:hover {
    background: #d4af37 !important;
    color: #090e1a !important;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4) !important;
}
.hero_slider-module.style-7 .rev-counter-current {
    color: #d4af37;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}
.hero_slider-module.style-7 .arse-pagination-bullet {
    width: 12px;
    height: 12px;
    border: 1px solid #d4af37;
    background: transparent;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.hero_slider-module.style-7 .arse-pagination-bullet.active {
    background: #d4af37;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}
.hero_slider-module.style-7 .arse-manset-widget-2-nav-button {
    border: 1px solid #d4af37 !important;
    background: transparent !important;
    color: #d4af37 !important;
    border-radius: 50% !important;
}
.hero_slider-module.style-7 .arse-manset-widget-2-nav-button:hover {
    background: #d4af37 !important;
    color: #090e1a !important;
}
.hero_slider-module.style-7 .nays-card-glow {
    background: linear-gradient(135deg, rgba(212,175,55,0.06) 0%, transparent 60%);
}

/* STYLE-8 (Clean Soft Light - Pastel Modern) */
.hero_slider-module.style-8 {
    --rev-progress-color: #0284c7;
}
.hero_slider-module.style-8 .arse-manset-widget-2-container {
    border-radius: 32px !important;
    box-shadow: 0 20px 40px rgba(100, 116, 139, 0.12) !important;
}
.hero_slider-module.style-8 .rev-layers {
    background: rgba(255, 255, 255, 0.9) !important;
    border-radius: 24px !important;
    margin: 25px !important;
    width: calc(100% - 50px) !important;
    padding: 30px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05) !important;
}
.hero_slider-module.style-8 .rev-layer-title a {
    color: #1e293b !important;
    font-weight: 700 !important;
    font-size: 24px !important;
}
.hero_slider-module.style-8 .rev-layer-summary {
    color: #64748b !important;
    max-width: 520px;
}
.hero_slider-module.style-8 .rev-layer-badge {
    background: #e0f2fe !important;
    color: #0284c7 !important;
    border-radius: 12px !important;
}
.hero_slider-module.style-8 .rev-layer-meta {
    color: #94a3b8 !important;
}
.hero_slider-module.style-8 .rev-layer-meta span, 
.hero_slider-module.style-8 .rev-layer-meta i {
    color: #94a3b8 !important;
}
.hero_slider-module.style-8 .rev-slide-overlay {
    background: rgba(255,255,255,0.15) !important;
}
.hero_slider-module.style-8 .rev-btn-primary {
    background: #0284c7 !important;
    color: #ffffff !important;
    border-radius: 14px !important;
}
.hero_slider-module.style-8 .rev-btn-primary:hover {
    box-shadow: 0 8px 25px rgba(2, 132, 199, 0.3) !important;
}
.hero_slider-module.style-8 .rev-counter-current {
    color: #0284c7;
}
.hero_slider-module.style-8 .arse-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #cbd5e1;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.hero_slider-module.style-8 .arse-pagination-bullet.active {
    background: #0284c7;
    transform: scale(1.4);
}
.hero_slider-module.style-8 .arse-manset-widget-2-nav-button {
    background: #ffffff !important;
    color: #1e293b !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05) !important;
    border-radius: 16px !important;
}
.hero_slider-module.style-8 .nays-card-glow {
    background: linear-gradient(135deg, rgba(2,132,199,0.04) 0%, transparent 60%);
}

/* STYLE-9 (Monochrome Brutalist - Siyah Beyaz) */
.hero_slider-module.style-9 {
    --rev-progress-color: #000000;
}
.hero_slider-module.style-9 .arse-manset-widget-2-container {
    border: 4px solid #000000 !important;
    border-radius: 0px !important;
    box-shadow: 10px 10px 0px #000000 !important;
}
.hero_slider-module.style-9 .rev-layers {
    background: #ffffff !important;
    border-top: 4px solid #000000 !important;
    color: #000000 !important;
    padding: 30px !important;
    width: 100% !important;
    left: 0 !important;
    bottom: 0 !important;
}
.hero_slider-module.style-9 .rev-layer-title a {
    color: #000000 !important;
    font-weight: 900 !important;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 22px !important;
    letter-spacing: -0.5px;
}
.hero_slider-module.style-9 .rev-layer-summary {
    color: #000000 !important;
    font-weight: 600;
    max-width: 540px;
}
.hero_slider-module.style-9 .rev-layer-badge {
    background: #000000 !important;
    color: #ffffff !important;
    border-radius: 0px !important;
    font-weight: 800 !important;
}
.hero_slider-module.style-9 .rev-layer-meta {
    color: #000000 !important;
}
.hero_slider-module.style-9 .rev-layer-meta span, 
.hero_slider-module.style-9 .rev-layer-meta i {
    color: #000000 !important;
    font-weight: 600;
}
.hero_slider-module.style-9 .rev-btn-primary {
    background: #000000 !important;
    color: #ffffff !important;
    border-radius: 0 !important;
    border: 2px solid #000000 !important;
}
.hero_slider-module.style-9 .rev-btn-primary:hover {
    background: #ffffff !important;
    color: #000000 !important;
    box-shadow: 4px 4px 0 #000000 !important;
    transform: translate(-2px, -2px) !important;
}
.hero_slider-module.style-9 .rev-counter-current {
    color: #000000;
}
.hero_slider-module.style-9 .rev-counter-sep,
.hero_slider-module.style-9 .rev-counter-total {
    color: rgba(0, 0, 0, 0.4);
}
.hero_slider-module.style-9 .arse-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: 0px;
    transition: all 0.2s ease;
}
.hero_slider-module.style-9 .arse-pagination-bullet.active {
    background: #000000;
    transform: scale(1.2);
}
.hero_slider-module.style-9 .arse-manset-widget-2-nav-button {
    background: #ffffff !important;
    color: #000000 !important;
    border: 3px solid #000000 !important;
    border-radius: 0px !important;
    box-shadow: 3px 3px 0px #000000 !important;
}
.hero_slider-module.style-9 .arse-manset-widget-2-nav-button:hover {
    background: #000000 !important;
    color: #ffffff !important;
    box-shadow: 0px 0px 0px #000000 !important;
    transform: translate(3px, 3px) translateY(-50%) !important;
}
.hero_slider-module.style-9 .nays-card-glow {
    display: none;
}

/* STYLE-10 (3D Interactive - Derin Parallax) */
.hero_slider-module.style-10 {
    --rev-progress-color: #6366f1;
}
.hero_slider-module.style-10 .arse-manset-widget-2-container {
    border-radius: 20px !important;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2) !important;
    transition: transform 0.4s ease, box-shadow 0.4s ease !important;
}
.hero_slider-module.style-10 .arse-manset-widget-2-container:hover {
    transform: translateY(-8px) scale(1.005) !important;
    box-shadow: 0 35px 70px rgba(0,0,0,0.3) !important;
}
.hero_slider-module.style-10 .rev-layer-title a {
    font-size: 24px !important;
}
.hero_slider-module.style-10 .rev-layer-summary {
    max-width: 500px;
}
.hero_slider-module.style-10 .rev-btn-primary {
    background: #6366f1 !important;
    color: #ffffff !important;
}
.hero_slider-module.style-10 .rev-btn-primary:hover {
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4) !important;
}
.hero_slider-module.style-10 .rev-counter-current {
    color: #a5b4fc;
}
.hero_slider-module.style-10 .arse-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.hero_slider-module.style-10 .arse-pagination-bullet.active {
    background: #ffffff;
    transform: translateY(-4px) scale(1.3);
}
.hero_slider-module.style-10 .nays-card-glow {
    background: linear-gradient(135deg, rgba(99,102,241,0.05) 0%, transparent 60%);
}

/* STYLE-11 (Futuristic Neumorphism - Neumorfik Gri) */
.hero_slider-module.style-11 {
    --rev-progress-color: #ff2d55;
}
.hero_slider-module.style-11 .arse-manset-widget-2-container {
    background: #e0e0e0 !important;
    border-radius: 24px !important;
    padding: 10px !important;
}
.hero_slider-module.style-11 .rev-layers {
    background: #e0e0e0 !important;
    box-shadow: inset 6px 6px 12px #bebebe, inset -6px -6px 12px #ffffff !important;
    border-radius: 20px !important;
    margin: 20px !important;
    width: calc(100% - 40px) !important;
    padding: 25px !important;
}
.hero_slider-module.style-11 .rev-layer-title a {
    color: #2d3748 !important;
    font-weight: 700 !important;
    font-size: 23px !important;
}
.hero_slider-module.style-11 .rev-layer-summary {
    color: #4a5568 !important;
    max-width: 500px;
}
.hero_slider-module.style-11 .rev-layer-badge {
    background: #e0e0e0 !important;
    color: #4a5568 !important;
    box-shadow: 3px 3px 6px #bebebe, -3px -3px 6px #ffffff !important;
    border-radius: 8px !important;
}
.hero_slider-module.style-11 .rev-layer-meta {
    color: #718096 !important;
}
.hero_slider-module.style-11 .rev-layer-meta span, 
.hero_slider-module.style-11 .rev-layer-meta i {
    color: #718096 !important;
}
.hero_slider-module.style-11 .rev-btn-primary {
    background: #e0e0e0 !important;
    color: #2d3748 !important;
    box-shadow: 4px 4px 8px #bebebe, -4px -4px 8px #ffffff !important;
    border-radius: 12px !important;
}
.hero_slider-module.style-11 .rev-btn-primary:hover {
    box-shadow: inset 4px 4px 8px #bebebe, inset -4px -4px 8px #ffffff !important;
    transform: translateY(0) !important;
}
.hero_slider-module.style-11 .rev-counter-current {
    color: #4a5568;
}
.hero_slider-module.style-11 .arse-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #e0e0e0;
    box-shadow: inset 2px 2px 5px #bebebe, inset -2px -2px 5px #ffffff;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.hero_slider-module.style-11 .arse-pagination-bullet.active {
    box-shadow: 2px 2px 5px #bebebe, -2px -2px 5px #ffffff;
    background: #ff2d55;
}
.hero_slider-module.style-11 .nays-card-glow {
    display: none;
}
.hero_slider-module.style-11 .arse-manset-widget-2-nav-button {
    background: #e0e0e0 !important;
    box-shadow: 4px 4px 8px #bebebe, -4px -4px 8px #ffffff !important;
    color: #4a5568 !important;
}
.hero_slider-module.style-11 .arse-manset-widget-2-nav-button:hover {
    box-shadow: inset 4px 4px 8px #bebebe, inset -4px -4px 8px #ffffff !important;
    color: #ff2d55 !important;
}

/* STYLE-12 (Retro Neon Synthwave - 80'ler Kırmızı-Mor) */
.hero_slider-module.style-12 {
    --rev-progress-color: #ff5e62;
}
.hero_slider-module.style-12 .arse-manset-widget-2-container {
    border: 2px solid #ff5e62 !important;
    box-shadow: 0 0 20px rgba(255, 94, 98, 0.4) !important;
    border-radius: 16px !important;
}
.hero_slider-module.style-12 .rev-slide-overlay {
    background: linear-gradient(180deg, rgba(43, 15, 84, 0.2) 0%, rgba(13, 6, 28, 0.95) 90%) !important;
}
.hero_slider-module.style-12 .rev-layers {
    background: rgba(43, 15, 84, 0.8) !important;
    border: 1px solid #ff5e62 !important;
    border-radius: 12px !important;
    margin: 20px !important;
    width: calc(100% - 40px) !important;
    box-shadow: inset 0 0 15px rgba(255, 94, 98, 0.3) !important;
}
.hero_slider-module.style-12 .rev-layer-title a {
    color: #ff9966 !important;
    font-family: 'Oswald', sans-serif !important;
    font-weight: 700 !important;
    font-size: 25px !important;
    text-transform: uppercase;
    text-shadow: 0 0 8px rgba(255, 153, 102, 0.5) !important;
}
.hero_slider-module.style-12 .rev-layer-summary {
    max-width: 480px;
}
.hero_slider-module.style-12 .rev-layer-badge {
    background: linear-gradient(90deg, #ff5e62, #ff9966) !important;
    border-radius: 4px !important;
    font-family: 'Oswald', sans-serif !important;
}
.hero_slider-module.style-12 .rev-btn-primary {
    background: linear-gradient(90deg, #ff5e62, #ff9966) !important;
    color: #1a0a2e !important;
    border-radius: 4px !important;
    font-family: 'Oswald', sans-serif !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.hero_slider-module.style-12 .rev-btn-primary:hover {
    box-shadow: 0 0 20px rgba(255, 94, 98, 0.5) !important;
}
.hero_slider-module.style-12 .rev-counter-current {
    color: #ff9966;
    text-shadow: 0 0 8px rgba(255, 153, 102, 0.5);
}
.hero_slider-module.style-12 .arse-pagination-bullet {
    width: 25px;
    height: 4px;
    background: rgba(255, 94, 98, 0.3);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.hero_slider-module.style-12 .arse-pagination-bullet.active {
    background: #ff9966;
    box-shadow: 0 0 8px #ff9966;
    width: 40px;
}
.hero_slider-module.style-12 .arse-manset-widget-2-nav-button {
    background: rgba(43, 15, 84, 0.7) !important;
    border: 1px solid #ff5e62 !important;
    color: #ff9966 !important;
    border-radius: 4px !important;
}
.hero_slider-module.style-12 .arse-manset-widget-2-nav-button:hover {
    background: #ff5e62 !important;
    color: #ffffff !important;
    box-shadow: 0 0 15px #ff5e62 !important;
}
.hero_slider-module.style-12 .nays-card-glow {
    background: linear-gradient(135deg, rgba(255,94,98,0.05) 0%, rgba(255,153,102,0.03) 60%, transparent 80%);
}

/* STYLE-13 (Cyberpunk Cyber-Goth - Matrix) */
.hero_slider-module.style-13 {
    --rev-progress-color: #39ff14;
}
.hero_slider-module.style-13 .arse-manset-widget-2-container {
    border: 2px solid #39ff14 !important;
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.25), inset 0 0 60px rgba(57, 255, 20, 0.02) !important;
    border-radius: 0px !important;
}
.hero_slider-module.style-13 .rev-slide-overlay {
    background: linear-gradient(180deg, transparent, #000000 95%) !important;
}
.hero_slider-module.style-13 .rev-layers {
    background: #000000 !important;
    border-top: 3px solid #ff073a !important;
    padding: 25px !important;
}
.hero_slider-module.style-13 .rev-layer-title a {
    color: #39ff14 !important;
    font-family: 'Fira Code', monospace !important;
    font-weight: 700 !important;
    font-size: 23px !important;
    text-shadow: 0 0 8px rgba(57, 255, 20, 0.7) !important;
}
.hero_slider-module.style-13 .rev-layer-summary {
    color: #ffffff !important;
    font-family: 'Fira Code', monospace !important;
    max-width: 500px;
    font-size: 13px !important;
}
.hero_slider-module.style-13 .rev-layer-badge {
    background: #ff073a !important;
    border-radius: 0px !important;
    font-family: 'Fira Code', monospace !important;
}
.hero_slider-module.style-13 .rev-btn-primary {
    background: transparent !important;
    color: #39ff14 !important;
    border: 1px solid #39ff14 !important;
    border-radius: 0 !important;
    font-family: 'Fira Code', monospace !important;
}
.hero_slider-module.style-13 .rev-btn-primary:hover {
    background: #39ff14 !important;
    color: #000000 !important;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.5) !important;
}
.hero_slider-module.style-13 .rev-counter-current {
    color: #39ff14;
    text-shadow: 0 0 8px rgba(57, 255, 20, 0.7);
}
.hero_slider-module.style-13 .arse-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #000000;
    border: 1px solid #39ff14;
    border-radius: 0px;
    transition: all 0.2s ease;
}
.hero_slider-module.style-13 .arse-pagination-bullet.active {
    background: #39ff14;
    box-shadow: 0 0 8px #39ff14;
    transform: scale(1.3);
}
.hero_slider-module.style-13 .nays-card-glow {
    background: linear-gradient(135deg, rgba(57,255,20,0.04) 0%, transparent 60%);
}

/* STYLE-14 (Glassmorphism Light - Premium Frost Light) */
.hero_slider-module.style-14 {
    --rev-progress-color: #0f172a;
}
.hero_slider-module.style-14 .arse-manset-widget-2-container {
    border-radius: 24px !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}
.hero_slider-module.style-14 .rev-layers {
    background: rgba(255, 255, 255, 0.45) !important;
    backdrop-filter: blur(20px) saturate(190%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(190%) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 16px !important;
    margin: 20px !important;
    width: calc(100% - 40px) !important;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.08) !important;
}
.hero_slider-module.style-14 .rev-layer-title a {
    color: #0f172a !important;
    font-weight: 800 !important;
    font-size: 24px !important;
}
.hero_slider-module.style-14 .rev-layer-summary {
    color: #334155 !important;
    max-width: 520px;
}
.hero_slider-module.style-14 .rev-layer-badge {
    background: rgba(15, 23, 42, 0.08) !important;
    color: #0f172a !important;
    border-radius: 8px !important;
}
.hero_slider-module.style-14 .rev-layer-meta {
    color: #475569 !important;
}
.hero_slider-module.style-14 .rev-layer-meta span,
.hero_slider-module.style-14 .rev-layer-meta i {
    color: #475569 !important;
}
.hero_slider-module.style-14 .rev-btn-primary {
    background: rgba(15, 23, 42, 0.1) !important;
    color: #0f172a !important;
    backdrop-filter: blur(4px) !important;
    border: 1px solid rgba(15, 23, 42, 0.1) !important;
}
.hero_slider-module.style-14 .rev-btn-primary:hover {
    background: #0f172a !important;
    color: #ffffff !important;
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.15) !important;
}
.hero_slider-module.style-14 .rev-counter-current {
    color: #0f172a;
}
.hero_slider-module.style-14 .rev-counter-sep,
.hero_slider-module.style-14 .rev-counter-total {
    color: rgba(15, 23, 42, 0.4);
}
.hero_slider-module.style-14 .arse-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(15, 23, 42, 0.15);
    border-radius: 50%;
    transition: all 0.3s ease;
}
.hero_slider-module.style-14 .arse-pagination-bullet.active {
    background: #0f172a;
    transform: scale(1.3);
}
.hero_slider-module.style-14 .nays-card-glow {
    display: none;
}

/* STYLE-15 (Art Deco Vintage - Gatsby Şeritli) */
.hero_slider-module.style-15 {
    --rev-progress-color: #e5c158;
}
.hero_slider-module.style-15 .arse-manset-widget-2-container {
    border: 3px double #e5c158 !important;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6) !important;
    border-radius: 4px !important;
}
.hero_slider-module.style-15 .rev-slide-overlay {
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.2) 0%, rgba(17, 17, 17, 0.95) 90%) !important;
}
.hero_slider-module.style-15 .rev-layers {
    background: rgba(17, 17, 17, 0.92) !important;
    border: 1px solid #e5c158 !important;
    border-radius: 0px !important;
    margin: 25px !important;
    width: calc(100% - 50px) !important;
    padding: 30px !important;
    position: absolute;
    bottom: 20px !important;
}
.hero_slider-module.style-15 .rev-layer-title a {
    color: #e5c158 !important;
    font-family: 'Cinzel', serif !important;
    font-weight: 900 !important;
    font-size: 24px !important;
    letter-spacing: 1px;
    text-shadow: 0 0 20px rgba(229, 193, 88, 0.3);
}
.hero_slider-module.style-15 .rev-layer-summary {
    color: #ebd391 !important;
    font-family: 'Cinzel', serif !important;
    font-size: 13px !important;
    max-width: 500px;
}
.hero_slider-module.style-15 .rev-layer-badge {
    background: transparent !important;
    border: 1px solid #e5c158 !important;
    color: #e5c158 !important;
    border-radius: 0px !important;
    font-family: 'Cinzel', serif !important;
    letter-spacing: 2px;
}
.hero_slider-module.style-15 .rev-layer-meta {
    color: #ebd391 !important;
}
.hero_slider-module.style-15 .rev-layer-meta span,
.hero_slider-module.style-15 .rev-layer-meta i {
    color: #ebd391 !important;
}
.hero_slider-module.style-15 .rev-btn-primary {
    background: transparent !important;
    border: 1px solid #e5c158 !important;
    color: #e5c158 !important;
    border-radius: 0 !important;
    font-family: 'Cinzel', serif !important;
    letter-spacing: 1px;
}
.hero_slider-module.style-15 .rev-btn-primary:hover {
    background: #e5c158 !important;
    color: #111111 !important;
    box-shadow: 0 8px 25px rgba(229, 193, 88, 0.3) !important;
}
.hero_slider-module.style-15 .rev-counter-current {
    color: #e5c158;
    text-shadow: 0 0 10px rgba(229, 193, 88, 0.5);
}
.hero_slider-module.style-15 .arse-pagination-bullet {
    width: 10px;
    height: 10px;
    background: transparent;
    border: 1px solid #e5c158;
    transform: rotate(45deg);
    transition: all 0.3s ease;
}
.hero_slider-module.style-15 .arse-pagination-bullet.active {
    background: #e5c158;
    transform: rotate(45deg) scale(1.3);
}
.hero_slider-module.style-15 .arse-manset-widget-2-nav-button {
    border: 1px solid #e5c158 !important;
    background: transparent !important;
    color: #e5c158 !important;
    border-radius: 0px !important;
}
.hero_slider-module.style-15 .arse-manset-widget-2-nav-button:hover {
    background: #e5c158 !important;
    color: #111111 !important;
}
.hero_slider-module.style-15 .nays-card-glow {
    background: linear-gradient(135deg, rgba(229,193,88,0.05) 0%, transparent 60%);
}

/* ==========================================================================
   SLIDER REVOLUTION — PREMIUM TEMEL BİLEŞENLER
   ========================================================================== */

/* Slider Revolution Progress Bar */
.rev-progress-bar {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 4px;
    z-index: 20;
    pointer-events: none;
}
.rev-progress-bar span {
    display: block;
    height: 100%;
    width: 0%;
    background: var(--rev-progress-color, #ff2d55);
    border-radius: 0 2px 2px 0;
    box-shadow: 0 0 8px var(--rev-progress-color, #ff2d55);
}

/* Slider Revolution Slide Counter */
.rev-slide-counter {
    position: absolute;
    bottom: 25px;
    left: 30px;
    z-index: 15;
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    pointer-events: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition-delay: 0.7s;
}
.arse-manset-widget-2-slide.active .rev-slide-counter {
    opacity: 1;
    transform: translateY(0);
}
.rev-counter-current {
    font-size: 28px;
    color: #ffffff;
    line-height: 1;
}
.rev-counter-sep {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    margin: 0 2px;
}
.rev-counter-total {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}
@media (max-width: 768px) {
    .rev-slide-counter { display: none; }
}

/* Nays Card Glow */
.nays-card {
    position: relative;
    overflow: hidden;
}
.nays-card-glow {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.nays-card:hover .nays-card-glow {
    opacity: 1;
}

/* Dekoratif vektör şekiller (arka plan süslemeleri) */
.rev-deco-shapes {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}
.rev-deco-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: revDecoFloat 12s ease-in-out infinite;
}
.rev-deco-1 {
    width: 300px; height: 300px;
    top: -80px; right: -60px;
    background: radial-gradient(circle, var(--rev-accent, #ff2d55) 0%, transparent 70%);
    animation-delay: 0s;
}
.rev-deco-2 {
    width: 200px; height: 200px;
    bottom: 20%; left: -40px;
    background: radial-gradient(circle, var(--rev-accent-2, #007aff) 0%, transparent 70%);
    animation-delay: -4s;
}
.rev-deco-3 {
    width: 150px; height: 150px;
    top: 40%; left: 60%;
    background: radial-gradient(circle, var(--rev-accent-3, #ffcc00) 0%, transparent 70%);
    animation-delay: -8s;
}
@keyframes revDecoFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -20px) scale(1.1); }
    66% { transform: translate(-10px, 15px) scale(0.95); }
}

/* Devamını Oku Butonu — Slider Revolution CTA Katmanı */
.rev-layer-btn {
    margin-top: 8px;
}
.rev-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 28px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    border-radius: 30px;
    background: var(--rev-btn-bg, #ffffff);
    color: var(--rev-btn-fg, #0f172a) !important;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}
.rev-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--rev-btn-shadow, rgba(255, 255, 255, 0.3));
}
.rev-btn-primary i {
    font-size: 11px;
    transition: transform 0.3s ease;
}
.rev-btn-primary:hover i {
    transform: translateX(4px);
}

/* ==========================================================================
   SLIDER REVOLUTION — GEÇİŞ ANİMASYONLARI (5 YENİ TEMA)
   ========================================================================== */

/* Tema-16: Cinematic Horizon — Orta katman açılımı */
.rev-transition-split .arse-manset-widget-2-slide.active .rev-slide-bg {
    transition: transform 10s cubic-bezier(0.16, 1, 0.3, 1) !important;
    transform: scale(1.12) !important;
}
.rev-transition-split .arse-manset-widget-2-slide {
    transition: clip-path 1.2s cubic-bezier(0.77, 0, 0.18, 1),
                opacity 0.3s ease !important;
    clip-path: circle(0% at 50% 50%);
}
.rev-transition-split .arse-manset-widget-2-slide.active {
    clip-path: circle(140% at 50% 50%);
    opacity: 1;
}

/* Tema-17: Kinetic Burst — Çok yönlü giriş */
.rev-transition-kinetic .arse-manset-widget-2-slide {
    perspective: 1200px;
}
.rev-transition-kinetic .arse-manset-widget-2-slide.active .rev-slide-bg {
    transition: transform 9s cubic-bezier(0.16, 1, 0.3, 1) !important;
    transform: scale(1.08) rotate(-0.5deg) !important;
}

/* Tema-18: Liquid Morph — Yumuşak morf */
@keyframes revLiquidMorph {
    0% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}
.rev-transition-liquid .arse-manset-widget-2-container::before {
    content: '';
    position: absolute;
    top: -20%; left: -20%;
    width: 140%; height: 140%;
    background: radial-gradient(circle at 30% 40%, rgba(52, 232, 158, 0.08) 0%, transparent 60%);
    z-index: 1;
    animation: revLiquidMorph 15s ease-in-out infinite;
    pointer-events: none;
}
.rev-transition-liquid .arse-manset-widget-2-slide.active .rev-slide-bg {
    transform: scale(1.06) !important;
    transition: transform 12s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* Tema-19: Split Dimension — Yarık ekran */
.rev-transition-fission .arse-manset-widget-2-slide {
    perspective: 1000px;
    transform-origin: center;
    transition: transform 1s cubic-bezier(0.68, -0.55, 0.27, 1.55),
                opacity 0.8s ease;
}
.rev-transition-fission .arse-manset-widget-2-slide.active {
    animation: revFissionIn 1.2s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
}
@keyframes revFissionIn {
    0% { opacity: 0; transform: rotateY(15deg) scale(0.9) translateX(-30px); }
    100% { opacity: 1; transform: rotateY(0) scale(1) translateX(0); }
}

/* Tema-20: Holographic Luxe — Kırılma efekti */
.rev-transition-holo .arse-manset-widget-2-slide.active .rev-slide-bg {
    transform: scale(1.05) !important;
    transition: transform 15s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* ==========================================================================
   5 YENİ SLIDER REVOLUTION PREMIUM STİL TASARIMLARI (16 - 20)
   ========================================================================== */

/* STYLE-16: Cinematic Horizon — Sinematografik Orta Açılım */
.hero_slider-module.style-16 {
    --rev-accent: #e5c158;
    --rev-accent-2: #d4af37;
    --rev-accent-3: #f0d78c;
    --rev-btn-bg: linear-gradient(135deg, #e5c158, #d4af37);
    --rev-btn-fg: #0f0c29 !important;
    --rev-btn-shadow: rgba(212, 175, 55, 0.4);
    --rev-progress-color: #e5c158;
}
.hero_slider-module.style-16 .arse-manset-widget-2-container {
    border: 2px solid rgba(212, 175, 55, 0.15) !important;
    box-shadow: 0 25px 50px -8px rgba(0,0,0,0.6), inset 0 0 80px rgba(212, 175, 55, 0.03) !important;
}
.hero_slider-module.style-16 .rev-slide-overlay {
    background: linear-gradient(135deg, rgba(15, 12, 41, 0.92) 0%, rgba(36, 36, 62, 0.7) 100%) !important;
}
.hero_slider-module.style-16 .rev-layers {
    padding: 50px !important;
    max-width: 75%;
}
.hero_slider-module.style-16 .rev-layer-title a {
    font-size: 30px !important;
    font-weight: 900 !important;
    font-family: 'Cinzel', serif !important;
    background: linear-gradient(135deg, #f0d78c 0%, #e5c158 40%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    letter-spacing: 0.5px;
    line-height: 1.2;
}
.hero_slider-module.style-16 .rev-layer-summary {
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 400;
    max-width: 500px;
}
.hero_slider-module.style-16 .rev-layer-badge {
    background: rgba(212, 175, 55, 0.15) !important;
    border: 1px solid rgba(212, 175, 55, 0.4) !important;
    color: #e5c158 !important;
    border-radius: 4px !important;
    padding: 5px 15px !important;
    font-family: 'Cinzel', serif !important;
    letter-spacing: 1px;
}
.hero_slider-module.style-16 .rev-layer-meta {
    color: rgba(255, 255, 255, 0.5) !important;
}
.hero_slider-module.style-16 .rev-layer-meta span,
.hero_slider-module.style-16 .rev-layer-meta i {
    color: rgba(255, 255, 255, 0.5) !important;
}
.hero_slider-module.style-16 .rev-layer-btn {
    transition-delay: 0.55s;
}
.hero_slider-module.style-16 .arse-pagination-bullet {
    width: 28px; height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero_slider-module.style-16 .arse-pagination-bullet.active {
    background: #e5c158;
    width: 48px;
    box-shadow: 0 0 12px rgba(229, 193, 88, 0.5);
}
.hero_slider-module.style-16 .arse-manset-widget-2-nav-button {
    background: rgba(15, 12, 41, 0.7) !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    color: #e5c158 !important;
    backdrop-filter: blur(8px) !important;
    border-radius: 0 !important;
    width: 44px; height: 44px;
}
.hero_slider-module.style-16 .arse-manset-widget-2-nav-button:hover {
    background: #e5c158 !important;
    color: #0f0c29 !important;
    border-color: #e5c158 !important;
    box-shadow: 0 0 20px rgba(229, 193, 88, 0.4) !important;
}

/* STYLE-17: Kinetic Burst — Dinamik Kinetik Patlama */
.hero_slider-module.style-17 {
    --rev-accent: #e94560;
    --rev-accent-2: #533483;
    --rev-accent-3: #0f3460;
    --rev-btn-bg: linear-gradient(135deg, #e94560, #533483);
    --rev-btn-fg: #ffffff !important;
    --rev-btn-shadow: rgba(233, 69, 96, 0.4);
    --rev-progress-color: #e94560;
}
.hero_slider-module.style-17 .arse-manset-widget-2-container {
    border: none !important;
    box-shadow: 0 20px 50px -8px rgba(0,0,0,0.5) !important;
}
.hero_slider-module.style-17 .rev-slide-overlay {
    background: linear-gradient(90deg, rgba(26, 26, 46, 0.95) 0%, rgba(22, 33, 62, 0.6) 100%) !important;
}
.hero_slider-module.style-17 .rev-layers {
    padding: 45px !important;
}
.hero_slider-module.style-17 .rev-layer-title a {
    font-size: 32px !important;
    font-weight: 900 !important;
    font-family: 'Montserrat', sans-serif !important;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffffff 30%, #e94560 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.15;
}
.hero_slider-module.style-17 .rev-layer-summary {
    color: rgba(255, 255, 255, 0.75) !important;
    font-weight: 500;
    max-width: 520px;
    letter-spacing: 0.2px;
}
.hero_slider-module.style-17 .rev-layer-badge {
    background: #e94560 !important;
    border-radius: 2px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: 1px;
    padding: 4px 14px !important;
}
.hero_slider-module.style-17 .rev-layer-meta {
    color: rgba(255, 255, 255, 0.5) !important;
}
.hero_slider-module.style-17 .rev-layer-meta span,
.hero_slider-module.style-17 .rev-layer-meta i {
    color: rgba(255, 255, 255, 0.5) !important;
}
.hero_slider-module.style-17 .rev-btn-primary {
    background: linear-gradient(135deg, #e94560, #533483) !important;
    color: #ffffff !important;
    border-radius: 4px !important;
    padding: 12px 32px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 12px !important;
}
.hero_slider-module.style-17 .rev-btn-primary:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.4) !important;
}
.hero_slider-module.style-17 .arse-pagination-bullet {
    width: 12px; height: 12px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 0;
    transform: rotate(45deg);
    transition: all 0.3s ease;
}
.hero_slider-module.style-17 .arse-pagination-bullet.active {
    background: #e94560;
    border-color: #e94560;
    transform: rotate(45deg) scale(1.3);
    box-shadow: 0 0 10px rgba(233, 69, 96, 0.6);
}
.hero_slider-module.style-17 .arse-manset-widget-2-nav-button {
    background: rgba(26, 26, 46, 0.8) !important;
    border: 1px solid rgba(233, 69, 96, 0.3) !important;
    color: #e94560 !important;
    border-radius: 0 !important;
    width: 46px; height: 46px;
}
.hero_slider-module.style-17 .arse-manset-widget-2-nav-button:hover {
    background: #e94560 !important;
    color: #ffffff !important;
    box-shadow: 0 0 20px rgba(233, 69, 96, 0.5) !important;
    transform: translateY(-50%) scale(1.1) !important;
}

/* STYLE-18: Liquid Morph — Organik Akışkan Gradyan */
.hero_slider-module.style-18 {
    --rev-accent: #34e89e;
    --rev-accent-2: #667eea;
    --rev-accent-3: #0f3443;
    --rev-btn-bg: linear-gradient(135deg, #34e89e, #667eea);
    --rev-btn-fg: #0f3443 !important;
    --rev-btn-shadow: rgba(52, 232, 158, 0.3);
    --rev-progress-color: #34e89e;
}
.hero_slider-module.style-18 .arse-manset-widget-2-container {
    border-radius: 24px !important;
    border: 1px solid rgba(102, 126, 234, 0.15) !important;
    box-shadow: 0 20px 60px -8px rgba(0,0,0,0.4) !important;
}
.hero_slider-module.style-18 .rev-slide-overlay {
    background: linear-gradient(160deg, rgba(15, 52, 67, 0.8) 0%, rgba(102, 126, 234, 0.3) 100%) !important;
}
.hero_slider-module.style-18 .rev-layers {
    padding: 45px !important;
    backdrop-filter: blur(2px) !important;
}
.hero_slider-module.style-18 .rev-layer-title a {
    font-size: 28px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    letter-spacing: -0.3px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    line-height: 1.2;
}
.hero_slider-module.style-18 .rev-layer-summary {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 400;
    max-width: 480px;
}
.hero_slider-module.style-18 .rev-layer-badge {
    background: rgba(52, 232, 158, 0.2) !important;
    border: 1px solid rgba(52, 232, 158, 0.5) !important;
    color: #34e89e !important;
    border-radius: 20px !important;
    padding: 4px 16px !important;
    font-weight: 500;
}
.hero_slider-module.style-18 .rev-layer-meta {
    color: rgba(255, 255, 255, 0.6) !important;
}
.hero_slider-module.style-18 .rev-layer-meta span,
.hero_slider-module.style-18 .rev-layer-meta i {
    color: rgba(255, 255, 255, 0.6) !important;
}
.hero_slider-module.style-18 .rev-btn-primary {
    background: linear-gradient(135deg, #34e89e, #667eea) !important;
    color: #ffffff !important;
    border-radius: 30px !important;
    padding: 11px 30px !important;
    font-weight: 600;
}
.hero_slider-module.style-18 .rev-btn-primary:hover {
    box-shadow: 0 8px 30px rgba(52, 232, 158, 0.4) !important;
}
.hero_slider-module.style-18 .arse-pagination-bullet {
    width: 8px; height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.hero_slider-module.style-18 .arse-pagination-bullet.active {
    background: #34e89e;
    transform: scale(1.8);
    box-shadow: 0 0 15px rgba(52, 232, 158, 0.6);
}
.hero_slider-module.style-18 .arse-manset-widget-2-nav-button {
    background: rgba(15, 52, 67, 0.6) !important;
    border: 1px solid rgba(52, 232, 158, 0.3) !important;
    color: #34e89e !important;
    backdrop-filter: blur(8px) !important;
    width: 42px; height: 42px;
}
.hero_slider-module.style-18 .arse-manset-widget-2-nav-button:hover {
    background: #34e89e !important;
    color: #0f3443 !important;
    box-shadow: 0 0 20px rgba(52, 232, 158, 0.4) !important;
}

/* STYLE-19: Split Dimension — Yarık Ekran 3D Perspektif */
.hero_slider-module.style-19 {
    --rev-accent: #533483;
    --rev-accent-2: #ff2d55;
    --rev-accent-3: #0d0d0d;
    --rev-btn-bg: linear-gradient(135deg, #533483, #ff2d55);
    --rev-btn-fg: #ffffff !important;
    --rev-btn-shadow: rgba(83, 52, 131, 0.4);
    --rev-progress-color: #533483;
}
.hero_slider-module.style-19 .arse-manset-widget-2-container {
    border: 2px solid rgba(83, 52, 131, 0.2) !important;
    box-shadow: 0 20px 50px -8px rgba(0,0,0,0.6), 0 0 0 1px rgba(255, 45, 85, 0.05) inset !important;
    border-radius: 4px !important;
}
.hero_slider-module.style-19 .rev-slide-overlay {
    background: linear-gradient(90deg, rgba(13, 13, 13, 0.92) 0%, rgba(26, 26, 46, 0.5) 100%) !important;
}
.hero_slider-module.style-19 .rev-layers {
    padding: 40px !important;
    max-width: 70%;
}
.hero_slider-module.style-19 .rev-layer-title a {
    font-size: 30px !important;
    font-weight: 900 !important;
    color: #ffffff !important;
    letter-spacing: -0.5px;
    text-shadow: 0 0 30px rgba(83, 52, 131, 0.5);
    line-height: 1.15;
}
.hero_slider-module.style-19 .rev-layer-summary {
    color: rgba(255, 255, 255, 0.65) !important;
    font-weight: 400;
    max-width: 460px;
    font-size: 14px !important;
}
.hero_slider-module.style-19 .rev-layer-badge {
    background: linear-gradient(135deg, #533483, #ff2d55) !important;
    border-radius: 2px !important;
    font-weight: 700 !important;
    padding: 5px 14px !important;
    letter-spacing: 0.5px;
}
.hero_slider-module.style-19 .rev-layer-meta {
    color: rgba(255, 255, 255, 0.5) !important;
}
.hero_slider-module.style-19 .rev-layer-meta span,
.hero_slider-module.style-19 .rev-layer-meta i {
    color: rgba(255, 255, 255, 0.5) !important;
}
.hero_slider-module.style-19 .rev-btn-primary {
    background: linear-gradient(135deg, #533483, #ff2d55) !important;
    color: #ffffff !important;
    border-radius: 2px !important;
    padding: 12px 30px !important;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 12px !important;
}
.hero_slider-module.style-19 .rev-btn-primary:hover {
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 10px 30px rgba(83, 52, 131, 0.5) !important;
}
.hero_slider-module.style-19 .arse-pagination-bullet {
    width: 16px; height: 16px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.hero_slider-module.style-19 .arse-pagination-bullet.active {
    background: #ff2d55;
    border-color: #ff2d55;
    box-shadow: 0 0 12px rgba(255, 45, 85, 0.6);
    transform: scale(0.8);
}
.hero_slider-module.style-19 .arse-manset-widget-2-nav-button {
    background: rgba(13, 13, 13, 0.8) !important;
    border: 1px solid rgba(83, 52, 131, 0.4) !important;
    color: #ffffff !important;
    border-radius: 0 !important;
    width: 48px; height: 48px;
    font-size: 18px !important;
}
.hero_slider-module.style-19 .arse-manset-widget-2-nav-button:hover {
    background: linear-gradient(135deg, #533483, #ff2d55) !important;
    border-color: #ff2d55 !important;
    box-shadow: 0 0 25px rgba(255, 45, 85, 0.4) !important;
}

/* STYLE-20: Holographic Luxe — Holografik Premium Kırılma */
.hero_slider-module.style-20 {
    --rev-accent: #eaafc8;
    --rev-accent-2: #654ea3;
    --rev-accent-3: #f093fb;
    --rev-btn-bg: linear-gradient(135deg, #f093fb, #654ea3);
    --rev-btn-fg: #ffffff !important;
    --rev-btn-shadow: rgba(240, 147, 251, 0.4);
    --rev-progress-color: #f093fb;
}
.hero_slider-module.style-20 .arse-manset-widget-2-container {
    border: 1px solid rgba(240, 147, 251, 0.2) !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 60px -8px rgba(0,0,0,0.5), 0 0 40px rgba(240, 147, 251, 0.05) inset !important;
}
.hero_slider-module.style-20 .rev-slide-overlay {
    background: linear-gradient(160deg, rgba(101, 78, 163, 0.6) 0%, rgba(234, 175, 200, 0.15) 100%) !important;
}
.hero_slider-module.style-20 .rev-layers {
    padding: 45px !important;
    backdrop-filter: blur(4px) !important;
}
.hero_slider-module.style-20 .rev-layer-title a {
    font-size: 29px !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, #ffffff 20%, #f093fb 50%, #eaafc8 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.3px;
    line-height: 1.2;
}
.hero_slider-module.style-20 .rev-layer-summary {
    color: rgba(255, 255, 255, 0.7) !important;
    max-width: 500px;
}
.hero_slider-module.style-20 .rev-layer-badge {
    background: rgba(240, 147, 251, 0.15) !important;
    border: 1px solid rgba(240, 147, 251, 0.4) !important;
    color: #f093fb !important;
    border-radius: 20px !important;
    padding: 4px 16px !important;
    backdrop-filter: blur(4px);
}
.hero_slider-module.style-20 .rev-layer-meta {
    color: rgba(255, 255, 255, 0.55) !important;
}
.hero_slider-module.style-20 .rev-layer-meta span,
.hero_slider-module.style-20 .rev-layer-meta i {
    color: rgba(255, 255, 255, 0.55) !important;
}
.hero_slider-module.style-20 .rev-btn-primary {
    background: linear-gradient(135deg, #f093fb, #654ea3) !important;
    color: #ffffff !important;
    border-radius: 30px !important;
    padding: 11px 32px !important;
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(240, 147, 251, 0.3) !important;
}
.hero_slider-module.style-20 .rev-btn-primary:hover {
    box-shadow: 0 8px 30px rgba(240, 147, 251, 0.5) !important;
    transform: translateY(-2px) !important;
}
.hero_slider-module.style-20 .arse-pagination-bullet {
    width: 10px; height: 10px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(240, 147, 251, 0.3);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.hero_slider-module.style-20 .arse-pagination-bullet.active {
    background: #f093fb;
    border-color: #f093fb;
    box-shadow: 0 0 12px rgba(240, 147, 251, 0.6);
    transform: scale(1.4);
}
.hero_slider-module.style-20 .arse-manset-widget-2-nav-button {
    background: rgba(101, 78, 163, 0.5) !important;
    border: 1px solid rgba(240, 147, 251, 0.3) !important;
    color: #f093fb !important;
    backdrop-filter: blur(10px) !important;
    width: 44px; height: 44px;
}
.hero_slider-module.style-20 .arse-manset-widget-2-nav-button:hover {
    background: linear-gradient(135deg, #f093fb, #654ea3) !important;
    border-color: #f093fb !important;
    color: #ffffff !important;
    box-shadow: 0 0 25px rgba(240, 147, 251, 0.4) !important;
}
.hero_slider-module.style-20 .rev-deco-shape {
    opacity: 0.08 !important;
    animation-duration: 20s !important;
}
.hero_slider-module.style-20 .rev-deco-1 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, #f093fb 0%, transparent 70%) !important;
}
.hero_slider-module.style-20 .rev-deco-2 {
    width: 250px; height: 250px;
    background: radial-gradient(circle, #eaafc8 0%, transparent 70%) !important;
}
.hero_slider-module.style-20 .rev-deco-3 {
    width: 180px; height: 180px;
    background: radial-gradient(circle, #654ea3 0%, transparent 70%) !important;
}

/* ==========================================================================
   11 MODULE-SPECIFIC CONTENT STYLE VARIATIONS (STYLES 2-20)
   Every module below gets a distinct visual personality per style.
   ========================================================================== */
/* ---- SHARED STYLE TOKENS (used by all modules) ---- */
:root {
    --s2-bg: rgba(15,23,42,0.85);
    --s2-fg: #cbd5e1;
    --s2-accent: #ff2d55;
    --s2-border: rgba(255,255,255,0.08);
    --s3-bg: transparent;
    --s3-fg: #0f172a;
    --s3-accent: #0f172a;
    --s4-bg: #ffffff;
    --s4-accent: #ff2d55;
    --s5-bg: #ffffff;
    --s5-accent: #ec4899;
    --s6-bg: #0d0614;
    --s6-fg: #00f0ff;
    --s6-accent: #ff007f;
    --s7-bg: #090e1a;
    --s7-fg: #f1e4c3;
    --s7-accent: #d4af37;
    --s8-bg: #ffffff;
    --s8-fg: #1e293b;
    --s9-bg: #ffffff;
    --s9-fg: #000000;
    --s9-accent: #000000;
    --s10-bg: #ffffff;
    --s10-accent: #6366f1;
    --s11-bg: #e0e0e0;
    --s11-fg: #2d3748;
    --s12-bg: #15052b;
    --s12-fg: #ff9966;
    --s12-accent: #ff5e62;
    --s13-bg: #000000;
    --s13-fg: #ffffff;
    --s13-accent: #39ff14;
    --s14-bg: rgba(255,255,255,0.5);
    --s14-fg: #1e293b;
    --s15-bg: #111111;
    --s15-fg: #ebd391;
    --s15-accent: #e5c158;
}

/* ======================================================================
   SIDEBAR CATEGORIES - Style Variations
   ====================================================================== */

/* style-2: Glassmorphic */
.sidebar_categories-module.style-2 .pars-kategori-2-item {
    background: rgba(15,23,42,0.5) !important; border: 1px solid rgba(255,255,255,0.05) !important; border-radius: 12px !important; margin-bottom: 4px !important; backdrop-filter: blur(8px) !important;
}
.sidebar_categories-module.style-2 .pars-kategori-2-item:hover { border-color: #ff2d55 !important; box-shadow: 0 0 12px rgba(255,45,85,0.15) !important; }
.sidebar_categories-module.style-2 .pars-kategori-2-count { background: rgba(255,45,85,0.15) !important; color: #ff2d55 !important; }
.sidebar_categories-module.style-2 .pars-kategori-2-arrow { color: #ff2d55 !important; }

/* style-3: Minimalist */
.sidebar_categories-module.style-3 .pars-kategori-2-item { background: transparent !important; border: none !important; border-bottom: 1px solid #e2e8f0 !important; border-radius: 0 !important; padding: 10px 0 !important; }
.sidebar_categories-module.style-3 .pars-kategori-2-text { font-weight: 700 !important; font-size: 14px !important; }
.sidebar_categories-module.style-3 .pars-kategori-2-count { background: transparent !important; color: #94a3b8 !important; font-weight: 600 !important; }

/* style-4: Gradient Accent */
.sidebar_categories-module.style-4 .pars-kategori-2-item { border-left: 3px solid transparent !important; border-radius: 0 10px 10px 0 !important; transition: all 0.3s ease !important; }
.sidebar_categories-module.style-4 .pars-kategori-2-item:hover { border-left-color: #ff2d55 !important; background: rgba(255,45,85,0.03) !important; }
.sidebar_categories-module.style-4 .pars-kategori-2-count { background: linear-gradient(135deg, #ff2d55, #007aff) !important; color: #fff !important; border-radius: 20px !important; min-width: 28px !important; text-align: center !important; }

/* style-5: Asymmetric */
.sidebar_categories-module.style-5 .pars-kategori-2-item { transform: rotate(-0.5deg) !important; border-radius: 8px 20px 8px 20px !important; border-left: 3px solid #ec4899 !important; }
.sidebar_categories-module.style-5 .pars-kategori-2-item:hover { transform: rotate(0.5deg) scale(1.02) !important; }

/* style-6: Cyberpunk */
.sidebar_categories-module.style-6 .pars-kategori-2-item { background: rgba(13,6,20,0.6) !important; border: 1px solid #ff007f !important; border-radius: 0 !important; }
.sidebar_categories-module.style-6 .pars-kategori-2-item:hover { box-shadow: 0 0 10px rgba(255,0,127,0.3) !important; border-color: #00f0ff !important; }
.sidebar_categories-module.style-6 .pars-kategori-2-text { color: #00f0ff !important; font-family: 'Courier New', monospace !important; text-transform: uppercase !important; font-size: 11px !important; letter-spacing: 1px !important; }
.sidebar_categories-module.style-6 .pars-kategori-2-count { background: #ff007f !important; color: #0d0614 !important; font-weight: 700 !important; }

/* style-7: Royal Gold */
.sidebar_categories-module.style-7 .pars-kategori-2-item { background: rgba(9,14,26,0.7) !important; border: 1px solid rgba(212,175,55,0.2) !important; border-radius: 4px !important; }
.sidebar_categories-module.style-7 .pars-kategori-2-item:hover { border-color: #d4af37 !important; box-shadow: 0 0 10px rgba(212,175,55,0.15) !important; }
.sidebar_categories-module.style-7 .pars-kategori-2-text { font-family: 'Playfair Display', serif !important; }
.sidebar_categories-module.style-7 .pars-kategori-2-count { background: rgba(212,175,55,0.15) !important; color: #d4af37 !important; }

/* style-8: Clean Soft Light */
.sidebar_categories-module.style-8 .pars-kategori-2-item { background: #f8fafc !important; border-radius: 16px !important; border: 1px solid transparent !important; }
.sidebar_categories-module.style-8 .pars-kategori-2-item:hover { border-color: #e2e8f0 !important; box-shadow: 0 4px 12px rgba(148,163,184,0.08) !important; }
.sidebar_categories-module.style-8 .pars-kategori-2-count { background: #e2e8f0 !important; color: #475569 !important; }

/* style-9: Monochrome Brutalist */
.sidebar_categories-module.style-9 .pars-kategori-2-item { background: #ffffff !important; border: 2px solid #000 !important; border-radius: 0 !important; box-shadow: 3px 3px 0 #000 !important; }
.sidebar_categories-module.style-9 .pars-kategori-2-item:hover { transform: translate(1px,1px) !important; box-shadow: 1px 1px 0 #000 !important; }
.sidebar_categories-module.style-9 .pars-kategori-2-count { background: #000 !important; color: #fff !important; border-radius: 0 !important; }
.sidebar_categories-module.style-9 .pars-kategori-2-arrow { color: #000 !important; }

/* style-10: 3D Interactive */
.sidebar_categories-module.style-10 .pars-kategori-2-item { transition: all 0.3s cubic-bezier(0.165,0.84,0.44,1) !important; border-radius: 12px !important; }
.sidebar_categories-module.style-10 .pars-kategori-2-item:hover { transform: translateY(-2px) scale(1.01) !important; box-shadow: 0 10px 20px rgba(0,0,0,0.06) !important; }

/* style-11: Neumorphism */
.sidebar_categories-module.style-11 .pars-kategori-2-item { background: #e0e0e0 !important; border: none !important; border-radius: 14px !important; box-shadow: 4px 4px 8px #bebebe, -4px -4px 8px #ffffff !important; }
.sidebar_categories-module.style-11 .pars-kategori-2-item:hover { box-shadow: inset 4px 4px 8px #bebebe, inset -4px -4px 8px #ffffff !important; }
.sidebar_categories-module.style-11 .pars-kategori-2-count { background: #d0d0d0 !important; box-shadow: inset 2px 2px 4px #bebebe, inset -2px -2px 4px #ffffff !important; color: #555 !important; }

/* style-12: Retro Neon Synthwave */
.sidebar_categories-module.style-12 .pars-kategori-2-item { background: rgba(43,15,84,0.6) !important; border: 1px solid rgba(255,94,98,0.2) !important; }
.sidebar_categories-module.style-12 .pars-kategori-2-item:hover { border-color: #ff5e62 !important; box-shadow: 0 0 10px rgba(255,94,98,0.2) !important; }
.sidebar_categories-module.style-12 .pars-kategori-2-text { font-family: 'Oswald', sans-serif !important; text-transform: uppercase !important; letter-spacing: 0.5px !important; }
.sidebar_categories-module.style-12 .pars-kategori-2-count { background: #ff5e62 !important; color: #2b0f54 !important; }

/* style-13: Cyber Goth */
.sidebar_categories-module.style-13 .pars-kategori-2-item { background: #000 !important; border: 1px solid #39ff14 !important; border-radius: 0 !important; }
.sidebar_categories-module.style-13 .pars-kategori-2-item:hover { box-shadow: 0 0 8px rgba(57,255,20,0.4) !important; }
.sidebar_categories-module.style-13 .pars-kategori-2-text { font-family: 'Courier New', monospace !important; }
.sidebar_categories-module.style-13 .pars-kategori-2-count { background: #39ff14 !important; color: #000 !important; }

/* style-14: Glassmorphism Light */
.sidebar_categories-module.style-14 .pars-kategori-2-item { background: rgba(255,255,255,0.4) !important; backdrop-filter: blur(10px) !important; border: 1px solid rgba(255,255,255,0.2) !important; border-radius: 14px !important; }
.sidebar_categories-module.style-14 .pars-kategori-2-count { background: rgba(99,102,241,0.1) !important; color: #6366f1 !important; }

/* style-15: Art Deco */
.sidebar_categories-module.style-15 .pars-kategori-2-item { background: rgba(17,17,17,0.7) !important; border: 1px solid rgba(229,193,88,0.15) !important; border-radius: 2px !important; }
.sidebar_categories-module.style-15 .pars-kategori-2-item:hover { border-color: #e5c158 !important; }
.sidebar_categories-module.style-15 .pars-kategori-2-text { font-family: 'Cinzel', serif !important; letter-spacing: 0.5px !important; }
.sidebar_categories-module.style-15 .pars-kategori-2-count { background: rgba(229,193,88,0.15) !important; color: #e5c158 !important; }

/* ======================================================================
   SIDEBAR TRENDS (Yeni/Popüler) - Style Variations
   ====================================================================== */

.sidebar_trends-module.style-2 .custom-tabs button { background: rgba(15,23,42,0.5) !important; border: 1px solid rgba(255,255,255,0.06) !important; color: #cbd5e1 !important; border-radius: 10px !important; backdrop-filter: blur(8px) !important; }
.sidebar_trends-module.style-2 .custom-tabs button.active-tab { background: #ff2d55 !important; color: #fff !important; border-color: #ff2d55 !important; }
.sidebar_trends-module.style-2 .sidebar-item { background: rgba(15,23,42,0.4) !important; border: 1px solid rgba(255,255,255,0.05) !important; border-radius: 12px !important; padding: 10px !important; backdrop-filter: blur(6px) !important; }
.sidebar_trends-module.style-2 .sidebar-item img { border-radius: 8px !important; }
.sidebar_trends-module.style-2 .sidebar-item:hover { border-color: #ff2d55 !important; }

.sidebar_trends-module.style-3 .custom-tabs { border-bottom: 2px solid #0f172a !important; }
.sidebar_trends-module.style-3 .custom-tabs button { background: transparent !important; border: none !important; color: #94a3b8 !important; font-weight: 700 !important; text-transform: uppercase !important; letter-spacing: 0.5px !important; font-size: 11px !important; }
.sidebar_trends-module.style-3 .custom-tabs button.active-tab { color: #0f172a !important; border-bottom: 3px solid #0f172a !important; }
.sidebar_trends-module.style-3 .sidebar-item { border: none !important; border-bottom: 1px solid #e2e8f0 !important; border-radius: 0 !important; padding: 10px 0 !important; }
.sidebar_trends-module.style-3 .sidebar-item img { border-radius: 4px !important; }

.sidebar_trends-module.style-4 .custom-tabs button { border-radius: 20px !important; }
.sidebar_trends-module.style-4 .custom-tabs button.active-tab { background: linear-gradient(135deg, #ff2d55, #007aff) !important; color: #fff !important; border: none !important; }
.sidebar_trends-module.style-4 .sidebar-item { border-left: 3px solid transparent !important; border-radius: 0 10px 10px 0 !important; }
.sidebar_trends-module.style-4 .sidebar-item:hover { border-left-color: #ff2d55 !important; }

.sidebar_trends-module.style-6 .custom-tabs button { background: #0d0614 !important; border: 1px solid #ff007f !important; color: #00f0ff !important; border-radius: 0 !important; font-family: 'Courier New', monospace !important; text-transform: uppercase !important; }
.sidebar_trends-module.style-6 .custom-tabs button.active-tab { background: #ff007f !important; color: #0d0614 !important; }
.sidebar_trends-module.style-6 .sidebar-item { background: #0d0614 !important; border: 1px solid #ff007f !important; border-radius: 0 !important; }
.sidebar_trends-module.style-6 .sidebar-item img { border: 1px solid #00f0ff !important; }

.sidebar_trends-module.style-7 .custom-tabs button { background: #090e1a !important; border: 1px solid rgba(212,175,55,0.2) !important; color: #f1e4c3 !important; font-family: 'Playfair Display', serif !important; }
.sidebar_trends-module.style-7 .custom-tabs button.active-tab { background: #d4af37 !important; color: #090e1a !important; }
.sidebar_trends-module.style-7 .sidebar-item { background: rgba(9,14,26,0.6) !important; border: 1px solid rgba(212,175,55,0.1) !important; }

.sidebar_trends-module.style-9 .custom-tabs button { background: #fff !important; border: 2px solid #000 !important; color: #000 !important; border-radius: 0 !important; font-weight: 900 !important; }
.sidebar_trends-module.style-9 .custom-tabs button.active-tab { background: #000 !important; color: #fff !important; }
.sidebar_trends-module.style-9 .sidebar-item { border: 2px solid #000 !important; border-radius: 0 !important; box-shadow: 3px 3px 0 #000 !important; }

.sidebar_trends-module.style-11 .custom-tabs button { background: #e0e0e0 !important; border: none !important; color: #555 !important; border-radius: 10px !important; box-shadow: 3px 3px 6px #bebebe, -3px -3px 6px #fff !important; }
.sidebar_trends-module.style-11 .custom-tabs button.active-tab { box-shadow: inset 3px 3px 6px #bebebe, inset -3px -3px 6px #fff !important; }
.sidebar_trends-module.style-11 .sidebar-item { background: #e0e0e0 !important; border: none !important; border-radius: 14px !important; box-shadow: 4px 4px 8px #bebebe, -4px -4px 8px #fff !important; }

.sidebar_trends-module.style-12 .custom-tabs button { background: #2b0f54 !important; border: 1px solid #ff5e62 !important; color: #ff9966 !important; font-family: 'Oswald', sans-serif !important; text-transform: uppercase !important; }
.sidebar_trends-module.style-12 .custom-tabs button.active-tab { background: #ff5e62 !important; color: #fff !important; }
.sidebar_trends-module.style-12 .sidebar-item { background: rgba(43,15,84,0.6) !important; border: 1px solid rgba(255,94,98,0.2) !important; }

.sidebar_trends-module.style-13 .custom-tabs button { background: #000 !important; border: 1px solid #39ff14 !important; color: #39ff14 !important; border-radius: 0 !important; font-family: 'Courier New', monospace !important; }
.sidebar_trends-module.style-13 .custom-tabs button.active-tab { background: #39ff14 !important; color: #000 !important; }
.sidebar_trends-module.style-13 .sidebar-item { background: #000 !important; border: 1px solid #39ff14 !important; border-radius: 0 !important; }

.sidebar_trends-module.style-14 .sidebar-item { background: rgba(255,255,255,0.3) !important; backdrop-filter: blur(10px) !important; border: 1px solid rgba(255,255,255,0.2) !important; border-radius: 14px !important; }

.sidebar_trends-module.style-15 .custom-tabs button { background: #111 !important; border: 1px solid rgba(229,193,88,0.2) !important; color: #ebd391 !important; font-family: 'Cinzel', serif !important; }
.sidebar_trends-module.style-15 .custom-tabs button.active-tab { background: #e5c158 !important; color: #111 !important; }
.sidebar_trends-module.style-15 .sidebar-item { background: rgba(17,17,17,0.6) !important; border: 1px solid rgba(229,193,88,0.1) !important; border-radius: 2px !important; }

/* ======================================================================
   SIDEBAR SOCIAL - Style Variations
   ====================================================================== */

.sidebar_social-module.style-2 .pars-sidebar-sosyal-medya-btn { backdrop-filter: blur(8px) !important; border: 1px solid rgba(255,255,255,0.06) !important; border-radius: 12px !important; }
.sidebar_social-module.style-3 .pars-sidebar-sosyal-medya-btn { border: none !important; border-radius: 0 !important; border-bottom: 1px solid #e2e8f0 !important; background: transparent !important; justify-content: flex-start !important; padding: 10px 0 !important; }
.sidebar_social-module.style-4 .pars-sidebar-sosyal-medya-btn { border-radius: 30px !important; transition: all 0.3s ease !important; }
.sidebar_social-module.style-4 .pars-sidebar-sosyal-medya-btn:hover { transform: translateY(-2px) !important; box-shadow: 0 5px 15px rgba(0,0,0,0.08) !important; }
.sidebar_social-module.style-6 .pars-sidebar-sosyal-medya-btn { border-radius: 0 !important; border: 1px solid #ff007f !important; font-family: 'Courier New', monospace !important; text-transform: uppercase !important; font-size: 10px !important; }
.sidebar_social-module.style-7 .pars-sidebar-sosyal-medya-btn { border: 1px solid rgba(212,175,55,0.2) !important; font-family: 'Playfair Display', serif !important; }
.sidebar_social-module.style-9 .pars-sidebar-sosyal-medya-btn { border: 2px solid #000 !important; border-radius: 0 !important; box-shadow: 3px 3px 0 #000 !important; }
.sidebar_social-module.style-9 .pars-sidebar-sosyal-medya-btn:hover { transform: translate(2px,2px) !important; box-shadow: 1px 1px 0 #000 !important; }
.sidebar_social-module.style-11 .pars-sidebar-sosyal-medya-btn { border: none !important; border-radius: 14px !important; box-shadow: 4px 4px 8px #bebebe, -4px -4px 8px #fff !important; }
.sidebar_social-module.style-11 .pars-sidebar-sosyal-medya-btn:hover { box-shadow: inset 3px 3px 6px #bebebe, inset -3px -3px 6px #fff !important; }
.sidebar_social-module.style-12 .pars-sidebar-sosyal-medya-btn { border: 1px solid #ff5e62 !important; font-family: 'Oswald', sans-serif !important; text-transform: uppercase !important; letter-spacing: 0.5px !important; }
.sidebar_social-module.style-13 .pars-sidebar-sosyal-medya-btn { border: 1px solid #39ff14 !important; border-radius: 0 !important; font-family: 'Courier New', monospace !important; }
.sidebar_social-module.style-14 .pars-sidebar-sosyal-medya-btn { backdrop-filter: blur(10px) !important; border: 1px solid rgba(255,255,255,0.2) !important; }
.sidebar_social-module.style-15 .pars-sidebar-sosyal-medya-btn { border: 1px solid rgba(229,193,88,0.15) !important; border-radius: 2px !important; font-family: 'Cinzel', serif !important; }

/* ======================================================================
   SIDEBAR NEWSLETTER - Style Variations
   ====================================================================== */

.sidebar_newsletter-module.style-2 input { background: rgba(15,23,42,0.5) !important; border: 1px solid rgba(255,255,255,0.08) !important; color: #cbd5e1 !important; border-radius: 10px !important; backdrop-filter: blur(8px) !important; }
.sidebar_newsletter-module.style-2 button { background: linear-gradient(135deg, #ff2d55, #b5179e) !important; border-radius: 10px !important; }
.sidebar_newsletter-module.style-3 input { background: transparent !important; border: none !important; border-bottom: 2px solid #0f172a !important; border-radius: 0 !important; padding-left: 0 !important; }
.sidebar_newsletter-module.style-3 button { background: #0f172a !important; border-radius: 0 !important; }
.sidebar_newsletter-module.style-4 input { border: 1px solid #e2e8f0 !important; border-radius: 30px !important; }
.sidebar_newsletter-module.style-4 button { background: linear-gradient(90deg, #ff2d55, #007aff) !important; border-radius: 30px !important; }
.sidebar_newsletter-module.style-6 input { background: #0d0614 !important; border: 1px solid #ff007f !important; color: #00f0ff !important; border-radius: 0 !important; font-family: 'Courier New', monospace !important; }
.sidebar_newsletter-module.style-6 button { background: #ff007f !important; color: #0d0614 !important; border-radius: 0 !important; font-family: 'Courier New', monospace !important; }
.sidebar_newsletter-module.style-7 input { background: #090e1a !important; border: 1px solid rgba(212,175,55,0.2) !important; color: #f1e4c3 !important; }
.sidebar_newsletter-module.style-7 button { background: #d4af37 !important; color: #090e1a !important; }
.sidebar_newsletter-module.style-9 input { border: 2px solid #000 !important; border-radius: 0 !important; }
.sidebar_newsletter-module.style-9 button { background: #000 !important; border-radius: 0 !important; }
.sidebar_newsletter-module.style-11 input { background: #e0e0e0 !important; border: none !important; border-radius: 12px !important; box-shadow: inset 3px 3px 6px #bebebe, inset -3px -3px 6px #fff !important; }
.sidebar_newsletter-module.style-11 button { background: #d0d0d0 !important; color: #333 !important; border-radius: 12px !important; box-shadow: 4px 4px 8px #bebebe, -4px -4px 8px #fff !important; }
.sidebar_newsletter-module.style-12 input { background: #2b0f54 !important; border: 1px solid #ff5e62 !important; color: #ff9966 !important; }
.sidebar_newsletter-module.style-12 button { background: #ff5e62 !important; color: #2b0f54 !important; }
.sidebar_newsletter-module.style-13 input { background: #000 !important; border: 1px solid #39ff14 !important; color: #39ff14 !important; border-radius: 0 !important; }
.sidebar_newsletter-module.style-13 button { background: #39ff14 !important; color: #000 !important; border-radius: 0 !important; }
.sidebar_newsletter-module.style-14 input { background: rgba(255,255,255,0.4) !important; backdrop-filter: blur(10px) !important; border: 1px solid rgba(255,255,255,0.2) !important; }
.sidebar_newsletter-module.style-15 input { background: #111 !important; border: 1px solid rgba(229,193,88,0.15) !important; color: #ebd391 !important; border-radius: 2px !important; }
.sidebar_newsletter-module.style-15 button { background: #e5c158 !important; color: #111 !important; border-radius: 2px !important; font-family: 'Cinzel', serif !important; }

/* ======================================================================
   TAGS CLOUD - Style Variations
   ====================================================================== */

.tags_cloud-module.style-2 .pars-etiketler-2-tag { background: rgba(15,23,42,0.5) !important; border: 1px solid rgba(255,255,255,0.06) !important; color: #cbd5e1 !important; border-radius: 20px !important; backdrop-filter: blur(6px) !important; }
.tags_cloud-module.style-2 .pars-etiketler-2-tag:hover { border-color: #ff2d55 !important; color: #fff !important; }
.tags_cloud-module.style-3 .pars-etiketler-2-tag { background: transparent !important; border: none !important; border-bottom: 1px solid #e2e8f0 !important; border-radius: 0 !important; font-weight: 600 !important; color: #0f172a !important; }
.tags_cloud-module.style-4 .pars-etiketler-2-tag { border-radius: 30px !important; transition: all 0.3s ease !important; }
.tags_cloud-module.style-4 .pars-etiketler-2-tag:hover { background: linear-gradient(135deg, #ff2d55, #007aff) !important; color: #fff !important; }
.tags_cloud-module.style-6 .pars-etiketler-2-tag { background: #0d0614 !important; border: 1px solid #ff007f !important; color: #00f0ff !important; border-radius: 0 !important; font-family: 'Courier New', monospace !important; text-transform: uppercase !important; }
.tags_cloud-module.style-6 .pars-etiketler-2-tag:hover { background: #ff007f !important; color: #0d0614 !important; }
.tags_cloud-module.style-7 .pars-etiketler-2-tag { background: rgba(9,14,26,0.6) !important; border: 1px solid rgba(212,175,55,0.15) !important; color: #f1e4c3 !important; }
.tags_cloud-module.style-7 .pars-etiketler-2-tag:hover { border-color: #d4af37 !important; color: #d4af37 !important; }
.tags_cloud-module.style-9 .pars-etiketler-2-tag { border: 2px solid #000 !important; border-radius: 0 !important; background: #fff !important; color: #000 !important; box-shadow: 2px 2px 0 #000 !important; }
.tags_cloud-module.style-9 .pars-etiketler-2-tag:hover { transform: translate(1px,1px) !important; box-shadow: none !important; }
.tags_cloud-module.style-11 .pars-etiketler-2-tag { background: #e0e0e0 !important; border: none !important; border-radius: 12px !important; box-shadow: 3px 3px 6px #bebebe, -3px -3px 6px #fff !important; }
.tags_cloud-module.style-11 .pars-etiketler-2-tag:hover { box-shadow: inset 3px 3px 6px #bebebe, inset -3px -3px 6px #fff !important; }
.tags_cloud-module.style-12 .pars-etiketler-2-tag { background: rgba(43,15,84,0.5) !important; border: 1px solid rgba(255,94,98,0.2) !important; color: #ff9966 !important; }
.tags_cloud-module.style-12 .pars-etiketler-2-tag:hover { border-color: #ff5e62 !important; }
.tags_cloud-module.style-13 .pars-etiketler-2-tag { background: #000 !important; border: 1px solid #39ff14 !important; color: #39ff14 !important; border-radius: 0 !important; }
.tags_cloud-module.style-13 .pars-etiketler-2-tag:hover { box-shadow: 0 0 8px rgba(57,255,20,0.4) !important; }
.tags_cloud-module.style-14 .pars-etiketler-2-tag { background: rgba(255,255,255,0.35) !important; backdrop-filter: blur(8px) !important; border: 1px solid rgba(255,255,255,0.2) !important; }
.tags_cloud-module.style-15 .pars-etiketler-2-tag { background: rgba(17,17,17,0.6) !important; border: 1px solid rgba(229,193,88,0.12) !important; color: #ebd391 !important; border-radius: 2px !important; font-family: 'Cinzel', serif !important; letter-spacing: 0.3px !important; }

/* ======================================================================
   CATEGORY 5LI - Style Variations
   ====================================================================== */

.category_5li-module.style-2 .pars-kategori-5li-card { border-radius: 16px !important; border: 1px solid rgba(255,255,255,0.06) !important; }
.category_5li-module.style-2 .pars-kategori-5li-content { backdrop-filter: blur(8px) !important; }
.category_5li-module.style-3 .pars-kategori-5li-card { border-radius: 0 !important; border: none !important; box-shadow: none !important; }
.category_5li-module.style-3 .pars-kategori-5li-title { font-size: 1.4rem !important; font-weight: 900 !important; text-transform: uppercase !important; letter-spacing: -1px !important; }
.category_5li-module.style-4 .pars-kategori-5li-card { border-radius: 20px !important; overflow: hidden !important; }
.category_5li-module.style-4 .pars-kategori-5li-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, #ff2d55, #007aff); z-index: 3; }
.category_5li-module.style-6 .pars-kategori-5li-card { border: 2px solid #ff007f !important; border-radius: 0 !important; box-shadow: 0 0 10px rgba(255,0,127,0.2) !important; }
.category_5li-module.style-6 .pars-kategori-5li-title { font-family: 'Courier New', monospace !important; color: #00f0ff !important; text-transform: uppercase !important; }
.category_5li-module.style-7 .pars-kategori-5li-card { border: 2px solid #d4af37 !important; border-radius: 4px !important; }
.category_5li-module.style-7 .pars-kategori-5li-title { font-family: 'Playfair Display', serif !important; }
.category_5li-module.style-9 .pars-kategori-5li-card { border: 3px solid #000 !important; border-radius: 0 !important; box-shadow: 5px 5px 0 #000 !important; }
.category_5li-module.style-11 .pars-kategori-5li-card { border: none !important; border-radius: 20px !important; box-shadow: 5px 5px 10px #bebebe, -5px -5px 10px #fff !important; }
.category_5li-module.style-11 .pars-kategori-5li-question { color: #555 !important; }
.category_5li-module.style-12 .pars-kategori-5li-card { border: 2px solid #ff5e62 !important; }
.category_5li-module.style-12 .pars-kategori-5li-title { font-family: 'Oswald', sans-serif !important; text-transform: uppercase !important; color: #ff9966 !important; }
.category_5li-module.style-13 .pars-kategori-5li-card { border: 2px solid #39ff14 !important; border-radius: 0 !important; box-shadow: 0 0 10px rgba(57,255,20,0.3) !important; }
.category_5li-module.style-13 .pars-kategori-5li-title { font-family: 'Courier New', monospace !important; color: #39ff14 !important; }
.category_5li-module.style-15 .pars-kategori-5li-card { border: 2px solid rgba(229,193,88,0.3) !important; border-radius: 2px !important; }
.category_5li-module.style-15 .pars-kategori-5li-title { font-family: 'Cinzel', serif !important; color: #e5c158 !important; letter-spacing: 1px !important; }

/* ======================================================================
   MODULE 9 CAROUSEL - Style Variations
   ====================================================================== */

.module_9_carousel-module.style-2 .pars-modul-9-slide { border: 1px solid rgba(255,255,255,0.06) !important; border-radius: 16px !important; backdrop-filter: blur(6px) !important; }
.module_9_carousel-module.style-2 .pars-modul-9-content { background: rgba(15,23,42,0.7) !important; backdrop-filter: blur(8px) !important; }
.module_9_carousel-module.style-3 .pars-modul-9-slide { border: none !important; border-radius: 0 !important; }
.module_9_carousel-module.style-3 .pars-modul-9-content { background: linear-gradient(180deg, transparent 0%, #fff 100%) !important; }
.module_9_carousel-module.style-4 .pars-modul-9-slide { border-radius: 20px !important; overflow: hidden !important; }
.module_9_carousel-module.style-6 .pars-modul-9-slide { border: 2px solid #ff007f !important; border-radius: 0 !important; }
.module_9_carousel-module.style-7 .pars-modul-9-slide { border: 1px solid rgba(212,175,55,0.2) !important; border-radius: 4px !important; }
.module_9_carousel-module.style-9 .pars-modul-9-slide { border: 3px solid #000 !important; border-radius: 0 !important; box-shadow: 4px 4px 0 #000 !important; }
.module_9_carousel-module.style-11 .pars-modul-9-slide { border: none !important; border-radius: 16px !important; box-shadow: 5px 5px 10px #bebebe, -5px -5px 10px #fff !important; }
.module_9_carousel-module.style-12 .pars-modul-9-slide { border: 1px solid #ff5e62 !important; }
.module_9_carousel-module.style-13 .pars-modul-9-slide { border: 1px solid #39ff14 !important; border-radius: 0 !important; }
.module_9_carousel-module.style-15 .pars-modul-9-slide { border: 1px solid rgba(229,193,88,0.15) !important; border-radius: 2px !important; }

/* ======================================================================
   TABBED BLOG - Style Variations
   ====================================================================== */

.tabbed_blog-module.style-2 .pars-sekmeli-tab { background: rgba(15,23,42,0.5) !important; border: 1px solid rgba(255,255,255,0.06) !important; color: #cbd5e1 !important; backdrop-filter: blur(6px) !important; }
.tabbed_blog-module.style-2 .pars-sekmeli-tab.active { background: #ff2d55 !important; color: #fff !important; border-color: #ff2d55 !important; }
.tabbed_blog-module.style-2 .pars-sekmeli-blog-card { background: rgba(15,23,42,0.4) !important; border: 1px solid rgba(255,255,255,0.04) !important; backdrop-filter: blur(4px) !important; }
.tabbed_blog-module.style-2 .pars-sekmeli-blog-card:hover { border-color: #ff2d55 !important; }
.tabbed_blog-module.style-3 .pars-sekmeli-tab { background: transparent !important; border: none !important; border-bottom: 2px solid transparent !important; color: #94a3b8 !important; font-weight: 700 !important; text-transform: uppercase !important; letter-spacing: 0.5px !important; }
.tabbed_blog-module.style-3 .pars-sekmeli-tab.active { color: #0f172a !important; border-bottom-color: #0f172a !important; }
.tabbed_blog-module.style-3 .pars-sekmeli-blog-card { border: none !important; border-bottom: 1px solid #e2e8f0 !important; border-radius: 0 !important; }
.tabbed_blog-module.style-4 .pars-sekmeli-tab { border-radius: 20px !important; }
.tabbed_blog-module.style-4 .pars-sekmeli-tab.active { background: linear-gradient(135deg, #ff2d55, #007aff) !important; color: #fff !important; border: none !important; }
.tabbed_blog-module.style-6 .pars-sekmeli-tab { background: #0d0614 !important; border: 1px solid #ff007f !important; color: #00f0ff !important; border-radius: 0 !important; font-family: 'Courier New', monospace !important; }
.tabbed_blog-module.style-6 .pars-sekmeli-tab.active { background: #ff007f !important; color: #0d0614 !important; }
.tabbed_blog-module.style-6 .pars-sekmeli-blog-card { background: #0d0614 !important; border: 1px solid #ff007f !important; border-radius: 0 !important; }
.tabbed_blog-module.style-7 .pars-sekmeli-tab { background: #090e1a !important; border: 1px solid rgba(212,175,55,0.2) !important; color: #f1e4c3 !important; font-family: 'Playfair Display', serif !important; }
.tabbed_blog-module.style-7 .pars-sekmeli-tab.active { background: #d4af37 !important; color: #090e1a !important; }
.tabbed_blog-module.style-7 .pars-sekmeli-blog-card { background: rgba(9,14,26,0.5) !important; border: 1px solid rgba(212,175,55,0.08) !important; }
.tabbed_blog-module.style-9 .pars-sekmeli-tab { border: 2px solid #000 !important; border-radius: 0 !important; color: #000 !important; font-weight: 900 !important; }
.tabbed_blog-module.style-9 .pars-sekmeli-tab.active { background: #000 !important; color: #fff !important; }
.tabbed_blog-module.style-9 .pars-sekmeli-blog-card { border: 2px solid #000 !important; border-radius: 0 !important; box-shadow: 3px 3px 0 #000 !important; }
.tabbed_blog-module.style-11 .pars-sekmeli-tab { background: #e0e0e0 !important; border: none !important; border-radius: 10px !important; box-shadow: 3px 3px 6px #bebebe, -3px -3px 6px #fff !important; color: #555 !important; }
.tabbed_blog-module.style-11 .pars-sekmeli-tab.active { box-shadow: inset 3px 3px 6px #bebebe, inset -3px -3px 6px #fff !important; }
.tabbed_blog-module.style-11 .pars-sekmeli-blog-card { background: #e0e0e0 !important; border: none !important; border-radius: 14px !important; box-shadow: 4px 4px 8px #bebebe, -4px -4px 8px #fff !important; }
.tabbed_blog-module.style-12 .pars-sekmeli-tab { background: #2b0f54 !important; border: 1px solid #ff5e62 !important; color: #ff9966 !important; font-family: 'Oswald', sans-serif !important; text-transform: uppercase !important; }
.tabbed_blog-module.style-12 .pars-sekmeli-tab.active { background: #ff5e62 !important; color: #fff !important; }
.tabbed_blog-module.style-12 .pars-sekmeli-blog-card { background: rgba(43,15,84,0.5) !important; border: 1px solid rgba(255,94,98,0.1) !important; }
.tabbed_blog-module.style-13 .pars-sekmeli-tab { background: #000 !important; border: 1px solid #39ff14 !important; color: #39ff14 !important; border-radius: 0 !important; }
.tabbed_blog-module.style-13 .pars-sekmeli-tab.active { background: #39ff14 !important; color: #000 !important; }
.tabbed_blog-module.style-13 .pars-sekmeli-blog-card { background: #000 !important; border: 1px solid #39ff14 !important; border-radius: 0 !important; }
.tabbed_blog-module.style-14 .pars-sekmeli-blog-card { background: rgba(255,255,255,0.3) !important; backdrop-filter: blur(10px) !important; border: 1px solid rgba(255,255,255,0.2) !important; border-radius: 14px !important; }
.tabbed_blog-module.style-15 .pars-sekmeli-tab { background: #111 !important; border: 1px solid rgba(229,193,88,0.15) !important; color: #ebd391 !important; font-family: 'Cinzel', serif !important; letter-spacing: 0.5px !important; }
.tabbed_blog-module.style-15 .pars-sekmeli-tab.active { background: #e5c158 !important; color: #111 !important; }
.tabbed_blog-module.style-15 .pars-sekmeli-blog-card { background: rgba(17,17,17,0.5) !important; border: 1px solid rgba(229,193,88,0.08) !important; border-radius: 2px !important; }

/* ======================================================================
   TIMELINE STREAM - Style Variations
   ====================================================================== */

.timeline_stream-module.style-2 .pars-blog-post-5-item { background: rgba(15,23,42,0.4) !important; border: 1px solid rgba(255,255,255,0.04) !important; border-radius: 16px !important; backdrop-filter: blur(4px) !important; }
.timeline_stream-module.style-2 .pars-blog-post-5-timeline { background: rgba(255,45,85,0.1) !important; border: 1px solid rgba(255,255,255,0.06) !important; }
.timeline_stream-module.style-3 .pars-blog-post-5-item { border: none !important; border-bottom: 1px solid #e2e8f0 !important; border-radius: 0 !important; }
.timeline_stream-module.style-3 .pars-blog-post-5-timeline { border: none !important; background: transparent !important; }
.timeline_stream-module.style-4 .pars-blog-post-5-item { border-left: 3px solid transparent !important; transition: all 0.3s ease !important; }
.timeline_stream-module.style-4 .pars-blog-post-5-item:hover { border-left-color: #ff2d55 !important; }
.timeline_stream-module.style-6 .pars-blog-post-5-item { background: #0d0614 !important; border: 1px solid #ff007f !important; border-radius: 0 !important; }
.timeline_stream-module.style-6 .pars-blog-post-5-heading { color: #00f0ff !important; font-family: 'Courier New', monospace !important; }
.timeline_stream-module.style-7 .pars-blog-post-5-item { background: rgba(9,14,26,0.5) !important; border: 1px solid rgba(212,175,55,0.1) !important; }
.timeline_stream-module.style-7 .pars-blog-post-5-heading { font-family: 'Playfair Display', serif !important; }
.timeline_stream-module.style-9 .pars-blog-post-5-item { border: 2px solid #000 !important; border-radius: 0 !important; box-shadow: 4px 4px 0 #000 !important; }
.timeline_stream-module.style-11 .pars-blog-post-5-item { background: #e0e0e0 !important; border: none !important; border-radius: 16px !important; box-shadow: 4px 4px 8px #bebebe, -4px -4px 8px #fff !important; }
.timeline_stream-module.style-12 .pars-blog-post-5-item { background: rgba(43,15,84,0.4) !important; border: 1px solid rgba(255,94,98,0.1) !important; }
.timeline_stream-module.style-13 .pars-blog-post-5-item { background: #000 !important; border: 1px solid #39ff14 !important; border-radius: 0 !important; }
.timeline_stream-module.style-13 .pars-blog-post-5-heading { color: #39ff14 !important; font-family: 'Courier New', monospace !important; }
.timeline_stream-module.style-14 .pars-blog-post-5-item { background: rgba(255,255,255,0.3) !important; backdrop-filter: blur(10px) !important; border: 1px solid rgba(255,255,255,0.2) !important; }
.timeline_stream-module.style-15 .pars-blog-post-5-item { background: rgba(17,17,17,0.5) !important; border: 1px solid rgba(229,193,88,0.08) !important; }
.timeline_stream-module.style-15 .pars-blog-post-5-heading { font-family: 'Cinzel', serif !important; color: #e5c158 !important; }

/* ======================================================================
   ZODIAC BAND - Base Styles + Style Variations
   ====================================================================== */

.zodiac_band-module { max-width: 100%; width: 100%; box-sizing: border-box; }

.zodiac-band-inner {
  background: linear-gradient(135deg, #111827 0%, #0f172a 100%);
  padding: 12px 20px; border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.05);
  position: relative; box-sizing: border-box;
}
.zodiac-glow {
  position: absolute; top:0; left:0; right:0; bottom:0;
  background: radial-gradient(circle at 10% 10%, rgba(255, 45, 85, 0.08) 0%, transparent 40%);
  pointer-events: none;
}
.zodiac-home-container {
  display: flex; align-items: center; gap: 15px;
  position: relative; z-index: 2; min-width: 0; max-width: 100%; box-sizing: border-box;
}
.zodiac-title-box {
  display: flex; align-items: center; gap: 8px; flex-shrink: 0;
}
.zodiac-sparkle { font-size: 14px; animation: pulse 2s infinite; }
.zodiac-header-text {
  font-size: 13px; font-weight: 700; color: #ffffff; white-space: nowrap;
}
.zodiac-home-scroll {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
  flex-grow: 1; min-width: 0; padding: 2px 0;
}
@media (max-width: 768px) {
  .zodiac-home-container { flex-direction: column; align-items: flex-start; gap: 10px; }
}
.home-zodiac-link {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 6px 14px; border-radius: 20px;
  text-decoration: none; transition: all 0.2s ease;
  white-space: nowrap; flex-shrink: 0;
}
.home-zodiac-link:hover {
  background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15);
  transform: translateY(-1px);
}
.zodiac-link-icon { font-size: 12px; }
.zodiac-link-text { font-size: 11.5px; font-weight: 600; color: #cbd5e1; }

.zodiac_band-module.style-2 .zodiac-band-inner { background: rgba(15,23,42,0.85); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.06); }
.zodiac_band-module.style-2 .home-zodiac-link { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); }
.zodiac_band-module.style-2 .home-zodiac-link:hover { border-color: #ff2d55; }
.zodiac_band-module.style-3 .zodiac-band-inner { background: transparent; border: none; border-bottom: 2px solid #0f172a; border-radius: 0; padding-left: 0; padding-right: 0; }
.zodiac_band-module.style-3 .home-zodiac-link { background: transparent; border: 1px solid #e2e8f0; }
.zodiac_band-module.style-3 .zodiac-link-text { color: #1e293b; }
.zodiac_band-module.style-4 .zodiac-band-inner { background: linear-gradient(135deg, #f8fafc, #fff); }
.zodiac_band-module.style-4 .zodiac-header-text { color: #1e293b; }
.zodiac_band-module.style-4 .zodiac-link-text { color: #334155; }
.zodiac_band-module.style-6 .zodiac-band-inner { background: #0d0614; border: 2px solid #ff007f; }
.zodiac_band-module.style-6 .home-zodiac-link { border: 1px solid #ff007f; }
.zodiac_band-module.style-6 .zodiac-link-text { color: #00f0ff; font-family: 'Courier New', monospace; }
.zodiac_band-module.style-7 .zodiac-band-inner { background: linear-gradient(135deg, #090e1a, #0d1520); border: 2px solid #d4af37; }
.zodiac_band-module.style-7 .home-zodiac-link { border: 1px solid rgba(212,175,55,0.2); }
.zodiac_band-module.style-7 .zodiac-header-text { color: #d4af37; font-family: 'Playfair Display', serif; }
.zodiac_band-module.style-9 .zodiac-band-inner { background: #fff; border: 3px solid #000; border-radius: 0; box-shadow: 4px 4px 0 #000; }
.zodiac_band-module.style-9 .home-zodiac-link { border: 1px solid #000; }
.zodiac_band-module.style-9 .zodiac-link-text { color: #000; }
.zodiac_band-module.style-11 .zodiac-band-inner { background: #e0e0e0; border: none; border-radius: 20px; box-shadow: 5px 5px 10px #bebebe, -5px -5px 10px #fff; }
.zodiac_band-module.style-11 .home-zodiac-link { border: none; box-shadow: 2px 2px 4px #bebebe, -2px -2px 4px #fff; }
.zodiac_band-module.style-12 .zodiac-band-inner { background: linear-gradient(135deg, #2b0f54, #1a0a33); border: 2px solid #ff5e62; }
.zodiac_band-module.style-12 .zodiac-header-text { font-family: 'Oswald', sans-serif; color: #ff9966; }
.zodiac_band-module.style-13 .zodiac-band-inner { background: #000; border: 2px solid #39ff14; }
.zodiac_band-module.style-13 .home-zodiac-link { border: 1px solid #39ff14; }
.zodiac_band-module.style-13 .zodiac-link-text { color: #39ff14; font-family: 'Courier New', monospace; }
.zodiac_band-module.style-14 .zodiac-band-inner { background: rgba(255,255,255,0.5); backdrop-filter: blur(20px); }
.zodiac_band-module.style-14 .zodiac-header-text { color: #1e293b; }
.zodiac_band-module.style-14 .zodiac-link-text { color: #1e293b; }
.zodiac_band-module.style-15 .zodiac-band-inner { background: #111; border: 2px solid rgba(229,193,88,0.3); }
.zodiac_band-module.style-15 .zodiac-header-text { font-family: 'Cinzel', serif; color: #e5c158; }
.zodiac_band-module.style-15 .home-zodiac-link { border: 1px solid rgba(229,193,88,0.12); }
.zodiac_band-module.style-15 .zodiac-link-text { font-family: 'Cinzel', serif; color: #e5c158; }

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); opacity: 0.8; }
  100% { transform: scale(1); }
}

/* ======================================================================
   STORIES MODULE - Style Variations
   ====================================================================== */

.stories-module.style-2 .pars-hikaye-avatar-container { border: 2px solid rgba(255,45,85,0.4) !important; box-shadow: 0 0 10px rgba(255,45,85,0.15), 0 0 0 3px rgba(15,23,42,0.9) !important; }
.stories-module.style-3 .pars-hikaye-avatar-container { border: 2px solid #0f172a !important; border-radius: 12px !important; }
.stories-module.style-3 .pars-hikaye-kullanici { font-weight: 700 !important; text-transform: uppercase !important; letter-spacing: -0.5px !important; }
.stories-module.style-4 .pars-hikaye-avatar-container { border: 2px solid transparent !important; background: linear-gradient(135deg, #ff2d55, #007aff) border-box !important; -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0); mask-composite: exclude !important; }
.stories-module.style-6 .pars-hikaye-avatar-container { border: 2px solid #ff007f !important; border-radius: 0 !important; }
.stories-module.style-6 .pars-hikaye-kullanici { color: #00f0ff !important; font-family: 'Courier New', monospace !important; text-transform: uppercase !important; }
.stories-module.style-7 .pars-hikaye-avatar-container { border: 2px solid #d4af37 !important; }
.stories-module.style-7 .pars-hikaye-kullanici { font-family: 'Playfair Display', serif !important; color: #d4af37 !important; }
.stories-module.style-9 .pars-hikaye-avatar-container { border: 3px solid #000 !important; border-radius: 0 !important; }
.stories-module.style-9 .pars-hikaye-kullanici { color: #000 !important; font-weight: 900 !important; }
.stories-module.style-11 .pars-hikaye-avatar-container { border: none !important; box-shadow: 3px 3px 6px #bebebe, -3px -3px 6px #fff !important; border-radius: 50% !important; }
.stories-module.style-12 .pars-hikaye-avatar-container { border: 2px solid #ff5e62 !important; }
.stories-module.style-12 .pars-hikaye-kullanici { font-family: 'Oswald', sans-serif !important; color: #ff9966 !important; }
.stories-module.style-13 .pars-hikaye-avatar-container { border: 2px solid #39ff14 !important; border-radius: 0 !important; }
.stories-module.style-13 .pars-hikaye-kullanici { color: #39ff14 !important; font-family: 'Courier New', monospace !important; }
.stories-module.style-14 .pars-hikaye-avatar-container { border: 2px solid rgba(255,255,255,0.3) !important; }
.stories-module.style-15 .pars-hikaye-avatar-container { border: 2px solid #e5c158 !important; }
.stories-module.style-15 .pars-hikaye-kullanici { font-family: 'Cinzel', serif !important; color: #e5c158 !important; }

/* ======================================================================
   HEADER MANAGER - 15 Premium Tasarım
   ====================================================================== */

/* style-1: Klasik Light */
.header-style-1 { background: #ffffff; border-bottom: 1px solid #e2e8f0; }
.header-style-1 .wrapper-header { background: #ffffff; }
.header-style-1 .item-link { color: #1e293b; }
.header-style-1 .item-link:hover { color: #ff2d55; }
.header-style-1 .nav-icon-item { color: #475569; }

/* style-2: Dark Premium */
.header-style-2 { background: linear-gradient(135deg, #0f172a, #1e293b); border-bottom: 1px solid rgba(255,255,255,0.06); }
.header-style-2 .wrapper-header { background: transparent; }
.header-style-2 .item-link { color: #e2e8f0; }
.header-style-2 .item-link:hover { color: #d4af37; }
.header-style-2 .nav-icon-item { color: #94a3b8; }
.header-style-3 { background: rgba(15, 23, 42, 0.15); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255,255,255,0.08); }

.header-style-5 { background: linear-gradient(135deg, #0f0c29, #302b63, #24243e) !important; border-bottom: 1px solid rgba(255,255,255,0.1) !important; }

.header-style-8 { background: #ffffff !important; color: #1e293b !important; border-bottom: 1px solid #e2e8f0 !important; box-shadow: 0 1px 3px rgba(0,0,0,0.04) !important; }

.header-style-9 { background: #f8f5f0 !important; color: #1a1a2e !important; border-bottom: 3px solid #1a1a2e !important; }

.header-style-11 { background: #ffffff !important; color: #1e293b !important; border-bottom: 1px solid #e2e8f0 !important; }

.header-style-14 { background: rgba(255,255,255,0.7); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid rgba(0,0,0,0.04); }

/* style-13: Cyber Goth / Cyberpunk */
.header-style-13 {
    background: rgba(10, 11, 22, 0.9) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border-bottom: 2px solid #39ff14 !important;
    box-shadow: 0 4px 30px rgba(57, 255, 20, 0.2) !important;
}
.header-style-13 .item-link {
    color: #ffffff !important;
}
.header-style-13 .item-link:hover {
    color: #39ff14 !important;
    text-shadow: 0 0 8px #39ff14 !important;
}
.header-style-13 .header-search-toggle,
.header-style-13 .header-theme-toggle,
.header-style-13 .header-mobile-toggle {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(57, 255, 20, 0.3) !important;
    color: #ffffff !important;
}
.header-style-13 .header-search-toggle:hover,
.header-style-13 .header-theme-toggle:hover,
.header-style-13 .header-mobile-toggle:hover {
    background: #39ff14 !important;
    color: #000000 !important;
    box-shadow: 0 0 10px #39ff14 !important;
}

/* Header Sticky */
.header-sticky { position: sticky; top: 0; z-index: 100; }

/* style-4: Gradient Flow */
.header-style-4 {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6) !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2) !important;
}
.header-style-4 .item-link { color: #ffffff !important; }
.header-style-4 .item-link:hover { color: #f3e8ff !important; }
.header-style-4 .header-search-toggle,
.header-style-4 .header-theme-toggle,
.header-style-4 .header-mobile-toggle {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

/* style-6: Neon Dark */
.header-style-6 {
    background: linear-gradient(135deg, #0d0614, #1a0a2e) !important;
    border-bottom: 2px solid #ff007f !important;
    box-shadow: 0 0 15px rgba(255, 0, 127, 0.25) !important;
}
.header-style-6 .item-link { color: #00f0ff !important; }
.header-style-6 .item-link:hover { color: #ff007f !important; text-shadow: 0 0 8px #ff007f !important; }
.header-style-6 .header-search-toggle,
.header-style-6 .header-theme-toggle,
.header-style-6 .header-mobile-toggle {
    color: #00f0ff !important;
    border: 1px solid rgba(0, 240, 255, 0.3) !important;
}

/* style-7: Royal Altın */
.header-style-7 {
    background: linear-gradient(135deg, #090e1a, #1a1a2e) !important;
    border-bottom: 2px solid #d4af37 !important;
}
.header-style-7 .item-link {
    color: #cbd5e1 !important;
    font-family: 'Playfair Display', serif !important;
}
.header-style-7 .item-link:hover { color: #d4af37 !important; }
.header-style-7 .header-search-toggle,
.header-style-7 .header-theme-toggle,
.header-style-7 .header-mobile-toggle {
    color: #d4af37 !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
}

/* style-10: Tech Dark */
.header-style-10 {
    background: #1a1a2e !important;
    border-bottom: 1px solid #16213e !important;
}
.header-style-10 .item-link {
    color: #00ffcc !important;
    font-family: 'Fira Code', monospace !important;
}
.header-style-10 .item-link:hover { color: #ffffff !important; }

/* style-12: Synthwave Retro */
.header-style-12 {
    background: linear-gradient(135deg, #2b0f54, #1a0a33) !important;
    border-bottom: 3px solid #ff5e62 !important;
}
.header-style-12 .item-link {
    color: #ff9966 !important;
    font-family: 'Oswald', sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}
.header-style-12 .item-link:hover { color: #ff5e62 !important; }

/* style-15: Art Deco */
.header-style-15 {
    background: #1a1a2e !important;
    border-bottom: 2px solid #c5a059 !important;
    box-shadow: 0 4px 20px rgba(197, 160, 89, 0.15) !important;
}
.header-style-15 .wrapper-header {
    background: transparent !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}
.header-style-15 .item-link {
    color: #ffffff !important;
    font-family: 'Cinzel', serif !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}
.header-style-15 .item-link:hover {
    color: #c5a059 !important;
    text-shadow: 0 0 5px rgba(197, 160, 89, 0.5) !important;
}
.header-style-15 .nav-icon-item {
    color: #c5a059 !important;
    border: 1px solid rgba(197, 160, 89, 0.3) !important;
    background: rgba(255, 255, 255, 0.03) !important;
}
.header-style-15 .nav-icon-item:hover {
    background: #c5a059 !important;
    color: #1a1a2e !important;
}
.header-style-15 .header-search-toggle,
.header-style-15 .header-theme-toggle,
.header-style-15 .header-mobile-toggle {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(197, 160, 89, 0.3) !important;
    color: #c5a059 !important;
}
.header-style-15 .header-search-toggle:hover,
.header-style-15 .header-theme-toggle:hover,
.header-style-15 .header-mobile-toggle:hover {
    background: #c5a059 !important;
    color: #1a1a2e !important;
}

/* ======================================================================
   FOOTER MANAGER - 15 Premium Tasarım
   ====================================================================== */

/* Footer genel grid yapısı kalıtsal, sadece renk/tipografi varyasyonları */
.footer-style-1 { background-color: #0f172a !important; color: #cbd5e1 !important; border-top: 4px solid #ff2d55 !important; }
.footer-style-1 .footer-widget-title { color: #f1f5f9 !important; }
.footer-style-1 .footer-links a { color: #94a3b8 !important; }
.footer-style-1 .footer-links a:hover { color: #ff2d55 !important; }
.footer-style-1 .footer-links a i { color: #ff2d55 !important; }

.footer-style-2 { background-color: #ffffff !important; color: #1e293b !important; border-top: 2px solid #e2e8f0 !important; }
.footer-style-2 .footer-widget-title { color: #1e293b !important; }
.footer-style-2 .footer-links a { color: #64748b !important; }
.footer-style-2 .footer-links a:hover { color: #3b82f6 !important; }
.footer-style-2 .footer-links a i { color: #3b82f6 !important; }

.footer-style-3 { background-color: #000000 !important; color: #cbd5e1 !important; border-top: 2px solid #8b5cf6 !important; }
.footer-style-3 .footer-widget-title { color: #a78bfa !important; }
.footer-style-3 .footer-links a { color: #94a3b8 !important; }
.footer-style-3 .footer-links a:hover { color: #a78bfa !important; }
.footer-style-3 .footer-links a i { color: #8b5cf6 !important; }

.footer-style-4 { background-color: #1e3a5f !important; color: #e2e8f0 !important; border-top: 3px solid #d4af37 !important; }
.footer-style-4 .footer-widget-title { color: #d4af37 !important; font-family: 'Playfair Display', serif !important; }
.footer-style-4 .footer-links a { color: #94a3b8 !important; }
.footer-style-4 .footer-links a:hover { color: #d4af37 !important; }
.footer-style-4 .footer-links a i { color: #d4af37 !important; }

.footer-style-5 { background: rgba(15,23,42,0.85) !important; color: #ffffff !important; backdrop-filter: blur(20px) !important; border-top: 1px solid rgba(255,255,255,0.08) !important; }
.footer-style-5 .footer-widget-title { color: #ffffff !important; }
.footer-style-5 .footer-links a { color: #94a3b8 !important; }
.footer-style-5 .footer-links a:hover { color: #ff2d55 !important; }
.footer-style-5 .footer-links a i { color: #ff2d55 !important; }

.footer-style-6 { background-color: #0d0614 !important; color: #00f0ff !important; border-top: 3px solid #ff007f !important; }
.footer-style-6 .footer-widget-title { color: #ff007f !important; font-family: 'Courier New', monospace !important; text-transform: uppercase !important; }
.footer-style-6 .footer-links a { color: #00f0ff !important; font-family: 'Courier New', monospace !important; }
.footer-style-6 .footer-links a:hover { color: #ff007f !important; }
.footer-style-6 .footer-links a i { color: #ff007f !important; }

.footer-style-7 { background-color: #090e1a !important; color: #cbd5e1 !important; border-top: 3px solid #d4af37 !important; }
.footer-style-7 .footer-widget-title { color: #d4af37 !important; font-family: 'Playfair Display', serif !important; }
.footer-style-7 .footer-links a { color: #94a3b8 !important; }
.footer-style-7 .footer-links a:hover { color: #d4af37 !important; }
.footer-style-7 .footer-links a i { color: #d4af37 !important; }

.footer-style-8 { background-color: #fdf2f8 !important; color: #831843 !important; border-top: 3px solid #ec4899 !important; }
.footer-style-8 .footer-widget-title { color: #9d174d !important; }
.footer-style-8 .footer-links a { color: #831843 !important; }
.footer-style-8 .footer-links a:hover { color: #ec4899 !important; }
.footer-style-8 .footer-links a i { color: #ec4899 !important; }

.footer-style-9 { background-color: #000000 !important; color: #ffffff !important; border-top: 4px solid #ffffff !important; }
.footer-style-9 .footer-widget-title { color: #ffffff !important; font-weight: 900 !important; text-transform: uppercase !important; }
.footer-style-9 .footer-links a { color: #ffffff !important; }
.footer-style-9 .footer-links a:hover { text-decoration: underline !important; }
.footer-style-9 .footer-links a i { color: #ffffff !important; }

.footer-style-10 { background-color: #0f172a !important; color: #ffffff !important; border-top: none !important; }
.footer-style-10 .footer-widget-title { color: #ffffff !important; }
.footer-style-10 .footer-links a { color: rgba(255,255,255,0.8) !important; }
.footer-style-10 .footer-links a:hover { color: #ffffff !important; }
.footer-style-10 .footer-links a i { color: #ff2d55 !important; }

.footer-style-11 { background-color: #e0e0e0 !important; color: #1e293b !important; border-top: none !important; }
.footer-style-11 .footer-widget-title { color: #1e293b !important; }
.footer-style-11 .footer-links a { color: #475569 !important; }
.footer-style-11 .footer-links a:hover { color: #3b82f6 !important; }
.footer-style-11 .footer-links a i { color: #3b82f6 !important; }

.footer-style-12 { background-color: #2b0f54 !important; color: #a78bfa !important; border-top: 3px solid #ff5e62 !important; }
.footer-style-12 .footer-widget-title { color: #ff9966 !important; font-family: 'Oswald', sans-serif !important; text-transform: uppercase !important; letter-spacing: 2px !important; }
.footer-style-12 .footer-links a { color: #a78bfa !important; }
.footer-style-12 .footer-links a:hover { color: #ff5e62 !important; }
.footer-style-12 .footer-links a i { color: #ff5e62 !important; }

.footer-style-13 { background-color: #1e293b !important; color: #cbd5e1 !important; border-top: 4px solid #ff2d55 !important; }
.footer-style-13 .footer-widget-title { color: #f1f5f9 !important; font-size: 18px !important; }
.footer-style-13 .footer-links a { color: #94a3b8 !important; }
.footer-style-13 .footer-links a:hover { color: #ff2d55 !important; }
.footer-style-13 .footer-links a i { color: #ff2d55 !important; }

.footer-style-14 { background: rgba(255,255,255,0.85) !important; color: #1e293b !important; backdrop-filter: blur(16px) !important; border-top: 1px solid rgba(0,0,0,0.04) !important; }
.footer-style-14 .footer-widget-title { color: #1e293b !important; }
.footer-style-14 .footer-links a { color: #64748b !important; }
.footer-style-14 .footer-links a:hover { color: #6366f1 !important; }
.footer-style-14 .footer-links a i { color: #6366f1 !important; }

.footer-style-15 { background-color: #1a1a2e !important; color: #cbd5e1 !important; border-top: 3px solid #c5a059 !important; }
.footer-style-15 .footer-widget-title { color: #c5a059 !important; font-family: 'Cinzel', serif !important; }
.footer-style-15 .footer-links a { color: #94a3b8 !important; }
.footer-style-15 .footer-links a:hover { color: #c5a059 !important; }
.footer-style-15 .footer-links a i { color: #c5a059 !important; }

