body, html {
    margin: 0;
    padding: 0;
    background-color: #0e0f12;
    color: #f3f4f6;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    overflow-x: hidden;
}
a {
    color: #f5b324;
    text-decoration: none;
    transition: all 0.3s ease;
}
a:hover {
    color: #ffd166;
}
.figurativeTopBar {
    background-color: #08090a;
    border-bottom: 1px solid #1f2229;
    padding: 8px 0;
    font-size: 13px;
    color: #8b92a0;
}
.figurativeTopWrap {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}
.figurativeHeader {
    background-color: #131418;
    border-bottom: 2px solid #f5b324;
    position: relative;
    z-index: 1000;
}
.figurativeNavWrap {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 70px;
}
.figurativeLogo img {
    height: 42px;
    max-width: 160px;
    object-fit: contain;
    vertical-align: middle;
}
.figurativeNavMenu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}
.figurativeNavMenu li {
    margin: 0 8px;
}
.figurativeNavMenu li a {
    color: #d1d5db;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}
.figurativeNavMenu li a:hover, .figurativeNavMenu li.figurativeActive a {
    color: #0e0f12;
    background: #f5b324;
    font-weight: 700;
}
.figurativeContainer {
    max-width: 1200px;
    margin: 25px auto;
    padding: 0 20px;
}
.figurativeSectionHeader {
    text-align: center;
    margin: 40px 0 25px 0;
}
.figurativeSectionTitle {
    font-size: 24px;
    color: #f5b324;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.figurativeSectionLine {
    width: 45px;
    height: 3px;
    background: #f5b324;
    margin: 0 auto;
    border-radius: 2px;
}
.figurativeHeroBox {
    background: linear-gradient(135deg, #181a20 0%, #131418 100%);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 35px;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    border: 1px solid #2f3440;
}
.figurativeHeroCard {
    flex: 1;
    min-width: 280px;
    background: #131418;
    border: 1px solid #282c37;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.figurativeHeroImg {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 6px;
    background: #1c1e24;
    flex-shrink: 0;
}
.figurativeHeroInfo {
    flex: 1;
    overflow: hidden;
}
.figurativeHeroTitle {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 8px;
}
.figurativeGridTwo {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}
.figurativeGridFour {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}
.figurativeCard {
    background: #131418;
    border: 1px solid #242730;
    border-radius: 8px;
    padding: 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.figurativeCard:hover {
    transform: translateY(-4px);
    border-color: #f5b324;
    box-shadow: 0 6px 20px rgba(245, 179, 36, 0.15);
}
.figurativeCardImg {
    width: 65px;
    height: 65px;
    object-fit: contain;
    margin: 0 auto 12px auto;
}
.figurativeCardTitle {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 8px;
}
.figurativeCardPrice {
    color: #f5b324;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}
.figurativeCardBtn {
    display: block;
    background: #f5b324;
    color: #0e0f12 !important;
    padding: 7px 0;
    border-radius: 4px;
    font-weight: 700;
    font-size: 12px;
    text-align: center;
}
.figurativeCardBtn:hover {
    background: #dfa01a;
}
.figurativeBtnSmall {
    padding: 6px 14px;
    background: #f5b324;
    color: #0e0f12 !important;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
}
.figurativeBtnSmall:hover {
    background: #dfa01a;
}
.figurativeTableWrap {
    background: #131418;
    border: 1px solid #242730;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 40px;
}
.figurativeTable {
    width: 100%;
    border-collapse: collapse;
}
.figurativeTable th {
    text-align: left;
    padding: 12px 15px;
    color: #8b92a0;
    border-bottom: 1px solid #242730;
    font-size: 13px;
    font-weight: 600;
    background: #1a1c22;
}
.figurativeTable td {
    padding: 14px 15px;
    border-bottom: 1px solid #1c1e25;
    color: #d1d5db;
    font-size: 14px;
    vertical-align: middle;
}
.figurativeTable tr:hover td {
    background: #181a20;
}
.figurativeBadge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 500;
}
.figurativeBadgeAuto {
    background: rgba(245, 179, 36, 0.15);
    color: #f5b324;
    border: 1px solid #f5b324;
}
.figurativeBadgeManual {
    background: #1c1e25;
    color: #8b92a0;
    border: 1px solid #2b2f3a;
}
.figurativePanel {
    background: #131418;
    border: 1px solid #242730;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
}
.figurativeFormLabel {
    color: #d1d5db;
    font-size: 14px;
    margin-bottom: 6px;
    display: block;
    font-weight: 500;
}
.figurativeInput {
    width: 100%;
    box-sizing: border-box;
    background: #0e0f12;
    border: 1px solid #2b2f3a;
    color: #ffffff;
    padding: 10px 15px;
    border-radius: 4px;
    outline: none;
    font-size: 14px;
}
.figurativeInput:focus {
    border-color: #f5b324;
}
.figurativeBtnSubmit {
    background: #f5b324;
    color: #0e0f12;
    border: none;
    width: 100%;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}
.figurativeBtnSubmit:hover {
    background: #dfa01a;
}
.figurativeFooter {
    background: #08090a;
    border-top: 1px solid #1f2229;
    padding: 40px 20px;
    text-align: center;
}
.figurativeFooterLinks a {
    color: #8b92a0;
    margin: 0 12px;
    font-size: 14px;
}
.figurativeFooterLinks a:hover {
    color: #f5b324;
}
.figurativeFooterLinks span {
    color: #242730;
}
.figurativeCopyright {
    color: #555b68;
    font-size: 13px;
    margin-top: 15px;
}
@media (max-width: 992px) {
    .figurativeGridFour { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .figurativeGridFour { grid-template-columns: 1fr; }
    .figurativeGridTwo { grid-template-columns: 1fr; }
    .figurativeNavMenu { display: none; }
}
