/**
*
* -----------------------------------------------------------------------------
* Template : Haber Alanya
* Author : M.Ceylan
* Instagram : @mceylanofficial
* -----------------------------------------------------------------------------
*
**/
 :root {
            --primary: #e63946;
            --secondary: #1d3557;
            --light: #f1faee;
            --dark: #1a1a1a;
            --gray: #495057;
            --yellow: #ffc107;
            --green: #28a745; 
            --purple: #6f42c1; 
            --facebook-blue: #3b5998;
            --twitter-blue: #1da1f2;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background-color: #f8f9fa;
            color: var(--dark);
            line-height: 1.6;
        }
        
        .container {
            width: 90%;
            max-width: 1400px;
            margin: 0 auto;
        }
        
       
        .top-header {
            background: white;
            padding: 10px 0;
            border-bottom: 1px solid #eee;
        }
        
        .top-header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
        }
        
        .site-logo {
            height: 60px;
            margin-right: 20px;
        }
        
        .top-icons {
            display: flex;
            align-items: center;
        }
        
        .top-icons a {
            margin-left: 20px;
            color: var(--secondary);
            text-decoration: none;
            font-weight: 500;
            display: flex;
            align-items: center;
            text-transform: uppercase;
        }
        
        .top-icons a i {
            margin-right: 5px;
            font-size: 1.1rem;
        }
        
        .weather-info {
            display: flex;
            align-items: center;
            font-weight: 500;
            color: var(--secondary);
        }
        
        .weather-details {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }
        
        .weather-details i {
            margin-right: 5px;
            font-size: 1.5rem;
        }
        
        .weather-info .condition {
            font-size: 0.7rem;
            color: var(--gray);
        }
        
        .search-container {
            position: relative;
        }
        
        .search-icon {
            font-size: 1.2rem;
            color: var(--secondary);
            cursor: pointer;
        }
        
        .search-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 2000;
        }
        
        .search-overlay.active {
            display: flex;
        }
        
        .search-box {
            background: white;
            padding: 20px;
            border-radius: 10px;
            width: 600px;
            max-width: 90%;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            text-align: center;
        }
        
        .search-box input {
            width: 100%;
            padding: 15px;
            font-size: 1.2rem;
            border: 2px solid var(--primary);
            border-radius: 5px;
            outline: none;
            transition: all 0.3s;
            margin-bottom: 15px;
        }
        
        .search-box input:focus {
            border-color: var(--secondary);
        }
        
        .search-box .close-btn {
            display: inline-block;
            padding: 10px 20px;
            background: var(--primary);
            color: white;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.3s;
        }
        
        .search-box .close-btn:hover {
            background: var(--secondary);
        }
        
     
        .main-nav {
            background: var(--secondary);
            position: sticky;
            top: 0;
            width: 100%;
            z-index: 1000;
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            width: 100%;
            justify-content: space-between;
        }
        
        .nav-menu li {
            position: relative;
        }
        
        .nav-menu li a {
            color: white;
            text-decoration: none;
            padding: 15px 20px;
            display: flex;
            align-items: center;
            font-weight: 500;
            transition: all 0.3s;
            text-transform: uppercase;
        }
        
        .nav-menu li a:hover {
            background: var(--primary);
        }
        
        .nav-menu li a i {
            margin-left: 5px;
        }
        
        .dropdown-toggle {
            cursor: pointer;
        }
        
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            width: 200px;
            box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 100;
        }
        
        .dropdown-menu.active {
            opacity: 1;
            visibility: visible;
        }
        
        .dropdown-menu li a {
            color: var(--dark);
            padding: 10px 15px;
            border-bottom: 1px solid #eee;
            text-transform: none;
        }
        
     
        .news-ticker {
            background: #343a40;
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            color: white;
        }
        
        .ticker-container {
            display: flex;
            align-items: center;
        }
        
        .ticker-label {
            background: var(--primary);
            color: white;
            padding: 5px 10px;
            border-radius: 3px;
            font-weight: bold;
            margin-right: 15px;
            white-space: nowrap;
        }
        
        .ticker-content {
            flex-grow: 1;
            overflow: hidden;
            position: relative;
            height: 24px;
        }
        
        .ticker-item {
            position: absolute;
            width: 100%;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease;
        }
        
        .ticker-item.active {
            opacity: 1;
            transform: translateY(0);
        }
        
        .ticker-item time {
            color: var(--primary);
            margin-right: 10px;
        }
        
        .exchange-rates {
            display: flex;
            margin-left: 20px;
            color: white;
        }
        
        .rate {
            margin-left: 15px;
            white-space: nowrap;
        }
        
        .rate span {
            font-weight: bold;
            color: var(--primary);
        }
        
        
        .breaking-news {
            padding: 20px 0;
        }
        
        .breaking-container {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 15px;
        }
        
        .breaking-item {
            position: relative;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        
        .breaking-item:hover {
            transform: translateY(-5px);
        }
        
        .breaking-img {
            height: 180px;
            overflow: hidden;
            position: relative;
        }
        
        .breaking-img a {
            display: block;
            width: 100%;
            height: 100%;
        }
        
        .breaking-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: transform 0.5s;
        }
        
        .breaking-item:hover .breaking-img img {
            transform: scale(1.05);
        }
        
        .breaking-content {
            padding: 10px;
            background: black;
            color: white;
            min-height: 70px;
            display: flex;
            align-items: center;
        }
        
        .breaking-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background: var(--primary);
            color: white;
            padding: 3px 8px;
            border-radius: 3px;
            font-size: 0.8rem;
            font-weight: bold;
        }
        
        .breaking-title {
            font-size: 1.1rem;
            font-weight: 700;
            margin-top: 5px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            line-height: 1.3;
        }
        
       
        .flash-news {
            margin-bottom: 20px;
        }  
        
        .flash-haber {
            font-size: 24px;
            margin-left: 10px;
        }
        
        .flash-main {
            background: var(--yellow);
            padding: 15px;
            display: flex;
            align-items: center;
            animation: flash 2s infinite;
        }
        
        .flash-main span {
            background: var(--primary);
            color: white;
            padding: 3px 8px;
            border-radius: 3px;
            margin-right: 10px;
            font-weight: bold;
            font-size: 18px;
            white-space: nowrap;
        }
        
        @keyframes flash {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        
       
        .main-headline {
            display: flex;
            margin-bottom: 50px;
            position: relative;
        }
        
        .headline-primary {
            flex: 0 0 70%;
            position: relative;
            border-radius: 5px;
            overflow: hidden;
            height: 500px;
            margin-right: 15px;
        }
        
        .headline-primary a {
            display: block;
            width: 100%;
            height: 100%;
            position: relative;
        }
        
        .headline-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .headline-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            padding: 20px;
            color: white;
        }
        
        .headline-category {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 5px 10px;
            border-radius: 3px;
            font-size: 1rem;
            font-weight: bold;
            margin-bottom: 10px;
            text-transform: uppercase;
        }
        
        .headline-title {
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 10px;
            text-transform: uppercase;
            line-height: 1.2;
        }
        
        .headline-secondary {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 5px;
        }
        
        .secondary-item {
            position: relative;
            border-radius: 5px;
            overflow: hidden;
            height: 247.5px;
        }
        
        .secondary-item a {
            display: block;
            width: 100%;
            height: 100%;
            position: relative;
        }
        
        .secondary-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .secondary-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
            padding: 15px;
            color: white;
        }
        
        .secondary-title {
            font-size: 1.2rem;
            font-weight: 600;
            line-height: 1.3;
        }
        
        .headline-nav {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            position: absolute;
            bottom: 1px;
            left: 0;
            width: 70%;
        }
        
        .headline-numbers {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        
        .headline-number {
            width: 41px;
            height: 41px;
            border-radius: 50%;
            background: #e9ecef;
            color: black;
            font-weight: 700;
            font-size: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .headline-number:hover, .headline-number.active {
            background: var(--primary);
            color: white;
            transform: scale(1.2);
        }
        
     
        .social-icons {
            display: flex;
            flex-direction: row;
            gap: 10px;
            margin-top: 10px;
            justify-content: flex-end;
        }
        
        .social-icons a {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: #e9ecef;
            color: #adb5bd;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.2rem;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            background: var(--primary);
            color: white;
        }
        
        
        .latest-news {
            margin-bottom: 30px;
        }
        
        .section-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 3px solid var(--primary);
            display: inline-block;
        }
        
        .section-title i {
            margin-right: 8px;
        }
        
        .news-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
        }
        
        .news-item {
            background: white;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        
        .news-item:hover {
            transform: translateY(-5px);
        }
        
        .news-img {
            height: 180px;
            overflow: hidden;
            position: relative;
        }
        
        .news-img a {
            display: block;
            width: 100%;
            height: 100%;
        }
        
        .news-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .news-item:hover .news-img img {
            transform: scale(1.05);
        }
        
        .news-content {
            padding: 15px;
        }
        
        .news-category {
            display: inline-block;
            background: var(--secondary);
            color: white;
            padding: 3px 8px;
            border-radius: 3px;
            font-size: 0.8rem;
            margin-bottom: 8px;
        }
        
        .news-title {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .news-meta {
            font-size: 0.8rem;
            color: var(--gray);
            display: flex;
            justify-content: space-between;
        }
        
       
        .newspaper-section {
            display: flex;
            margin-bottom: 30px;
        }
        
        .newspaper-main {
            flex: 0 0 70%;
            margin-right: 15px;
        }
        
        .newspaper-sidebar {
            flex: 1;
        }
        
  
        .news-section {
            margin-bottom: 30px;
        }
        
        .news-grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
        }
        
      
        .sport-news {
            margin-bottom: 30px;
        }
        
        .sport-section {
            display: flex;
            gap: 15px;
        }
        
        .sport-main {
            flex: 0 0 40%;
        }
        
        .sport-main-img {
            height: 200px;
            overflow: hidden;
            border-radius: 5px;
        }
        
        .sport-main-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .sport-main:hover .sport-main-img img {
            transform: scale(1.05);
        }
        
        .sport-main-content {
            padding: 10px;
        }
        
        .sport-main-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 8px;
        }
        
        .sport-main-desc {
            font-size: 0.9rem;
            color: var(--gray);
        }
        
        .sport-list {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .sport-list-item {
            background: white;
            padding: 10px;
            border-radius: 5px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        
        .sport-list-title {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .sport-list-desc {
            font-size: 0.8rem;
            color: var(--gray);
        }
        
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .section-header a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
        }
        
        .section-header a:hover {
            text-decoration: underline;
        }
        
       
        .gallery-videos {
            margin-bottom: 30px;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
        }
        
        .gallery-item {
            background: white;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        
        .gallery-img {
            height: 180px;
            overflow: hidden;
        }
        
        .gallery-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .gallery-content {
            padding: 10px;
            text-align: center;
        }
        
        .gallery-type {
            font-size: 0.9rem;
            color: var(--gray);
            margin-bottom: 5px;
        }
        
        .gallery-title {
            font-size: 1rem;
            font-weight: 600;
        }
        
      
        .firma-rehberi {
            margin-bottom: 30px;
        }
        
        .firma-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
        }
        
        .firma-item {
            background: white;
            padding: 15px;
            border-radius: 5px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            text-align: center;
        }
        
        .firma-item h3 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .firma-item p {
            font-size: 0.9rem;
            color: var(--gray);
        }
        
        
        .seri-ilanlar {
            margin-bottom: 30px;
        }
        
        .ilan-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
        
        .ilan-item {
            background: white;
            padding: 15px;
            border-radius: 5px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        
        .ilan-title {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .ilan-desc {
            font-size: 0.9rem;
            color: var(--gray);
        }
        
    
        .roportajlar {
            margin-bottom: 30px;
        }
        
        .roportaj-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
        }
        
        .roportaj-item {
            background: white;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        
        .roportaj-img {
            height: 180px;
            overflow: hidden;
        }
        
        .roportaj-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .roportaj-content {
            padding: 10px;
        }
        
        .roportaj-name {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .roportaj-desc {
            font-size: 0.9rem;
            color: var(--gray);
        }
        
      
        .yazarlar {
            margin-bottom: 30px;
        }
        
        .yazar-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
        }
        
        .yazar-item {
            background: white;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        
        .yazar-img {
            height: 180px;
            overflow: hidden;
        }
        
        .yazar-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .yazar-content {
            padding: 10px;
        }
        
        .yazar-name {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .yazar-article {
            font-size: 0.9rem;
            color: var(--gray);
        }
        
      
        .sidebar-banner {
            margin-bottom: 20px;
        }
        
        .sidebar-banner img {
            width: 100%;
            border-radius: 5px;
        }
        
        .sidebar-section {
            margin-bottom: 20px;
        }
        
        .sidebar-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .sidebar-list-item {
            background: white;
            padding: 10px;
            border-radius: 5px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        
        .sidebar-list-item a {
            font-size: 1rem;
            font-weight: 600;
            color: var(--dark);
            text-decoration: none;
        }
        
        .sidebar-list-item a:hover {
            color: var(--primary);
        }
        
      
        .lig-tablosu table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        
        .lig-tablosu th, .lig-tablosu td {
            padding: 10px;
            text-align: left;
            border-bottom: 1px solid #eee;
        }
        
        .lig-tablosu th {
            background: var(--secondary);
            color: white;
        }
        
    
        .social-count {
            margin-bottom: 20px;
        }
        
        .social-count .facebook, .social-count .twitter {
            display: flex;
            align-items: center;
            padding: 10px;
            border-radius: 5px;
            color: white;
            margin-bottom: 10px;
        }
        
        .social-count .facebook {
            background: var(--facebook-blue);
        }
        
        .social-count .twitter {
            background: var(--twitter-blue);
        }
        
        .social-count i {
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        .social-count a {
            color: white;
            text-decoration: none;
            margin-left: auto;
            padding: 5px 10px;
            border: 1px solid white;
            border-radius: 3px;
        }
        
        .social-count a:hover {
            background: white;
            color: var(--dark);
        }
        
      
        .namaz-vakitleri table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            border-radius: 5px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        
        .namaz-vakitleri th, .namaz-vakitleri td {
            padding: 10px;
            text-align: left;
            border-bottom: 1px solid #eee;
        }
        
        .namaz-vakitleri th {
            background: var(--secondary);
            color: white;
        }
        
       
        .arsiv select {
            padding: 8px;
            margin-right: 10px;
            border-radius: 3px;
            border: 1px solid #ccc;
        }
        
        .arsiv button {
            padding: 8px 15px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 3px;
            cursor: pointer;
        }
        
        .arsiv button:hover {
            background: var(--secondary);
        }
        
      
        @media (max-width: 1200px) {
            .breaking-container {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .news-grid, .news-grid-3, .gallery-grid, .firma-grid, .roportaj-grid, .yazar-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .ilan-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .top-header-container {
                flex-direction: column;
            }
            
            .logo-container {
                margin-bottom: 15px;
            }
            
            .nav-menu {
                flex-wrap: wrap;
            }
            
            .breaking-container {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .main-headline {
                flex-direction: column;
            }
            
            .headline-primary {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .headline-nav {
                position: static;
                margin-top: 20px;
                width: 100%;
            }
            
            .newspaper-section {
                flex-direction: column;
            }
            
            .newspaper-main {
                margin-right: 0;
                margin-bottom: 20px;
            }
            
            .sport-section {
                flex-direction: column;
            }
            
            .sport-main {
                flex: 1;
            }
        }
        
        @media (max-width: 576px) {
            .breaking-container {
                grid-template-columns: 1fr;
            }
            
            .news-grid, .news-grid-3, .gallery-grid, .firma-grid, .roportaj-grid, .yazar-grid {
                grid-template-columns: 1fr;
            }
            
            .ticker-container {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .ticker-label {
                margin-bottom: 10px;
            }
            
            .exchange-rates {
                margin-left: 0;
                margin-top: 10px;
                flex-wrap: wrap;
            }
            
            .rate {
                margin: 5px 15px 5px 0;
            }
        }
    </style>
	<style>
    
    .gazeteler {
        margin-bottom: 30px;
    }

    .gazete-carousel {
        position: relative;
        overflow: hidden;
    }

    .gazete-container {
        display: flex;
        transition: transform 0.5s ease;
    }

    .gazete-item {
        flex: 0 0 200px;
        margin-right: 15px;
        text-align: center;
    }

    .gazete-item img {
        width: 150px;
        height: 200px;
        object-fit: cover;
        border-radius: 5px;
    }

    .gazete-title {
        font-size: 1rem;
        font-weight: 600;
        margin-top: 5px;
        color: var(--dark);
    }

    .carousel-prev, .carousel-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: var(--primary);
        color: white;
        border: none;
        padding: 10px;
        cursor: pointer;
        border-radius: 50%;
        font-size: 1.2rem;
    }

    .carousel-prev {
        left: 10px;
    }

    .carousel-next {
        right: 10px;
    }

  
    .yazarlar {
        margin-bottom: 30px;
    }

    .yazar-carousel {
        position: relative;
        overflow: hidden;
    }

    .yazar-container {
        display: flex;
        transition: transform 0.5s ease;
    }

    .yazar-item {
        flex: 0 0 200px;
        margin-right: 15px;
        background: white;
        border-radius: 5px;
        overflow: hidden;
        box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    }

    .yazar-img {
        height: 240px;
        overflow: hidden;
    }

    .yazar-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .yazar-content {
        padding: 10px;
        text-align: center;
    }

    .yazar-name {
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .yazar-article {
        font-size: 0.9rem;
        color: var(--gray);
    }

    
    .sidebar-list-item a {
        font-size: 0.9rem;
        line-height: 1.5;
    }
	
	.sidebar-banner {
    margin: 0 10px; 
    text-align: center; 
}

.sidebar-banner img {
    max-width: 100%; 
    height: auto; 
}
 
    .gazeteler {
        padding: 20px 0;
        background: #f9f9f9; 
    }

    .gazeteler-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        padding: 0 10px;
    }

    .gazete-item {
        text-align: center;
    }

    .gazete-item a {
        text-decoration: none;
        color: inherit;
        display: block;
    }

    .gazete-item img {
        width: auto; 
        height: 300px; 
        max-width: 200px; 
        border: 1px solid #ddd;
        border-radius: 5px;
        transition: transform 0.3s;
        object-fit: cover; 
    }

    .gazete-item img:hover {
        transform: scale(1.05);
    }

    .gazete-title {
        font-size: 1rem;
        font-weight: 600;
        margin: 10px 0 0;
        color: #333;
    }

    .section-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: #1D3557; 
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .section-title i {
        color: #1D3557;
    }
	
	
.sport-news .section-title,
.sport-news .section-header a,
.sport-news .sport-main-title,
.sport-news .sport-main-desc {
    color: #ffffff !important;
}
</style>
<style>
   
    .ad-container {
      
        top: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: -1;
    }
    
    .left-ad, .right-ad {
        position: absolute;
        top: 47%;
        transform: translateY(-50%);
        width: 120px;
        height: 450px;
        pointer-events: auto;
    }
    
    .left-ad {
        left: 120px;
    }
    
    .right-ad {
        right: 120px;
    }
    
    .left-ad img, .right-ad img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
  
	
	
    .league-tabs {
        margin-top: 10px;
    }

    .tab-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        margin-bottom: 10px;
    }

    .tab-button {
        background: #f0f0f0;
        border: none;
        padding: 8px 12px;
        cursor: pointer;
        font-size: 0.9rem;
        border-radius: 5px;
        transition: background 0.3s;
    }

    .tab-button:hover {
        background: #008000;
		color:white;
    }

    .tab-button.active {
        background: #008000;
        color: white;
    }

    .tab-content {
        overflow: hidden;
    }

    .tab-pane {
        display: none;
    }

    .tab-pane.active {
        display: block;
    }

    .lig-tablosu table {
        width: 100%;
        border-collapse: collapse;
        font-size: 0.85rem;
    }

    .lig-tablosu th, .lig-tablosu td {
        padding: 5px;
        text-align: left;
        border-bottom: 1px solid #ddd;
    }

    .lig-tablosu th {
        background: #008000;
        color: white;
    }
	
	  .footer {
        font-family: Arial, sans-serif;
        background: #1D3557; 
    }

   
    .footer-navbar {
        background: #333;
        padding: 15px 0;
    }

    .footer-navbar ul {
        display: flex;
        justify-content: center;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .footer-navbar li {
        margin: 0 15px;
    }

    .footer-navbar a {
        color: white;
        text-decoration: none;
        font-size: 1rem;
        font-weight: 600;
        transition: color 0.3s;
    }

    .footer-navbar a:hover {
        color: #1D3557;
    }

    .footer-navbar i {
        font-size: 1.2rem;
        vertical-align: middle;
    }

    
    .footer-main {
        width: 70%; 
        margin: 0 auto;
        padding: 20px 0;
        display: flex;
        justify-content: space-between;
        color: white;
        gap: 10px; 
    }

    .footer-column {
        flex: 1;
        padding: 0 10px; 
    }

    .footer-column ul {
        list-style: none;
        padding: 0;
    }

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

    .footer-column a {
        color: white;
        text-decoration: none;
        font-size: 1rem; 
        font-weight: 600; 
    }

    .footer-column a:hover {
        text-decoration: underline;
    }

    .footer-logo img {
        width: 150px;
        height: auto;
        margin-bottom: 10px;
    }

    .footer-info p {
        margin: 5px 0;
        font-size: 0.85rem;
        line-height: 1.4;
    }

    
    .footer-bottom {
        width: 70%; 
        margin: 0 auto;
        padding: 10px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: white;
        font-size: 0.85rem;
    }

    .footer-links {
        display: flex;
        gap: 15px; 
        padding-left: 15px;
    }

    .footer-links a {
        color: white;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .footer-links a:hover {
        text-decoration: underline;
    }

    .footer-credits {
        padding-right: 15px;
    }