body {
    font-family: 'Space Grotesk', sans-serif;
}

h1, h2, h3, h4, h5, h6, .font-display {
    font-family: 'Archivo Black', sans-serif;
}

.brutal-border {
    border: 4px solid #000000;
}

.brutal-yellow {
    background-color: #FFD700;
}

.brutal-red {
    background-color: #FF4500;
}

.brutal-blue {
    background-color: #4169E1;
}

.rotated-text {
    transform: rotate(-2deg);
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.page-section {
    animation: slideIn 0.3s ease-in-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.marquee {
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.text-stroke {
    -webkit-text-stroke: 2px black;
    color: transparent;
}

/* Tab button styles */
.tab-button {
    transition: all 0.2s ease-in-out;
}

.tab-button.active {
    background-color: #FFD700 !important;
    color: #000000 !important;
}

.tab-button:not(.active):hover {
    background-color: #FFD700;
    color: #000000;
}

/* Tab content */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}
