body,
html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Roboto', sans-serif;
    background-color: #ffffff;
    color: #000000;
    overflow-x: hidden;
}

.header {
    width: 100%;
    padding: 15px;
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-title {
    font-size: 20px;
    font-weight: bold;
    color: black;
}

.nav-search-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-item {
    color: black;
    font-size: 16px;
    text-decoration: none;
    padding: 10px;
    transition: color 0.3s;
}

.nav-item:hover {
    color: #00ccff;
}

.search {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-input {
    padding: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    background-color: white;
    color: black;
    flex: 1;
    max-width: 200px;
}

.search-button {
    padding: 8px;
    border: none;
    background-color: #00ccff;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 15px;
}

.main-content {
    width: 100%;
    padding: 6px 20px;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: black;
    text-align: center;
}

.welcome-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    background: linear-gradient(to bottom left, #000000, #1860ce);
    width: 100%;
    padding: 100px 20px;
    border-radius: 0px;
}

.welcome-text {
    color: white;
    text-align: left;
}

.welcome-image img {
    width: 726px;
    height: 416px;
    border-radius: 10px;
}

.matches-section {
    width: 100%;
    padding: 60px 20px;
    background: white;
    color: black;
    text-align: center;
}

.matches-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-content: center;
}

.match-card {
    padding: 20px;
    background: #f0f0f0;
    border-radius: 6px;
    border: 1px solid #dddddd;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.match-card img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.match-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 204, 255, 0.5);
}

.footer {
    width: 100%;
    padding: 60px;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-container {
    width: 846px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.footer-text {
    color: white;
    font-size: 20px;
    font-family: Roboto;
    font-weight: 400;
    text-align: center;
    line-height: 28px;
}