html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    background: #f4f6f9;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #333;
    font-size: 13px;
}

* {
    box-sizing: border-box;
}

a {
    color: #333;
    text-decoration: none;
}

.fightheader {
    background: #ffffff;
    border-bottom: 2px solid #002b49;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.fightheaderinner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fightlogo img {
    max-height: 40px;
    vertical-align: middle;
}

.fightnav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 15px;
}

.fightnav a {
    font-weight: bold;
    color: #002b49;
    padding: 6px 12px;
    border-radius: 4px;
    transition: all 0.2s;
}

.fightnav a:hover, .fightnav .active {
    color: #ffffff;
    background: #002b49;
}

.fightwrap {
    max-width: 1200px;
    margin: 15px auto;
    padding: 0 10px;
}

.fightcard {
    background: #ffffff;
    border-radius: 6px;
    border: 1px solid #e1e4e8;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.02);
}

.fightcardtitle {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #002b49;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #002b49;
}

.fightimg {
    max-width: 44px;
    max-height: 44px;
    object-fit: contain;
    border-radius: 4px;
}

.fightgrid3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.fightgriditem {
    background: #ffffff;
    border: 1px solid #e1e4e8;
    border-radius: 6px;
    padding: 12px;
    text-align: center;
    transition: all 0.2s;
}

.fightgriditem:hover {
    transform: translateY(-2px);
    border-color: #002b49;
    box-shadow: 0 4px 12px rgba(0,43,73,0.1);
}

.fightgriditemtitle {
    font-size: 13px;
    font-weight: bold;
    margin: 8px 0 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fightprice {
    color: #dc3545;
    font-weight: bold;
}

.fightbtn {
    display: inline-block;
    background: #002b49;
    color: #ffffff;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: bold;
    border-radius: 4px;
    border: none;
    cursor: pointer;
}

.fightbtn:hover {
    background: #001f35;
}

.fightqacard {
    background: #002b49;
    color: #fff;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 8px;
}

.fightfooter {
    background: #001f35;
    color: #ffffff;
    padding: 25px 0;
    text-align: center;
    margin-top: 30px;
}

.fightfooternav a {
    margin: 0 10px;
    color: #a0aec0;
    font-size: 12px;
}

.fightcopyright {
    color: #a0aec0;
    font-size: 12px;
    margin-top: 10px;
}

@media (max-width: 992px) {
    .fightgrid3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .fightgrid3 { grid-template-columns: repeat(1, 1fr); }
    .fightheaderinner { flex-direction: column; gap: 10px; }
}
