/* Base Styles for Hard Theme */
body {
    background-color: #050505;
    color: #ffffff;
    font-family: 'Noto Sans JP', sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* Typography Utilities */
.font-impact {
    font-family: 'Anton', sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.text-stroke-white {
    -webkit-text-stroke: 1px white;
    color: transparent;
}

/* Animations (Removed Bouncy/Pop ones) */
.reveal-fade {
    opacity: 0;
    animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Sharp Edges & Solid Elements */
.section-title {
    font-family: 'Anton', sans-serif;
    font-size: 5rem;
    line-height: 0.9;
    text-transform: uppercase;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #000;
}
::-webkit-scrollbar-thumb {
    background: #333;
}
::-webkit-scrollbar-thumb:hover {
    background: #E11D48;
}