/* ========================================
   CRITICAL CSS - Sadece Gerekli Stiller
   ======================================== */

/* Yükleme Ekranı - Minimal */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #17a2b8;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-bottom: 1rem;
}

.loader-text {
    color: white;
    font-size: 1rem;
    font-weight: 400;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

body.is-preload #wrapper {
    opacity: 0;
}

/* Loader gizlendiğinde animasyonu durdur */
#loader[style*="display: none"] .spinner,
#loader[style*="display:none"] .spinner {
    animation: none !important;
}

/* Loader gizli olduğunda animasyonu durdur */
#loader:not(:visible) .spinner {
    animation: none !important;
}

/* Renk Değişkenleri */
:root {
    --primary-color: #17a2b8;
    --primary-dark: #138496;
    --accent-color: #20c997;
    --gradient-primary: linear-gradient(135deg, #17a2b8, #20c997);
    --gradient-dark: linear-gradient(135deg, #138496, #17a2b8);
    --shadow-light: 0 4px 15px rgba(23, 162, 184, 0.15);
    --shadow-medium: 0 8px 25px rgba(23, 162, 184, 0.25);
}

/* Z-index Düzenlemeleri */
#main {
    position: relative;
    z-index: 2;
    background: white;
}

#sidebar {
    position: relative;
    z-index: 1;
    background: white;
}

.inner {
    position: relative;
    z-index: 3;
    background: white;
}

.posts,
.features {
    position: relative;
    z-index: 1;
}

/* Logo */
.logo strong {
    color: var(--primary-color) !important;
    transition: color 0.2s ease;
}

.logo:hover strong {
    color: var(--accent-color) !important;
}

/* Menü Toggle Butonu */
.menuToggle {
    position: fixed !important;
    top: 2rem !important;
    left: 2rem !important;
    z-index: 10001 !important;
    width: 50px !important;
    height: 50px !important;
    background: var(--gradient-primary) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    font-size: 1.2em !important;
    box-shadow: var(--shadow-medium) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    text-decoration: none !important;
}

.menuToggle:hover {
    background: var(--gradient-dark) !important;
    transform: scale(1.05) !important;
    box-shadow: var(--shadow-medium) !important;
}

/* Menü Animasyonları - Basitleştirilmiş */
body:not(.is-menu-visible) #sidebar {
    transform: translateX(-100%) !important;
    transition: transform 0.3s ease !important;
}

body.is-menu-visible #sidebar {
    transform: translateX(0) !important;
    transition: transform 0.3s ease !important;
}

body:not(.is-menu-visible) #main {
    margin-left: 0 !important;
    width: 100% !important;
    transition: margin-left 0.3s ease !important;
}

body.is-menu-visible #main {
    margin-left: 20rem !important;
    transition: margin-left 0.3s ease !important;
}

body.is-menu-visible::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 999;
    opacity: 1;
    transition: opacity 0.2s ease;
}

#sidebar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 20rem !important;
    height: 100vh !important;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1) !important;
    z-index: 1000 !important;
    overflow-y: auto !important;
}

/* Menü Linkleri - Basitleştirilmiş */
#menu ul li>a {
    transition: color 0.2s ease, padding-left 0.2s ease !important;
    position: relative;
}

#menu ul li>a:hover,
#menu ul li.active>a {
    color: var(--primary-color) !important;
    padding-left: 1.5em !important;
}

#menu ul li>a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.2s ease;
    transform: translateY(-50%);
}

#menu ul li>a:hover::before {
    width: 1em;
}

#menu ul li ul {
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.3s ease, opacity 0.2s ease !important;
    opacity: 0 !important;
}

#menu ul li.active ul {
    max-height: 300px !important;
    opacity: 1 !important;
}

#menu ul li {
    transition: background 0.2s ease !important;
}

#menu ul li:hover {
    background: rgba(23, 162, 184, 0.05) !important;
}

/* Menü Üstündeki Resim */
#menu {
    position: relative;
}

