/* Core Design System & Global Styles */
:root {
    --primary: #FFD600;
    --secondary: #1c3fe7;
    --black: #000000;
    --white: #ffffff;
    --bg: #f9f9f9;
}

* {
    box-sizing: border-box;
}

body {
    background-color: var(--bg);
    color: var(--black);
    overflow-x: hidden;
    font-family: 'Epilogue', sans-serif;
    margin: 0;
    padding: 0;
}

/* Neo-Brutalism Utilities */
.neo-shadow { box-shadow: 4px 4px 0px 0px var(--black); }
.neo-shadow-sm { box-shadow: 2px 2px 0px 0px var(--black); }
.neo-shadow-lg { box-shadow: 8px 8px 0px 0px var(--black); }
.neo-shadow-xl { box-shadow: 12px 12px 0px 0px var(--black); }

@media (min-width: 768px) {
    .neo-shadow { box-shadow: 8px 8px 0px 0px var(--black); }
    .neo-shadow-sm { box-shadow: 4px 4px 0px 0px var(--black); }
    .neo-shadow-lg { box-shadow: 12px 12px 0px 0px var(--black); }
    .neo-shadow-xl { box-shadow: 16px 16px 0px 0px var(--black); }
}

.border-neo { border: 4px solid var(--black); }
.border-neo-lg { border: 8px solid var(--black); }

/* Sticker Effects */
.sticker-rotate-1 { transform: rotate(-1deg); }
.sticker-rotate-2 { transform: rotate(2deg); }

.active-press:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px 0px rgba(0,0,0,1) !important;
}

/* Marquee Animation */
@keyframes slide-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.animate-marquee {
    display: flex;
    width: max-content;
    animation: slide-left 30s linear infinite;
}

.infinite-marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    background: var(--black);
    padding: 12px 0;
    border-bottom: 4px solid var(--black);
    color: white;
}

.marquee-group {
    display: flex;
    flex-shrink: 0;
    gap: 40px;
    padding: 0 20px;
}

.marquee-group span {
    font-size: 1.2rem;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: inherit;
}

@media (min-width: 768px) {
    .marquee-group span {
        font-size: 1.8rem;
    }
}

/* Layout Utilities */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Typography Fixes */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Epilogue', sans-serif;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    margin: 0;
}

/* Responsive Typography Classes */
.text-display-2xl { font-size: 3.5rem; line-height: 1; }
.text-display-xl { font-size: 2.5rem; line-height: 1; }
.text-headline-lg { font-size: 2rem; line-height: 1.1; }
.text-headline-md { font-size: 1.5rem; line-height: 1.2; }

@media (min-width: 768px) {
    .text-display-2xl { font-size: 6rem; }
    .text-display-xl { font-size: 4.5rem; }
    .text-headline-lg { font-size: 3rem; }
    .text-headline-md { font-size: 2.25rem; }
}

/* Simple Facility Tag */
.facility-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background: white;
    border: 3px solid black;
    box-shadow: 4px 4px 0px 0px black;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.05em;
    transition: all 0.1s;
}

@media (min-width: 768px) {
    .facility-tag {
        padding: 12px 20px;
        font-size: 14px;
    }
}

.facility-tag:hover {
    transform: translate(2px, 2px);
    box-shadow: none;
    background: var(--primary);
}

/* Material Symbols Fix */
.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
