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;
}

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

.match-details-section h1 {
    color: white;
}

.match-details-section img {
    width: 726px;
    height: 416px;
    border-radius: 10px;
}

.match-details-section p {
    color: white;
    font-size: 18px;
}

.upgrades-section {
    width: 100%;
    padding: 40px 20px;
    background: #f0f0f0;
    text-align: center;
}

.upgrades-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.upgrade-card {
    padding: 20px;
    background: white;
    border: 1px solid #dddddd;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.upgrade-card img {
    width: 100px;
    height: 100px;
    border-radius: 6px;
}

.upgrade-card p {
    margin-top: 10px;
    font-size: 16px;
    color: black;
}

.upgrade-card.selected {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 204, 255, 0.5);
    border-color: #00ccff;
}

.order-button {
    margin-top: 20px;
    padding: 12px 24px;
    background-color: #00ccff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.3s;
}

.order-button:hover {
    background-color: #0099cc;
    transform: scale(1.05);
}

.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;
}