#menu::before {
    content: '';
    display: block;
    width: 100%;
    height: 125px;
    background-image: url('../images/gözler.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 1rem;
    opacity: 0.8;
}

/* Butonlar - Basitleştirilmiş */
#banner .button.big {
    background: var(--gradient-primary) !important;
    border: none !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
    box-shadow: 0 4px 15px rgba(23, 162, 184, 0.3);
}

#banner .button.big:hover {
    background: var(--gradient-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(23, 162, 184, 0.4);
}

.posts article .button,
.mini-posts article .button {
    background: var(--gradient-primary) !important;
    border: none !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.posts article .button:hover,
.mini-posts article .button:hover {
    background: var(--gradient-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(23, 162, 184, 0.3);
}

/* İkonlar - Basitleştirilmiş */
.icons li a {
    transition: color 0.2s ease, transform 0.2s ease !important;
}

.icons li a:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

/* Başlıklar */
header.major h2 {
    color: var(--primary-color) !important;
    position: relative;
    display: inline-block;
}

header.major h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Özellik Kartları - Basitleştirilmiş */
.features article {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.features article:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.features article .icon {
    color: var(--primary-color) !important;
    transition: color 0.2s ease;
}

.features article:hover .icon {
    color: var(--accent-color) !important;
}

/* Haber Kartları - Modern ve Profesyonel Tasarım */
.posts article,
.news-card {
    display: flex !important;
    flex-direction: column !important;
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 16px !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    overflow: hidden !important;
    height: 100% !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1) !important;
    position: relative !important;
}

/* index.html özel düzenlemesi */
.posts article {
    margin: 0 0 3rem 4rem !important;
    width: calc(33.33333% - 4rem) !important;
}

.posts article:hover,
.news-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 20px 40px rgba(23, 162, 184, 0.12) !important;
    border-color: rgba(23, 162, 184, 0.3) !important;
}

/* Görsel Alanı */
.posts article .image,
.news-card .card-image {
    margin: 0 !important;
    overflow: hidden !important;
    display: block !important;
    width: 100% !important;
    position: relative !important;
    height: 220px !important;
    background: #f8f9fa !important;
}

.posts article .image img,
.news-card .card-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.6s ease !important;
    display: block !important;
}

.posts article:hover .image img,
.news-card:hover .card-image img {
    transform: scale(1.1) !important;
}

/* Kart İçeriği - Dinamik Yükseklik Yönetimi */
.news-card .card-content,
.posts article .content {
    padding: 1.5rem !important;
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
}

/* Başlık Tasarımı */
.posts article h3,
.news-card .card-title {
    padding: 0 0 0.8rem 0 !important;
    margin: 0 !important;
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
    color: #2c3e50 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    min-height: 3.2em !important;
}

/* Açıklama Metni */
.posts article p,
.news-card .card-excerpt {
    padding: 0 !important;
    margin: 0 0 1.5rem 0 !important;
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
    color: #5a6c7d !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    flex-grow: 1 !important;
}

/* Alt Bilgi ve Meta */
.news-card .card-meta {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding-top: 1rem !important;
    border-top: 1px solid #f0f2f5 !important;
    margin-top: auto !important;
    font-size: 0.8rem !important;
    color: #94a3b8 !important;
}

.posts article .actions {
    padding: 0 !important;
    margin-top: auto !important;
}

.posts article .actions .button {
    width: 100% !important;
    border-radius: 8px !important;
    text-transform: none !important;
    font-weight: 600 !important;
}

/* Responsive Düzenlemeler */
@media screen and (max-width: 1280px) {
    .posts article {
        width: calc(50% - 4rem) !important;
    }
}

@media screen and (max-width: 736px) {
    .posts article {
        width: 100% !important;
        margin-left: 0 !important;
    }
}

/* Haberler Grid Sayfası Özel Ayarı */
.news-grid {
    gap: 2rem !important;
}

.news-grid .news-card {
    margin: 0 !important;
}



/* responsive düzenlemeler */
@media screen and (max-width: 1680px) {
    .posts article {
        width: calc(50% - 6em);
    }
}

