* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    background-color: #121212;
    color: #e0e0e0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
}
a {
    color: inherit;
    text-decoration: none;
}
.illcontainer {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 15px;
}
.illheader {
    background: #1a1a1a;
    border-bottom: 2px solid #ff007f;
}
.illtopbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 65px;
}
.illlogo img {
    max-height: 42px;
    max-width: 100%;
    object-fit: contain;
}
.illnav {
    display: flex;
    align-items: center;
    gap: 15px;
}
.illnavlink {
    font-size: 15px;
    font-weight: 600;
    color: #b3b3b2;
    padding: 20px 12px;
    transition: all 0.2s;
}
.illnavlink:hover, .illnavlink.active {
    color: #ff007f;
    background: #121212;
}
.illsearchinput {
    height: 36px;
    padding: 0 12px;
    border: 1px solid #ff007f;
    background: #2a2a2a;
    color: #ffffff;
    border-radius: 4px 0 0 4px;
    outline: none;
    font-size: 13px;
    width: 200px;
}
.illsearchbtn {
    height: 36px;
    padding: 0 16px;
    background: #ff007f;
    color: #ffffff;
    border: none;
    font-weight: 700;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}
.illsubnav {
    background: #121212;
    border-bottom: 1px solid #1a1a1a;
    padding: 10px 0;
}
.illsubnavlist {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #888888;
}
.illnotice {
    background: #1a1a1a;
    border-left: 4px solid #ff007f;
    padding: 12px 18px;
    margin: 15px 0;
    border-radius: 4px;
    color: #cccccc;
    font-size: 13px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}
.illherogrid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}
.illbox {
    background: #1a1a1a;
    border-radius: 6px;
    border: 1px solid #2a2a2a;
    padding: 15px;
}
.illboxtitle {
    font-size: 15px;
    font-weight: 700;
    color: #ff007f;
    padding-bottom: 8px;
    border-bottom: 2px solid #ff007f;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
}
.illheroimgbox {
    width: 100%;
    height: 220px;
    background: #121212;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #2a2a2a;
}
.illheroimg {
    max-height: 180px;
    max-width: 85%;
    object-fit: contain;
}
.illgrid6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-bottom: 25px;
}
.illgrid4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}
.illcard {
    background: #1a1a1a;
    border-radius: 6px;
    border: 1px solid #2a2a2a;
    padding: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.2s;
}
.illcard:hover {
    border-color: #ff007f;
    box-shadow: 0 4px 15px rgba(255,0,127,0.25);
}
.illcardimg {
    width: 100%;
    height: 80px;
    object-fit: contain;
    margin-bottom: 8px;
    display: block;
}
.illcardtitle {
    font-size: 13px;
    font-weight: 600;
    color: #eeeeee;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 6px;
}
.illprice {
    color: #ff007f;
    font-weight: 700;
}
.illbadge {
    position: absolute;
    top: 6px;
    right: 6px;
    background: #ff007f;
    color: #ffffff;
    font-size: 10px;
    padding: 1px 4px;
    border-radius: 2px;
}
.illautotag {
    font-size: 10px;
    background: #2a2a2a;
    color: #ff007f;
    padding: 2px 6px;
    border-radius: 3px;
    border: 1px solid #ff007f;
}
.illsectiontitle {
    font-size: 16px;
    font-weight: 700;
    color: #ff007f;
    margin: 25px 0 15px;
    padding-left: 10px;
    border-left: 4px solid #ff007f;
}
.illfooter {
    background: #111111;
    color: #666666;
    padding: 30px 0;
    margin-top: 40px;
    text-align: center;
    font-size: 13px;
    border-top: 1px solid #1a1a1a;
}
.illfooterlinks {
    margin-bottom: 10px;
}
.illfooterlinks a {
    color: #999999;
}
.illcardbox {
    background: #1a1a1a;
    border-radius: 6px;
    border: 1px solid #2a2a2a;
    padding: 25px;
    margin-bottom: 20px;
}
.illformgroup {
    margin-bottom: 15px;
}
.illlabel {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #cccccc;
}
.illinput {
    width: 100%;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #333333;
    background: #121212;
    color: #ffffff;
    border-radius: 4px;
    outline: none;
}
.illbtn {
    display: inline-block;
    width: 100%;
    height: 42px;
    line-height: 42px;
    text-align: center;
    background: #ff007f;
    color: #ffffff;
    border-radius: 4px;
    font-weight: 600;
    border: none;
    cursor: pointer;
}
.illtabs {
    display: flex;
    border-bottom: 2px solid #2a2a2a;
    margin-bottom: 20px;
}
.illtabitem {
    padding: 10px 20px;
    font-weight: 600;
    color: #999999;
}
.illtabitem.active {
    color: #ff007f;
    border-bottom: 2px solid #ff007f;
    margin-bottom: -2px;
}
@media (max-width: 992px) {
    .illherogrid {
        grid-template-columns: 1fr;
    }
    .illgrid6 {
        grid-template-columns: repeat(3, 1fr);
    }
    .illgrid4 {
        grid-template-columns: repeat(2, 1fr);
    }
}
