html, body {
    max-width: 100vw;
    overflow-x: hidden;
}
body {
    background-color: #FFFFFF;
    color: #181818;
    -webkit-font-smoothing: antialiased;
}

.hairline-b { border-bottom: 1px solid #E5E5E5; }
.hairline-r { border-right: 1px solid #E5E5E5; }
.hairline-l { border-left: 1px solid #E5E5E5; }
.hairline-t { border-top: 1px solid #E5E5E5; }

.btn-primary {
    background-color: #E60000;
    color: #FFFFFF;
    transition: all 0.2s ease-in-out;
}
.btn-primary:hover {
    background-color: #cc0000;
    box-shadow: 0 4px 15px rgba(230, 0, 0, 0.2);
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid #181818;
    color: #181818;
    transition: all 0.2s ease-in-out;
}
.btn-secondary:hover {
    border-color: #E60000;
    color: #E60000;
    background: rgba(230, 0, 0, 0.02);
}

.bento-item {
    background: #F9F9F9;
    border: 1px solid #E5E5E5;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease;
}
.bento-item:hover {
    border-color: rgba(230, 0, 0, 0.5); /* Tracking Red */
    transform: translateY(-2px);
    background: #FFFFFF;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.05);
}

.bento-item.bg-brand-black:hover {
    background: #181818;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.3);
}

.subbrand-icon {
    width: 32px;
    height: 32px;
    background: #181818;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}
.subbrand-icon::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50%;
    background: #E60000;
}
.subbrand-text {
    position: relative;
    z-index: 10;
    font-size: 8px;
    font-weight: 900;
    color: #FFFFFF;
    letter-spacing: 0.05em;
}

.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

::selection {
    background: #E60000;
    color: #FFFFFF;
}