@media screen and (max-width: 1280px) {
    .posts {
        margin: 0 0 2em -3em;
        width: calc(100% + 3em);
    }
    .posts article {
        margin: 0 0 3em 3em;
        width: calc(50% - 3em);
    }
}

@media screen and (max-width: 736px) {
    .posts {
        margin: 0 0 2em 0;
        width: 100%;
    }
    .posts article {
        margin: 0 0 2em 0;
        width: 100%;
    }
}

/* main.css'deki çizgileri gizle */
.posts article:before, .posts article:after {
    display: none !important;
}

/* Mini Posts */
.mini-posts article {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mini-posts article:hover {
    transform: translateX(3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Form Elemanları */
input,
textarea,
select {
    transition: box-shadow 0.2s ease !important;
}

input:focus,
textarea:focus,
select:focus {
    box-shadow: 0 6px 20px rgba(23, 162, 184, 0.2) !important;
}

/* Lazy Loading için */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Performans Optimizasyonları */
.posts article,
.features article,
.mini-posts article,
.button {
    will-change: transform;
    transform: translateZ(0);
}

/* Banner - Basitleştirilmiş */
#banner {
    position: relative;
    overflow: hidden;
}

/* ========================================
   ABOUT PAGE SPECIFIC STYLES - FROM HTML
   ======================================== */

/* Turkuaz renk teması ve gelişmiş animasyonlar */
:root {
    --primary-color: #17a2b8;
    --primary-dark: #138496;
    --accent-color: #20c997;
    --gradient-primary: linear-gradient(135deg, #17a2b8, #20c997);
    --gradient-dark: linear-gradient(135deg, #138496, #17a2b8);
}

/* Ana renk teması */
.logo strong {
    color: var(--primary-color) !important;
    transition: all 0.3s ease;
}

.logo:hover strong {
    color: var(--accent-color) !important;
    text-shadow: 0 0 10px rgba(23, 162, 184, 0.3);
}

/* Buton animasyonları */
.button {
    background: var(--gradient-primary) !important;
    border: none !important;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.button:hover {
    background: var(--gradient-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(23, 162, 184, 0.3);
}

/* Menü animasyonları */
#menu ul li>a {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    position: relative;
}

#menu ul li>a:hover,
#menu ul li.active>a {
    color: var(--primary-color) !important;
    padding-left: 2em !important;
}

#menu ul li>a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    transform: translateY(-50%);
}

#menu ul li>a:hover::before {
    width: 1.5em;
}

/* Gelişmiş menü animasyonları */
#menu ul li ul {
    max-height: 0;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transform: translateY(-10px);
}

#menu ul li.active ul {
    max-height: 300px;
    opacity: 1;
    transform: translateY(0);
}

#menu ul li ul li a {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#menu ul li.active ul li a {
    opacity: 1;
    transform: translateX(0);
}

#menu ul li ul li:nth-child(1) a {
    transition-delay: 0.1s;
}

#menu ul li ul li:nth-child(2) a {
    transition-delay: 0.2s;
}

#menu ul li ul li:nth-child(3) a {
    transition-delay: 0.3s;
}

#menu ul li ul li:nth-child(4) a {
    transition-delay: 0.4s;
}

/* Menü opener animasyonu */
#menu .opener {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

#menu .opener::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#menu li.active .opener::after {
    transform: rotate(180deg);
}

/* Menü hover efektleri */
#menu ul li {
    transition: all 0.2s ease;
}

#menu ul li:hover {
    background: rgba(23, 162, 184, 0.05);
}

/* ========================================
   PROFESYONEL MENÜ SİSTEMİ
======================================== */

/* Menü Toggle Butonu - Sol Tarafta */
.menuToggle {
    position: fixed !important;
    top: 2rem !important;
    left: 2rem !important;
    z-index: 10001 !important;
    width: 50px !important;
    height: 50px !important;
    background: var(--gradient-primary) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    font-size: 1.2em !important;
    box-shadow: 0 8px 25px rgba(23, 162, 184, 0.25) !important;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    text-decoration: none !important;
}

