/* Base styles */
body {
    font-family: 'Roboto Mono', monospace;
    background-color: #1a1a1a;
    color: #f5f5f5;
    overflow-x: hidden;
}

.neo-brutalist {
    border: 4px solid #f5f5f5;
    box-shadow: 8px 8px 0 #f5f5f5;
    transition: all 0.1s ease-out;
    border-radius: 0;
}

.neo-brutalist:hover {
    box-shadow: 6px 6px 0 #f5f5f5;
    transform: translate(2px, 2px);
}

h1, h2, h3, h4 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
    color: #FFD166;
}

.text-black-brutal {
    color: #1a1a1a;
}

.bg-yellow-brutal {
    background-color: #FFD166;
}

.bg-black-brutal {
    background-color: #1a1a1a;
}

.border-black-brutal {
    border-color: #1a1a1a;
}

.border-yellow-brutal {
    border-color: #FFD166;
}

.block-padding {
    padding: 3rem 1.5rem;
}

@media (min-width: 768px) {
    .block-padding {
        padding: 4rem 2rem;
    }
}

.nav-link-brutal:hover {
    text-decoration: underline;
    color: #FFD166;
}

.btn-brutal {
    border: 3px solid #f5f5f5;
    box-shadow: 5px 5px 0 #f5f5f5;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.1s ease-out;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-brutal:hover {
    box-shadow: 3px 3px 0 #f5f5f5;
    transform: translate(2px, 2px);
}

.btn-brutal.bg-yellow {
    background-color: #FFD166;
    color: #1a1a1a;
    border-color: #1a1a1a;
    box-shadow: 5px 5px 0 #1a1a1a;
}

.btn-brutal.bg-yellow:hover {
    box-shadow: 3px 3px 0 #1a1a1a;
}

.btn-brutal.bg-black-outline {
    background-color: transparent;
    color: #f5f5f5;
    border-color: #f5f5f5;
    box-shadow: 5px 5px 0 #f5f5f5;
}

.btn-brutal.bg-black-outline:hover {
    background-color: #FFD166;
    color: #1a1a1a;
    border-color: #1a1a1a;
    box-shadow: 3px 3px 0 #1a1a1a;
}

.service-card {
    transition: all 0.2s ease-out;
}

.service-card:hover {
    transform: scale(1.02);
}

/* För den lilla chevrondown ikonen */
.icon-bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Support-specifika stilar */
.support-tier {
    transition: all 0.2s ease-out;
}

.support-tier:hover {
    transform: translateY(-5px);
}

.priority-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid;
    margin-bottom: 1rem;
}

.priority-high {
    background-color: #ef4444;
    color: #fff;
    border-color: #dc2626;
}

.priority-medium {
    background-color: #f59e0b;
    color: #fff;
    border-color: #d97706;
}

.priority-standard {
    background-color: #10b981;
    color: #fff;
    border-color: #059669;
}

.response-time {
    font-size: 2rem;
    font-weight: 700;
    color: #FFD166;
}