        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #ff9100;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        header {
            background: linear-gradient(150deg, #860000, #ff9100);
            background-size: 400% 400%; /* hareket alanı verdik */
            color: white;
            padding: 20px 0;
            text-align: center;
            border-bottom: 5px solid #e74c3c;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
             animation: gradientBG 9s ease infinite; /* animasyonu bağladık */

        }
        
@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}



        header h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
        }

                header h1:hover {
            font-size: 50px;
            margin-bottom: 10px;
        }
        
        header p {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        .search-box {
            margin: 20px 0;
            text-align: center;
        }
        
        .search-box input {
            padding: 12px 20px;
            width: 100%;
            max-width: 500px;
            border: 2px solid #ddd;
            border-radius: 30px;
            font-size: 16px;
            outline: none;
            transition: all 0.3s;
        }
        
        .search-box input:focus {
            border-color: #3498db;
            box-shadow: 0 0 10px rgba(52, 152, 219, 0.3);
        }
        
        .category {
            margin: 40px 0;
        }
        
        .category-title {
            font-size: 1.8rem;
            color: #2c3e50;
            padding-bottom: 10px;
            margin-bottom: 20px;
            border-bottom: 3px solid #e74c3c;
            display: inline-block;
        }
        
        .newspaper-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .newspaper-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
        }
        
        .newspaper-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
        }
        
        .newspaper-card a {
            display: block;
            padding: 20px;
            text-decoration: none;
            color: #2c3e50;
            font-weight: 600;
            font-size: 18px;
            transition: background 0.3s;
        }
        
        .newspaper-card a:hover {
            background: #f8f9fa;
            color: #e74c3c;
        }
        
        .newspaper-card .icon {
            margin-right: 10px;
            font-size: 20px;
            vertical-align: middle;
            color: #e74c3c;
        }
        
        footer {
            background: #ffffff00;
            color: white;
            text-align: center;
            padding: 30px 0;
            margin-top: 50px;
            font-weight: bold;
        }
        
        footer p {
            margin: 10px 0;
        }
        
        @media (max-width: 768px) {
            .newspaper-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
            
            header h1 {
                font-size: 2rem;
            }
        }