.menuToggle:hover {
    background: var(--gradient-dark) !important;
    transform: scale(1.1) rotate(90deg) !important;
    box-shadow: 0 15px 40px rgba(23, 162, 184, 0.35) !important;
}

/* Menü Açık/Kapalı Durumları - SOL TARAF */
body:not(.is-menu-visible) #sidebar {
    transform: translateX(-100%) !important;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

body.is-menu-visible #sidebar {
    transform: translateX(0) !important;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* Ana İçerik Genişleme - SOL TARAF */
body:not(.is-menu-visible) #main {
    margin-left: 0 !important;
    width: 100% !important;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

body.is-menu-visible #main {
    margin-left: 20rem !important;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* Menü Overlay */
body.is-menu-visible::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 999;
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Menü Profesyonel Stil - SOL TARAF */
#sidebar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 20rem !important;
    height: 100vh !important;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1) !important;
    z-index: 1000 !important;
    overflow-y: auto !important;
}

/* Menü üstünde resim */
#menu {
    position: relative;
}

#menu::before {
    content: '';
    display: block;
    width: 100%;
    height: 125px;
    background-image: url('../images/gözler.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 1rem;
    opacity: 0.8;
}

/* İkon animasyonları */
.icons li a {
    transition: all 0.3s ease !important;
    position: relative;
}

.icons li a:hover {
    color: var(--primary-color) !important;
    transform: translateY(-3px) scale(1.1);
}

.icons li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.icons li a:hover::after {
    width: 100%;
}

/* Başlık animasyonları */
header.major h2 {
    color: var(--primary-color) !important;
    position: relative;
    display: inline-block;
}

header.major h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* About page özel stilleri */
.about-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    margin-bottom: 3rem;
}

.about-hero h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.about-hero h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 2rem;
    max-width: 800px;
}

/* Hakkımızda sayfası metin iyileştirmeleri */
.about-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #333;
    margin-bottom: 1.8rem;
    text-align: justify;
    hyphens: auto;
}

.about-content h2 {
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.features article p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.stats-box {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat p {
    color: #666;
    font-weight: 500;
    margin: 0;
}

/* Gelişmiş animasyonlar */
.features article {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0);
}

.features article:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(23, 162, 184, 0.15);
}

.features article .icon {
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.features article:hover .icon {
    transform: scale(1.2) rotate(10deg);
    color: var(--accent-color) !important;
}

/* Stats animasyonu */
.stat {
    transition: all 0.3s ease;
}

.stat:hover {
    transform: scale(1.1);
}

.stat h3 {
    transition: all 0.3s ease;
}

.stat:hover h3 {
    color: var(--accent-color) !important;
    text-shadow: 0 0 20px rgba(32, 201, 151, 0.3);
}

/* Sayfa yükleme animasyonu */
.inner>* {
    animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered animation */
.features article:nth-child(1) {
    animation-delay: 0.1s;
}

.features article:nth-child(2) {
    animation-delay: 0.2s;
}

.features article:nth-child(3) {
    animation-delay: 0.3s;
}

.features article:nth-child(4) {
    animation-delay: 0.4s;
}

/* Özellik kartları animasyonları */
.features article {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.features article:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.features article .icon {
    color: var(--primary-color) !important;
    transition: all 0.3s ease;
    position: relative;
}

.features article:hover .icon {
    color: var(--accent-color) !important;
    transform: scale(1.1) rotate(5deg);
}

.features article::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(23, 162, 184, 0.05), transparent);
    transition: left 0.6s ease;
}

.features article:hover::before {
    left: 100%;
}

/* Form animasyonları */
input,
textarea,
select {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

input:focus,
textarea:focus,
select:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(23, 162, 184, 0.2) !important;
}

/* Sidebar animasyonları */
#sidebar .inner>* {
    transition: all 0.3s ease;
    transform: translateX(0);
}

#sidebar:hover .inner>* {
    transform: translateX(5px);
}

/* Mükemmel geçiş efektleri */
.enhanced-card {
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: perspective(1000px) rotateX(0deg);
}

