/* GENEL STİLLER */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
    padding-top: 60px;
}

.main-content {
    padding: 0 3px;
    min-height: calc(100vh - 120px);
    background: #ffffff;
}

.mobile-main-content {
    padding: 0 3px;
    min-height: calc(100vh - 120px);
    background: #ffffff;
}

/* HEADER STİLLERİ */
/* HEADER STİLLERİ */
.mobile-header {
    background: linear-gradient(135deg, #35444c, #35444c);
    padding: 10px 15px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 3px solid #db0808 !important; /* KIRMIZI BURADA */
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.mobile-logo-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.mobile-logo {
    height: 35px;
    width: auto;
    filter: brightness(0) invert(1);
}

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

.mobile-icon-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-icon-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* MENÜ STİLLERİ - GÜNCELLENMİŞ */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    transition: left 0.3s ease;
}

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

.mobile-menu-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 100%;
    background: #1a1a1a;
    padding: 20px;
    overflow-y: auto;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #8B0000;
}

.mobile-menu-header h3 {
    color: white;
    font-size: 1.3rem;
    margin: 0;
}

.close-mobile-menu {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-mobile-menu:hover {
    color: #8B0000;
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu-section {
    margin-bottom: 8px;
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    background: #2d2d2d;
    margin-bottom: 4px;
    border: 1px solid #333;
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mobile-menu-item.has-submenu {
    background: #3d3d3d;
    border-color: #8B0000;
    position: relative;
    padding-right: 40px;
}

.mobile-menu-item.has-submenu::after {
    content: '›';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #8B0000;
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.mobile-menu-item.has-submenu.active::after {
    transform: translateY(-50%) rotate(90deg);
    color: #ffffff;
}

.mobile-menu-item:hover {
    background: #8B0000;
    transform: translateX(5px);
}

.mobile-menu-item i {
    width: 20px;
    text-align: center;
}

.sub-menu {
    margin-left: 15px;
    margin-top: 2px;
    border-left: 2px solid #8B0000;
    padding-left: 10px;
    display: none;
}

.sub-menu.active {
    display: block;
}

.sub-menu .mobile-menu-item {
    background: #252525;
    border-color: #444;
    padding: 10px 12px;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.sub-menu .mobile-menu-item:hover {
    background: #8B0000;
    color: white;
    transform: translateX(5px);
}

/* ANA SAYFA - KATEGORİ BAŞLIKLARI */
.category-header {
    text-align: center;
    margin-bottom: 25px;
    padding: 15px 3px;
    border-bottom: 2px solid #e0e0e0;
}

.category-header h1 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.category-header p {
    color: #666;
    font-size: 0.9rem;
}

/* 2'Lİ GRID SİSTEMİ - KATEGORİ SAYFASI */
.news-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
    margin-bottom: 30px;
    padding: 0 3px;
}

.news-card-compact {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    border-bottom: 1px solid #e8e8e8;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-card-compact:hover {
    transform: none;
    box-shadow: none;
    background: #f8f9fa;
}

.news-image-compact {
    position: relative;
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.news-image-compact img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card-compact:hover .news-image-compact img {
    transform: scale(1.05);
}

.category-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: linear-gradient(135deg, #8B0000, #660000);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 1;
}

.news-content-compact {
    padding: 12px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-title-compact {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-title-compact .news-link {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-title-compact .news-link:hover {
    color: #8B0000;
}

/* YATAY HABER LİSTESİ - ANA SAYFA */
.news-grid-horizontal {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 30px;
}

.news-card-horizontal {
    display: flex;
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    border-bottom: 1px solid #e8e8e8;
    min-height: 140px;
    margin: 0;
    width: 100%;
}

.news-card-horizontal:hover {
    transform: none;
    box-shadow: none;
    background: #f8f9fa;
}

.news-image-horizontal {
    flex: 0 0 140px;
    height: 140px;
    overflow: hidden;
    position: relative;
}

.news-image-horizontal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card-horizontal:hover .news-image-horizontal img {
    transform: scale(1.05);
}

.news-content-horizontal {
    flex: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 140px;
}

.news-title-horizontal {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-shrink: 0;
    margin-bottom: 8px;
}

.news-title-horizontal .news-link {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-title-horizontal .news-link:hover {
    color: #8B0000;
}

/* SPOT ALANI STİLLERİ */
.news-summary-horizontal {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-grow: 1;
}

.no-news {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin: 0 3px;
    grid-column: 1 / -1;
}

.no-news i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    opacity: 0.5;
}

.no-news h3 {
    margin-bottom: 10px;
    color: #333;
    font-size: 1.2rem;
}

.no-news p {
    color: #666;
    font-size: 0.9rem;
}

/* HABER DETAY STİLLERİ */
.news-detail-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 3px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #666;
    flex-wrap: wrap;
    margin-bottom: 15px;
    padding: 8px 0;
}

.breadcrumb-item {
    color: #8B0000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb-item:hover {
    color: #660000;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #333;
    font-weight: 600;
}

.breadcrumb-separator {
    color: #999;
}

.news-detail-header {
    margin-bottom: 20px;
}

.news-meta {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.news-date {
    color: #666;
    font-size: 0.9rem;
}

.news-detail-title {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
    color: #333;
    margin-bottom: 15px;
    text-align: left;
}

.news-summary {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
    font-style: italic;
    border-left: 3px solid #8B0000;
    padding-left: 15px;
    margin-bottom: 20px;
    text-align: left;
}

.news-detail-image {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.news-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.news-content {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 30px;
}

.news-content p {
    margin-bottom: 15px;
    text-align: left;
}

.news-content h1, .news-content h2, .news-content h3 {
    color: #8B0000;
    margin: 20px 0 15px 0;
}

.news-content ul, .news-content ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.news-content li {
    margin-bottom: 8px;
}

/* PAYLAŞIM BÖLÜMÜ */
.share-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.share-section h4 {
    margin-bottom: 15px;
    color: #333;
    font-size: 1.1rem;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-3px);
}

.share-btn.facebook { background: #3b5998; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.whatsapp { background: #25d366; }
.share-btn.google-news { background: #4285f4; }

/* BENZER HABERLER */
.similar-news {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
}

.section-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #8B0000, #660000);
    border-radius: 2px;
}

/* VİDEO DETAY STİLLERİ */
.video-detail-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 3px;
}

.video-detail-header {
    margin-bottom: 20px;
}

.video-meta {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.video-date {
    color: #666;
    font-size: 0.9rem;
}

.video-detail-title {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
    color: #333;
    margin-bottom: 15px;
    text-align: left;
}

.video-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
    font-style: italic;
    border-left: 3px solid #8B0000;
    padding-left: 15px;
    margin-bottom: 20px;
    text-align: left;
}

.video-player-container {
    margin: 20px 0;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.video-player {
    width: 100%;
    height: auto;
    max-height: 400px;
    background: #000;
    display: block;
}

.video-embed {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.no-video {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    background: #f8f9fa;
    border-radius: 8px;
}

.no-video i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #ccc;
}

.no-video p {
    margin-bottom: 15px;
    font-size: 1rem;
}

.video-content {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 30px;
}

.video-content p {
    margin-bottom: 15px;
    text-align: left;
}

.video-content h1, .video-content h2, .video-content h3 {
    color: #8B0000;
    margin: 20px 0 15px 0;
}

.video-content ul, .video-content ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.video-content li {
    margin-bottom: 8px;
}

/* BENZER VİDEOLAR */
.similar-videos {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
}

.videos-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
    margin-bottom: 30px;
    padding: 0 3px;
}

.video-card-compact {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    border-bottom: 1px solid #e8e8e8;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.video-card-compact:hover {
    transform: none;
    box-shadow: none;
    background: #f8f9fa;
}

.video-image-compact {
    position: relative;
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.video-image-compact img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-card-compact:hover .video-image-compact img {
    transform: scale(1.05);
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(139, 0, 0, 0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.video-card-compact:hover .play-icon {
    background: rgba(102, 0, 0, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-content-compact {
    padding: 12px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.video-title-compact {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-title-compact .video-link {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.video-title-compact .video-link:hover {
    color: #8B0000;
}

.video-date-compact {
    font-size: 0.75rem;
    color: #666;
    margin-top: 8px;
    opacity: 0.8;
}

/* VİDEO LİSTESİ SAYFASI */
.videos-grid-horizontal {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 30px;
}

.video-card-horizontal {
    display: flex;
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    border-bottom: 1px solid #e8e8e8;
    min-height: 140px;
    margin: 0;
    width: 100%;
}

.video-card-horizontal:hover {
    transform: none;
    box-shadow: none;
    background: #f8f9fa;
}

.video-image-horizontal {
    flex: 0 0 140px;
    height: 140px;
    overflow: hidden;
    position: relative;
}

.video-image-horizontal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-card-horizontal:hover .video-image-horizontal img {
    transform: scale(1.05);
}

.video-image-horizontal .play-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
}

.video-content-horizontal {
    flex: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 140px;
}

.video-title-horizontal {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-shrink: 0;
    margin-bottom: 8px;
}

.video-title-horizontal .video-link {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.video-title-horizontal .video-link:hover {
    color: #8B0000;
}

.video-description-horizontal {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-grow: 1;
}

.video-meta-horizontal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
    font-size: 0.8rem;
    color: #666;
}

/* VİDEO KATEGORİ BAŞLIKLARI */
.video-category-header {
    text-align: center;
    margin-bottom: 25px;
    padding: 15px 3px;
    border-bottom: 2px solid #e0e0e0;
}

.video-category-header h1 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.video-category-header h1 i {
    color: #8B0000;
}

.video-category-header p {
    color: #666;
    font-size: 0.9rem;
}

/* ARAMA SAYFASI STİLLERİ */
.search-section {
    margin-bottom: 30px;
    padding: 0 3px;
}

.search-form {
    width: 100%;
}

.search-input-group {
    display: flex;
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: 2px solid #e0e0e0;
}

.search-input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    outline: none;
    font-size: 1rem;
    background: transparent;
}

.search-submit {
    padding: 12px 20px;
    background: #8B0000;
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 1rem;
}

.search-submit:hover {
    background: #660000;
}

.search-results-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px 3px;
    border-bottom: 2px solid #e0e0e0;
}

.search-results-header h2 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.search-results-header p {
    color: #666;
    font-size: 1rem;
}

.no-results, .search-instruction {
    text-align: center;
    padding: 50px 20px;
    color: #666;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin: 0 3px;
}

.no-results i, .search-instruction i {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-results h3, .search-instruction h3 {
    margin-bottom: 10px;
    color: #333;
}

.no-results p, .search-instruction p {
    color: #666;
}

/* 404 SAYFASI STİLLERİ */
.error-container {
    text-align: center;
    padding: 50px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin: 20px 3px;
}

.error-icon {
    font-size: 4rem;
    color: #8B0000;
    margin-bottom: 20px;
}

.error-container h1 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.error-container p {
    color: #666;
    margin-bottom: 25px;
    font-size: 1rem;
}

.error-actions {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* AYARLAR SAYFASI STİLLERİ */
.settings-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 3px;
}

.settings-title {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.settings-section {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: 1px solid #e8e8e8;
}

.settings-section .section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    margin-bottom: 20px;
    font-size: 1.2rem;
    text-align: left;
}

.settings-section .section-title::after {
    display: none;
}

.theme-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.theme-option {
    cursor: pointer;
}

.theme-option input {
    display: none;
}

.theme-preview {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: white;
}

.theme-option input:checked + .theme-preview {
    border-color: #8B0000;
    background: #f8f0f0;
}

.theme-icon {
    font-size: 1.5rem;
}

.dark-theme .theme-icon {
    color: #333;
}

.light-theme .theme-icon {
    color: #FFD700;
}

.save-btn, .clear-btn {
    background: #8B0000;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 600;
}

.save-btn:hover, .clear-btn:hover {
    background: #660000;
}

.notification-settings {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.setting-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.toggle-slider {
    position: relative;
    width: 50px;
    height: 25px;
    background: #ccc;
    border-radius: 25px;
    transition: background 0.3s ease;
}

.toggle-slider:before {
    content: '';
    position: absolute;
    width: 21px;
    height: 21px;
    background: white;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: transform 0.3s ease;
}

.setting-toggle input:checked + .toggle-slider {
    background: #8B0000;
}

.setting-toggle input:checked + .toggle-slider:before {
    transform: translateX(25px);
}

.setting-note {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 10px;
}

.app-info, .data-management {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.quick-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
}

.quick-link:hover {
    background: #e9ecef;
    color: #8B0000;
    border-color: #8B0000;
}

/* SAYFALAMA */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
    padding: 0 3px;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #8B0000;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s ease;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.pagination-btn:hover {
    background: #660000;
    color: white;
}

.page-info {
    color: #666;
    font-weight: 500;
    font-size: 0.9rem;
}

.message-box {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    border: 1px solid #c3e6cb;
    font-size: 0.9rem;
}

/* FOOTER STİLLERİ */
.mobile-footer {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: white;
    padding: 30px 15px 20px;
    margin-top: 40px;
    border-top: 3px solid #8B0000;
}

.mobile-footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.mobile-footer-section {
    margin-bottom: 25px;
    text-align: center;
}

.mobile-footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.mobile-footer-logo img {
    height: 30px;
    filter: brightness(0) invert(1);
}

.mobile-footer-logo h3 {
    color: #ffcc00;
    font-size: 1.2rem;
    margin: 0;
}

.mobile-footer-section h4 {
    color: #ffcc00;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.mobile-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-footer-links li {
    margin-bottom: 8px;
}

.mobile-footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
}

.mobile-footer-links a:hover {
    opacity: 1;
    color: #ffcc00;
    transform: translateX(5px);
}

.quick-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.quick-footer-link {
    background: #8B0000;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.quick-footer-link:hover {
    background: #660000;
    transform: translateY(-2px);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
}

.social-link.facebook { background: #3b5998; }
.social-link.twitter { background: #1da1f2; }
.social-link.instagram { background: #e4405f; }
.social-link.youtube { background: #cd201f; }

.main-site-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #8B0000;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.main-site-link:hover {
    background: #660000;
    transform: translateY(-2px);
}

.mobile-footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-footer-bottom p {
    margin: 5px 0;
    opacity: 0.8;
}

.mobile-footer-stats {
    font-size: 0.9rem;
    opacity: 0.6;
}

.mobile-footer-stats i {
    color: #ffcc00;
    margin-right: 5px;
}

/* SAYFALAR İÇİN STİLLER */
.page-content {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    border: 1px solid #e8e8e8;
}

.page-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e8e8e8;
}

.page-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.3;
}

.page-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
    line-height: 1.5;
}

.page-body {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
}

.page-body h1, .page-body h2, .page-body h3, .page-body h4, .page-body h5, .page-body h6 {
    color: #8B0000;
    margin: 25px 0 15px 0;
    font-weight: 600;
}

.page-body h1 {
    font-size: 1.6rem;
    border-bottom: 2px solid #8B0000;
    padding-bottom: 8px;
}

.page-body h2 {
    font-size: 1.4rem;
    border-left: 4px solid #8B0000;
    padding-left: 12px;
}

.page-body h3 {
    font-size: 1.2rem;
}

.page-body p {
    margin-bottom: 15px;
    text-align: left;
}

.page-body ul, .page-body ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.page-body li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.page-body a {
    color: #8B0000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.page-body a:hover {
    color: #660000;
    text-decoration: underline;
}

.page-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 15px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.page-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.page-body table th {
    background: linear-gradient(135deg, #8B0000, #660000);
    color: white;
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
}

.page-body table td {
    padding: 10px 15px;
    border-bottom: 1px solid #e8e8e8;
}

.page-body table tr:hover {
    background: #f8f9fa;
}

.page-body blockquote {
    border-left: 4px solid #8B0000;
    background: #f8f9fa;
    padding: 15px 20px;
    margin: 20px 0;
    font-style: italic;
    border-radius: 0 8px 8px 0;
}

.page-body code {
    background: #f4f4f4;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: #8B0000;
}

.page-body pre {
    background: #2d2d2d;
    color: #f8f8f2;
    padding: 15px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 15px 0;
}

/* REKLAM KONTEYNIRI - ŞEFFAF ARKAPLAN */
.ad-container {
    background: transparent;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    margin: 15px 3px;
    text-align: center;
}

.ad-container-top {
    margin: 10px 0;
    text-align: center;
    display: flex;
    justify-content: center;
    background: transparent;
}

/* VİDEO FİLTRE BUTONLARI */
.video-filter-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    padding: 0 3px;
    flex-wrap: wrap;
    justify-content: center;
}

.video-filter-btn {
    background: #f8f9fa;
    color: #333;
    border: 2px solid #e0e0e0;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.video-filter-btn.active,
.video-filter-btn:hover {
    background: #8B0000;
    color: white;
    border-color: #8B0000;
}

/* VİDEO YÜKLEME DURUMU */
.video-loading {
    text-align: center;
    padding: 30px 20px;
    color: #666;
}

.video-loading i {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #8B0000;
    animation: spin 1s linear infinite;
}

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

/* VİDEO KONTROLLERİ */
.video-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.video-control-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #8B0000;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s ease;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.video-control-btn:hover {
    background: #660000;
    color: white;
}

.video-control-btn.secondary {
    background: #6c757d;
}

.video-control-btn.secondary:hover {
    background: #545b62;
}

/* Video İstatistikleri */
.video-info-mobile {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 3px;
    border: 1px solid #e0e0e0;
}

.video-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
}

.stat-icon {
    font-size: 1.1rem;
}

.stat-text {
    font-weight: 500;
}

/* Video Oynatıcı Responsive */
.video-player-container {
    margin: 20px 3px;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.video-player {
    width: 100%;
    height: auto;
    max-height: 400px;
    background: #000;
    display: block;
}

.video-embed {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Video Meta Bilgileri */
.video-meta-compact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
    font-size: 0.75rem;
    color: #666;
}

.video-views {
    display: flex;
    align-items: center;
    gap: 4px;
}

.video-summary-compact {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.4;
    margin: 8px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Video Kategori Başlığı */
.video-category-header {
    text-align: center;
    margin-bottom: 25px;
    padding: 15px 3px;
    border-bottom: 2px solid #e0e0e0;
}

.video-category-header h1 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.video-category-header h1 i {
    color: #8B0000;
}

.video-category-header p {
    color: #666;
    font-size: 0.9rem;
}

/* YENİ EKLENEN STİLLER - Haber Detay Sayfası İçin */
.image-info-bar {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    padding: 12px 15px;
    margin-top: 10px;
    border-radius: 8px;
    font-size: 14px;
}

.info-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.publish-date, .update-date {
    color: #6c757d;
    font-weight: 500;
    white-space: nowrap;
}

.update-date {
    color: #dc3545;
}

.share-buttons-mini {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.share-mini-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    color: #495057;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.share-mini-btn:hover {
    background: #f8f9fa;
    border-color: #007bff;
    color: #007bff;
    transform: translateY(-1px);
}

.share-mini-btn .fab {
    font-size: 14px;
}

/* Video Süresi */
.video-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Geyik Bölümü */
.geyik-section {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid #e0e0e0;
}

/* Video Bölümü */
.video-section {
    margin: 0;
    padding: 30px 15px;
    background: #f8f9fa;
    border-top: 3px solid #8B0000;
}

/* EK STİLLER */
.news-date-small {
    font-size: 0.75rem;
    color: #666;
    margin-top: 8px;
    opacity: 0.8;
}

.no-content {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.no-content i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #ccc;
}

.no-content h3 {
    margin-bottom: 10px;
    color: #333;
}

.no-content p {
    color: #666;
}

/* ARAMA SONUÇLARI VURGULAMA */
mark {
    background-color: #ffeb3b;
    color: #333;
    padding: 2px 4px;
    border-radius: 3px;
}

/* MOBİL UYUMLULUK */
@media (max-width: 768px) {
    .main-content, .mobile-main-content {
        padding: 0 3px;
    }
    
    .category-header h1 {
        font-size: 1.3rem;
    }
    
    .category-header p {
        font-size: 0.85rem;
    }
    
    /* 2'Lİ GRID MOBİL */
    .news-grid-2col {
        grid-template-columns: repeat(2, 1fr);
        gap: 3px;
        padding: 0 3px;
    }
    
    .news-image-compact {
        height: 140px;
    }
    
    .news-content-compact {
        padding: 10px;
    }
    
    .news-title-compact {
        font-size: 0.85rem;
        -webkit-line-clamp: 3;
    }
    
    .category-badge {
        font-size: 0.65rem;
        padding: 3px 6px;
    }
    
    /* YATAY LİSTE MOBİL */
    .news-grid-horizontal {
        gap: 3px;
    }
    
    .news-card-horizontal {
        min-height: 110px;
    }
    
    .news-image-horizontal {
        flex: 0 0 130px;
        height: 110px;
    }
    
    .news-content-horizontal {
        padding: 10px;
        min-height: 110px;
    }
    
    .news-title-horizontal {
        font-size: 0.9rem;
        -webkit-line-clamp: 2;
    }
    
    .news-summary-horizontal {
        font-size: 0.8rem;
        -webkit-line-clamp: 2;
    }
    
    /* VİDEO MOBİL */
    .video-detail-title {
        font-size: 1.2rem;
    }
    
    .video-description {
        font-size: 0.9rem;
    }
    
    .videos-grid-2col {
        grid-template-columns: repeat(2, 1fr);
        gap: 3px;
        padding: 0 3px;
    }
    
    .video-image-compact {
        height: 140px;
    }
    
    .video-content-compact {
        padding: 10px;
    }
    
    .video-title-compact {
        font-size: 0.85rem;
        -webkit-line-clamp: 3;
    }
    
    /* YATAY VİDEO LİSTESİ MOBİL */
    .video-card-horizontal {
        min-height: 110px;
    }
    
    .video-image-horizontal {
        flex: 0 0 130px;
        height: 110px;
    }
    
    .video-content-horizontal {
        padding: 10px;
        min-height: 110px;
    }
    
    .video-title-horizontal {
        font-size: 0.9rem;
        -webkit-line-clamp: 2;
    }
    
    .video-description-horizontal {
        font-size: 0.8rem;
        -webkit-line-clamp: 2;
    }
    
    .play-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .mobile-menu-content {
        width: 280px;
    }
    
    .settings-container {
        padding: 15px 3px;
    }
    
    .settings-section {
        padding: 20px;
    }
    
    .theme-options {
        grid-template-columns: 1fr;
    }
    
    .quick-links {
        grid-template-columns: 1fr;
    }
    
    .error-actions {
        flex-direction: column;
    }
    
    .pagination {
        flex-direction: column;
        gap: 10px;
    }
    
    .page-content {
        padding: 20px 15px;
        margin: 0 3px 20px 3px;
        border-radius: 8px;
    }
    
    .page-title {
        font-size: 1.5rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .page-body {
        font-size: 0.95rem;
    }
    
    .page-body h1 {
        font-size: 1.4rem;
    }
    
    .page-body h2 {
        font-size: 1.2rem;
    }
    
    .page-body h3 {
        font-size: 1.1rem;
    }
    
    .ad-container {
        margin: 10px 3px;
        padding: 10px;
    }
    
    .video-stats {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .video-player {
        max-height: 300px;
    }
    
    /* YENİ EKLENEN MOBİL STİLLER */
    .info-bar-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .share-buttons-mini {
        width: 100%;
        justify-content: space-between;
    }
    
    .share-mini-btn {
        flex: 1;
        justify-content: center;
        min-width: 0;
    }
    
    .share-mini-btn span {
        display: none;
    }
    
    .share-mini-btn .fab {
        font-size: 16px;
    }
    
    .ad-container-top {
        margin: 8px 0;
    }
    
    /* ARAMA SAYFASI MOBİL */
    .search-input-group {
        flex-direction: column;
        border-radius: 12px;
    }
    
    .search-input {
        border-radius: 12px 12px 0 0;
    }
    
    .search-submit {
        border-radius: 0 0 12px 12px;
    }
}

@media (max-width: 480px) {
    .main-content, .mobile-main-content {
        padding: 0 3px;
    }
    
    .category-header {
        padding: 12px 3px;
    }
    
    .category-header h1 {
        font-size: 1.2rem;
    }
    
    /* 2'Lİ GRID TEK KOLON */
    .news-grid-2col {
        grid-template-columns: 1fr;
        gap: 3px;
        padding: 0 3px;
    }
    
    .news-image-compact {
        height: 180px;
    }
    
    .news-content-compact {
        padding: 10px;
    }
    
    .news-title-compact {
        font-size: 0.9rem;
        -webkit-line-clamp: 3;
    }
    
    /* YATAY LİSTE MOBİL */
    .news-card-horizontal {
        min-height: 110px;
    }
    
    .news-image-horizontal {
        flex: 0 0 130px;
        height: 110px;
    }
    
    .news-content-horizontal {
        padding: 10px;
        min-height: 110px;
    }
    
    .news-title-horizontal {
        font-size: 0.9rem;
        -webkit-line-clamp: 2;
    }
    
    .news-summary-horizontal {
        font-size: 0.8rem;
        -webkit-line-clamp: 2;
    }
    
    /* VİDEO MOBİL */
    .videos-grid-2col {
        grid-template-columns: 1fr;
        gap: 3px;
        padding: 0 3px;
    }
    
    .video-image-compact {
        height: 180px;
    }
    
    .video-content-compact {
        padding: 10px;
    }
    
    .video-title-compact {
        font-size: 0.9rem;
        -webkit-line-clamp: 3;
    }
    
    /* YATAY VİDEO LİSTESİ MOBİL */
    .video-card-horizontal {
        min-height: 110px;
    }
    
    .video-image-horizontal {
        flex: 0 0 130px;
        height: 110px;
    }
    
    .video-content-horizontal {
        padding: 10px;
        min-height: 110px;
    }
    
    .video-title-horizontal {
        font-size: 0.9rem;
        -webkit-line-clamp: 2;
    }
    
    .video-description-horizontal {
        font-size: 0.8rem;
        -webkit-line-clamp: 2;
    }
    
    .video-player {
        max-height: 250px;
    }
    
    .video-stats {
        font-size: 0.8rem;
    }
    
    .video-category-header h1 {
        font-size: 1.3rem;
    }
    
    .mobile-footer {
        padding: 25px 10px 15px;
    }
    
    .mobile-footer-logo {
        flex-direction: column;
        gap: 5px;
    }
    
    .main-site-link {
        width: 100%;
        justify-content: center;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .quick-footer-links {
        gap: 5px;
    }
    
    .quick-footer-link {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .mobile-menu-content {
        width: 100%;
    }
    
    .news-detail-title {
        font-size: 1.2rem;
    }
    
    .news-summary {
        font-size: 0.9rem;
    }
    
    .news-content {
        font-size: 0.9rem;
    }
    
    .page-content {
        padding: 15px 10px;
        margin: 0 3px 20px 3px;
    }
    
    .page-title {
        font-size: 1.3rem;
    }
    
    .page-header {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
    
    .page-body ul, .page-body ol {
        margin-left: 15px;
    }
    
    .page-body table {
        font-size: 0.9rem;
    }
    
    .page-body table th,
    .page-body table td {
        padding: 8px 10px;
    }/* Mobil Reklam Stilleri */
.mobile-ad-header {
    margin: 15px 0 20px 0;
    padding: 0;
}

.mobile-ad-break {
    margin: 20px 0;
    padding: 10px 0;
    border-top: 1px dashed #e0e0e0;
    border-bottom: 1px dashed #e0e0e0;
}

.mobile-ad-container {
    max-width: 100%;
    overflow: hidden;
}

.mobile-ad-code ins.adsbygoogle {
    margin: 0 auto !important;
    display: block !important;
}

/* Responsive reklamlar */
@media (max-width: 480px) {
    .mobile-ad-container {
        padding: 8px;
    }
    
    .mobile-ad-text {
        padding: 12px;
        font-size: 14px;
    }
}

/* Reklam etiketi */
.ad-label {
    display: none !important; /* REKLAM yazısını tamamen gizle */
    /* veya daha az göze batması için: */
    /* 
    display: block;
    font-size: 0.6rem;
    color: #aaa;
    text-align: center;
    margin-bottom: 5px;
    font-weight: normal;
    text-transform: none;
    letter-spacing: normal;
    opacity: 0.6;
    */
}
}