html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    background: #f4f4f4;
    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;
}

.profitheader {
    background: #a61c1c;
    border-bottom: 3px solid #821414;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.profitheaderinner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.profitlogo img {
    max-height: 40px;
    vertical-align: middle;
}

.profitnav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 12px;
}

.profitnav a {
    font-weight: bold;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 4px;
    transition: background 0.2s;
}

.profitnav a:hover, .profitnav .active {
    background: #821414;
}

.profitwrap {
    max-width: 1200px;
    margin: 15px auto;
    padding: 0 10px;
}

.profitcard {
    background: #ffffff;
    border-radius: 6px;
    border: 1px solid #e1e4e8;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}

.profitcardtitle {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #a61c1c;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #a61c1c;
}

.profitimg {
    max-width: 44px;
    max-height: 44px;
    object-fit: contain;
    border-radius: 4px;
}

.profitgrid4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.profitgriditem {
    background: #2a2a2a;
    color: #ffffff;
    border: 1px solid #1a1a1a;
    border-radius: 6px;
    padding: 12px;
    text-align: center;
    transition: all 0.2s;
}

.profitgriditem:hover {
    transform: translateY(-2px);
    border-color: #a61c1c;
    box-shadow: 0 4px 12px rgba(166,28,28,0.2);
}

.profitgriditemtitle {
    font-size: 12px;
    font-weight: bold;
    margin: 6px 0 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #ffffff;
}

.profitprice {
    color: #ff4d4d;
    font-weight: bold;
}

.profitbtn {
    display: inline-block;
    background: #a61c1c;
    color: #ffffff;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: bold;
    border-radius: 4px;
    border: none;
    cursor: pointer;
}

.profitbtn:hover {
    background: #821414;
}

.profitdatebox {
    background: #a61c1c;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    text-align: center;
    font-weight: bold;
    font-size: 11px;
}

.profitfooter {
    background: #222222;
    color: #ffffff;
    padding: 25px 0;
    text-align: center;
    margin-top: 30px;
}

.profitfooternav a {
    margin: 0 10px;
    color: #aaaaaa;
    font-size: 12px;
}

.profitcopyright {
    color: #aaaaaa;
    font-size: 12px;
    margin-top: 10px;
}

@media (max-width: 992px) {
    .profitgrid4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .profitgrid4 { grid-template-columns: repeat(1, 1fr); }
    .profitheaderinner { flex-direction: column; gap: 10px; }
}