.enhanced-card:hover {
    transform: perspective(1000px) rotateX(5deg) translateY(-10px);
    box-shadow: 0 20px 40px rgba(23, 162, 184, 0.3);
}

/* 3D flip efekti */
.flip-card {
    background-color: transparent;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
}

/* Revealed animation class */
.revealed {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Enhanced stat hover effects */
.stat {
    cursor: pointer;
    border-radius: 10px;
    padding: 1rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stat:hover {
    background: linear-gradient(135deg, rgba(23, 162, 184, 0.1), rgba(32, 201, 151, 0.1));
}

/* Glowing effect for icons */
.features article .icon {
    position: relative;
}

.features article:hover .icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(23, 162, 184, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    to {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}
/* ========================================
   HABERLER PAGE SPECIFIC STYLES - FROM HTML
   ======================================== */

/* News Section Colors */
:root {
    --news-red: #e74c3c;
    --news-green: #27ae60;
    --news-orange: #f39c12;
    --news-blue: #3498db;
    --text-primary: #2c3e50;
    --text-secondary: #7f8c8d;
    --bg-light: #f8f9fa;
}

/* Filter Bar */
.filter-bar {
    background: var(--bg-light);
    padding: 1.5rem 0;
    margin-bottom: 2rem;
    border-radius: 10px;
}

.filter-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

.category-filters {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 25px;
    background: white;
    color: var(--text-primary);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.category-btn:hover, .category-btn.active {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.search-box {
    position: relative;
    min-width: 250px;
}

.search-box input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border: 2px solid #e1e8ed;
    border-radius: 25px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(23, 162, 184, 0.1);
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-medium);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.hero-section:hover {
    transform: scale(1.02);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 2rem;
    color: white;
}

.hero-badge {
    display: inline-block;
    background: var(--news-red);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-meta {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); /* Minimum genişliği 300'den 350'ye çıkardık */
    gap: 2.5rem; /* Boşluğu artırdık */
    margin-bottom: 3rem;
}


.card-author {
    font-weight: 500;
}

.card-time {
    font-style: italic;
}

/* Sidebar Styles */
.trending-sidebar {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.trending-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trending-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trending-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e1e8ed;
}

.trending-item:last-child {
    border-bottom: none;
}

.trending-number {
    background: var(--primary-color);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    flex-shrink: 0;
}

.trending-thumb {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.trending-content h4 {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.3;
    margin: 0;
    color: var(--text-primary);
}

/* ========================================
   CONTACT PAGE SPECIFIC STYLES - FROM HTML
   ======================================== */

/* Contact page özel stilleri */
.page-header {
    text-align: center;
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    margin-bottom: 3rem;
    border-radius: 10px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

/* Form stilleri */
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(23, 162, 184, 0.1);
    transform: translateY(-2px);
}

.submit-btn {
    background: var(--gradient-primary) !important;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    width: 100%;
}

.submit-btn:hover {
    background: var(--gradient-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(23, 162, 184, 0.3);
}

/* Enhanced form styles */
.input-wrapper {
    position: relative;
    margin-bottom: 1rem;
}

.input-wrapper.focused input,
.input-wrapper.focused textarea,
.input-wrapper.focused select {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(23, 162, 184, 0.1);
}

/* Ripple effect */
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Enhanced contact grid */
.contact-grid {
    animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Glowing icons */
.features article .icon {
    position: relative;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.features article:hover .icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(23, 162, 184, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

/* Enhanced page header */
.page-header {
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate-slow 30s linear infinite;
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ========================================
   REPORTAJLAR PAGE SPECIFIC STYLES - FROM HTML
   ======================================== */

/* Modern Röportaj Kartları */
.interview-cards {
    display: grid;
    gap: 2rem;
}

.interview-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(23, 162, 184, 0.1);
    padding: 0;
    margin-bottom: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(23, 162, 184, 0.1);
    overflow: hidden;
    position: relative;
}

.interview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.interview-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(23, 162, 184, 0.2);
}

.interview-content {
    padding: 2rem;
}

.interview-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.interview-photo {
    width: 100px !important;
    height: 100px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: 4px solid var(--primary-color) !important;
    box-shadow: 0 8px 20px rgba(23, 162, 184, 0.3) !important;
    transition: all 0.3s ease !important;
    flex-shrink: 0 !important;
    display: block !important;
}

.interview-card:hover .interview-photo {
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.interview-meta {
    flex: 1;
}

.interview-name {
    margin: 0 0 0.5rem 0;
    color: #2c3e50;
    font-size: 1.5em;
    font-weight: 700;
    line-height: 1.2;
}

.interview-profession {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
}

.interview-topic {
    color: #555;
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.interview-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9em;
    color: #666;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stat-item i {
    color: var(--primary-color);
}

.interview-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.read-btn {
    background: var(--gradient-primary);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(23, 162, 184, 0.3);
}

.read-btn:hover {
    background: var(--gradient-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(23, 162, 184, 0.4);
    color: white;
}

.category-tag {
    background: rgba(23, 162, 184, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8em;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .filter-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .category-filters {
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
    
    .search-box {
        min-width: auto;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-card:first-child {
        grid-column: span 1;
    }
    
    .trending-sidebar {
        margin-top: 1rem;
    }
    
    .interview-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .interview-photo {
        width: 80px;
        height: 80px;
    }
    
    .interview-content {
        padding: 1.5rem;
    }
    
    .interview-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 300px;
    }
    
    .hero-overlay {
        padding: 1.5rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .card-content {
        padding: 1rem;
    }
}
/* ========================================
   INDEX PAGE SPECIFIC STYLES - FROM HTML
   ======================================== */

/* Spinner animasyonunu preload durumunda da çalıştır */
body.is-preload .spinner {
    animation: spin 0.8s linear infinite;
}

/* Site içeriği başlangıçta gizli */
body.is-preload #wrapper {
    opacity: 0;
}

/* PERFORMANS OPTİMİZASYONU */
.posts article,
.features article,
.mini-posts article,
.button {
    will-change: transform;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/* Fix text overlap - keep animations */
#main {
    position: relative;
    z-index: 2;
    background: white;
}

#sidebar {
    position: relative;
    z-index: 1;
    background: white;
}

.inner {
    position: relative;
    z-index: 3;
    background: white;
}

/* Prevent transform stacking issues */
.posts,
.features {
    position: relative;
    z-index: 1;
}

/* BUTON ANİMASYONLARI */
/* Ana Banner Butonu */
#banner .button.big {
    background: var(--gradient-primary) !important;
    border: none !important;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(23, 162, 184, 0.3);
}

#banner .button.big:hover {
    background: var(--gradient-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(23, 162, 184, 0.4);
}

#banner .button.big::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

#banner .button.big:hover::before {
    left: 100%;
}

/* Diğer Butonlar */
.posts article .button,
.mini-posts article .button {
    background: var(--gradient-primary) !important;
    border: none !important;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.posts article .button:hover,
.mini-posts article .button:hover {
    background: var(--gradient-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(23, 162, 184, 0.3);
}

/* MENÜ ANİMASYONLARI */
/* Menü Linkleri */
#menu ul li>a {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    position: relative;
}

#menu ul li>a:hover,
#menu ul li.active>a {
    color: var(--primary-color) !important;
    padding-left: 2em !important;
}

#menu ul li>a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    transform: translateY(-50%);
}

#menu ul li>a:hover::before {
    width: 1.5em;
}

/* Alt Menü Animasyonları */
#menu ul li ul {
    max-height: 0 !important;
    overflow: hidden !important;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    opacity: 0 !important;
    transform: translateY(-10px) !important;
}

#menu ul li.active ul {
    max-height: 300px !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

#menu ul li ul li a {
    opacity: 0 !important;
    transform: translateX(-30px) !important;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

#menu ul li.active ul li a {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

/* Staggered Animation Delays */
#menu ul li ul li:nth-child(1) a {
    transition-delay: 0.1s !important;
}

#menu ul li ul li:nth-child(2) a {
    transition-delay: 0.2s !important;
}

#menu ul li ul li:nth-child(3) a {
    transition-delay: 0.3s !important;
}

#menu ul li ul li:nth-child(4) a {
    transition-delay: 0.4s !important;
}

/* Menü Açma/Kapama İkonu */
#menu .opener {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    position: relative !important;
}

#menu .opener::after {
    content: '\f107' !important;
    font-family: 'Font Awesome 5 Free' !important;
    font-weight: 900 !important;
    position: absolute !important;
    right: 0 !important;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

#menu li.active .opener::after {
    transform: rotate(180deg) !important;
}

