<!DOCTYPE html>
<html lang="ar" dir="rtl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MatchTodayLive.com - ماتش توداي لايف | مباريات اليوم</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
:root {
--primary-color: #1a472a;
--secondary-color: #2e8b57;
--accent-color: #f8f9fa;
--text-color: #333;
--light-color: #f8f9fa;
--dark-color: #1a1a1a;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
background-color: #f5f5f5;
color: var(--text-color);
line-height: 1.6;
}
a {
text-decoration: none;
color: var(--primary-color);
transition: color 0.3s;
}
a:hover {
color: var(--secondary-color);
}
.container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 0 15px;
}
/* Header Styles */
header {
background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
color: white;
padding: 15px 0;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.header-top {
display: flex;
justify-content: space-between;
align-items: center;
padding-bottom: 10px;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.logo {
display: flex;
align-items: center;
}
.logo img {
height: 50px;
margin-right: 10px;
}
.logo h1 {
font-size: 24px;
font-weight: 700;
color: white;
}
.header-actions {
display: flex;
gap: 15px;
}
.header-actions a {
color: white;
font-size: 14px;
}
.header-actions a:hover {
color: #ffd700;
}
nav {
padding-top: 10px;
}
nav ul {
display: flex;
list-style: none;
justify-content: center;
gap: 20px;
}
nav ul li a {
color: white;
font-weight: 500;
padding: 10px 15px;
border-radius: 4px;
transition: background-color 0.3s;
}
nav ul li a:hover {
background-color: rgba(255, 255, 255, 0.1);
color: white;
}
/* Main Content Styles */
.main-content {
display: flex;
gap: 20px;
margin: 20px 0;
}
.matches-section {
flex: 2;
}
.news-section {
flex: 1;
}
.section-title {
background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
color: white;
padding: 12px 15px;
border-radius: 5px 5px 0 0;
margin-bottom: 0;
display: flex;
align-items: center;
gap: 10px;
}
.section-content {
background-color: white;
padding: 15px;
border-radius: 0 0 5px 5px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.match-card {
border: 1px solid #eaeaea;
border-radius: 5px;
margin-bottom: 15px;
overflow: hidden;
}
.match-header {
background-color: var(--accent-color);
padding: 10px 15px;
display: flex;
justify-content: space-between;
align-items: center;
font-size: 14px;
color: #666;
}
.match-details {
display: flex;
justify-content: space-around;
align-items: center;
padding: 15px;
}
.team {
display: flex;
flex-direction: column;
align-items: center;
flex: 1;
}
.team-logo {
width: 60px;
height: 60px;
margin-bottom: 10px;
}
.team-name {
font-weight: 600;
text-align: center;
}
.match-score {
display: flex;
align-items: center;
font-size: 24px;
font-weight: 700;
margin: 0 20px;
}
.match-time {
font-size: 14px;
color: var(--secondary-color);
font-weight: 600;
}
.match-status {
padding: 5px 10px;
background-color: var(--secondary-color);
color: white;
border-radius: 3px;
font-size: 12px;
margin-left: 10px;
}
.news-card {
display: flex;
margin-bottom: 15px;
padding-bottom: 15px;
border-bottom: 1px solid #eaeaea;
}
.news-card:last-child {
margin-bottom: 0;
padding-bottom: 0;
border-bottom: none;
}
.news-image {
width: 100px;
height: 70px;
object-fit: cover;
border-radius: 4px;
margin-left: 10px;
}
.news-content h3 {
font-size: 16px;
margin-bottom: 5px;
}
.news-content p {
font-size: 14px;
color: #666;
}
.news-date {
font-size: 12px;
color: #999;
margin-top: 5px;
}
/* Footer Styles */
footer {
background-color: var(--dark-color);
color: white;
padding: 40px 0 20px;
margin-top: 40px;
}
.footer-content {
display: flex;
flex-wrap: wrap;
gap: 30px;
margin-bottom: 30px;
}
.footer-section {
flex: 1;
min-width: 250px;
}
.footer-section h3 {
font-size: 18px;
margin-bottom: 15px;
color: #ffd700;
}
.footer-section p {
margin-bottom: 10px;
font-size: 14px;
}
.footer-section ul {
list-style: none;
}
.footer-section ul li {
margin-bottom: 10px;
}
.footer-section ul li a {
color: #ccc;
}
.footer-section ul li a:hover {
color: white;
}
.social-links {
display: flex;
gap: 15px;
margin-top: 15px;
}
.social-links a {
color: white;
font-size: 20px;
}
.copyright {
text-align: center;
padding-top: 20px;
border-top: 1px solid #444;
font-size: 14px;
color: #999;
}
/* Responsive Styles */
@media (max-width: 768px) {
.main-content {
flex-direction: column;
}
.header-top {
flex-direction: column;
text-align: center;
}
.logo {
justify-content: center;
margin-bottom: 10px;
}
nav ul {
flex-wrap: wrap;
}
.match-details {
flex-direction: column;
text-align: center;
}
.team {
margin-bottom: 15px;
}
.match-score {
margin: 15px 0;
}
}
</style>
</head>
<body>
<!-- Header Section -->
<header>
<div class="container">
<div class="header-top">
<