/* Menü Hover Efektleri */
#menu ul li {
    transition: all 0.2s ease !important;
}

#menu ul li:hover {
    background: rgba(23, 162, 184, 0.05) !important;
}

/* MENÜ ÜSTÜNDEKİ RESİM */
#menu {
    position: relative;
}

#menu::before {
    content: '';
    display: block;
    width: 100%;
    height: 125px;
    background-image: url('images/gözler.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 1rem;
    opacity: 0.8;
}

/* İKON ANİMASYONLARI */
.icons li a {
    transition: all 0.3s ease !important;
    position: relative;
}

.icons li a:hover {
    color: var(--primary-color) !important;
    transform: translateY(-3px) scale(1.1);
}

.icons li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.icons li a:hover::after {
    width: 100%;
}

/* BAŞLIK ANİMASYONLARI */
header.major h2 {
    color: var(--primary-color) !important;
    position: relative;
    display: inline-block;
}

header.major h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* ÖZELLİK KARTLARI ANİMASYONLARI */
.features article {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.features article:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.features article .icon {
    color: var(--primary-color) !important;
    transition: all 0.3s ease;
    position: relative;
}

.features article:hover .icon {
    color: var(--accent-color) !important;
    transform: scale(1.1) rotate(5deg);
}

.features article::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(23, 162, 184, 0.05), transparent);
    transition: left 0.6s ease;
}

.features article:hover::before {
    left: 100%;
}

/* HABER KARTLARI ANİMASYONLARI */
.posts article {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.posts article:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.posts article .image {
    overflow: hidden;
}

.posts article .image img {
    transition: transform 0.4s ease;
}

.posts article:hover .image img {
    transform: scale(1.05);
}

/* MİNİ POSTS ANİMASYONLARI */
.mini-posts article {
    transition: all 0.3s ease;
}

.mini-posts article:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* SIDEBAR ANİMASYONLARI */
#sidebar {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* SAYFA YÜKLEME ANİMASYONLARI */
body.is-preload * {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FORM ANİMASYONLARI */
input,
textarea,
select {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

input:focus,
textarea:focus,
select:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(23, 162, 184, 0.2) !important;
}

/* GELİŞMİŞ ANİMASYONLAR */
.inner>* {
    animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered Animation */
.features article:nth-child(1) {
    animation-delay: 0.1s;
}

.features article:nth-child(2) {
    animation-delay: 0.2s;
}

.features article:nth-child(3) {
    animation-delay: 0.3s;
}

.features article:nth-child(4) {
    animation-delay: 0.4s;
}

.posts article:nth-child(1) {
    animation-delay: 0.1s;
}

.posts article:nth-child(2) {
    animation-delay: 0.2s;
}

.posts article:nth-child(3) {
    animation-delay: 0.3s;
}

.posts article:nth-child(4) {
    animation-delay: 0.4s;
}

.posts article:nth-child(5) {
    animation-delay: 0.5s;
}

.posts article:nth-child(6) {
    animation-delay: 0.6s;
}

/* ÖZEL EFEKTLER */
.posts article h3:hover {
    color: var(--primary-color) !important;
    transition: color 0.3s ease;
}

#banner {
    position: relative;
    overflow: hidden;
}

#banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(23, 162, 184, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.features article:hover {
    animation: float 2s ease-in-out infinite;
}