body {
    font-family: 'Orbitron', 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

.background-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

#vanta-birds {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.8;
}

.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    width: 90%;
    max-width: 800px;
    padding: 20px;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
}

.box {
    position: relative;
    height: 120px;
    text-align: center;
    font-weight: bold;
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    transform-style: preserve-3d;
    perspective: 500px;
    backdrop-filter: blur(2px);
    border: 2px solid rgba(255,255,255,0.3);
}

.box-text {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 2;
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 
        2px 2px 0 #ccc,
        3px 3px 0 #999,
        4px 4px 5px rgba(0,0,0,0.3);
    letter-spacing: 2px;
    transform: translateZ(20px);
    transition: all 0.3s ease;
}

.box:hover {
    backdrop-filter: blur(4px);
    transform: scale(1.05) translateZ(10px);
}

.box:hover .box-text {
    transform: translateZ(30px);
    text-shadow: 
        3px 3px 0 #ccc,
        5px 5px 0 #999,
        7px 7px 8px rgba(0,0,0,0.3);
}

.box::after {
    content: '✔';
    font-size: 20px;
    color: #000;
    position: absolute;
    top: 15px;
    right: 20px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    text-shadow: 
        1px 1px 0 #ccc,
        2px 2px 0 #999;
    z-index: 3;
}

.box:hover::after {
    opacity: 1;
}

/* Tydelige fargeforskjeller */
.box.accounting {
    background: rgba(52, 152, 219, 0.3); /* Blå med 30% opacity */
    box-shadow: 0 0 15px rgba(52, 152, 219, 0.5);
}

.box.photos {
    background: rgba(155, 89, 182, 0.3); /* Lilla med 30% opacity */
    box-shadow: 0 0 15px rgba(155, 89, 182, 0.5);
}

.box.accounting:hover {
    background: rgba(52, 152, 219, 0.4);
    box-shadow: 0 0 20px rgba(52, 152, 219, 0.7);
}

.box.photos:hover {
    background: rgba(155, 89, 182, 0.4);
    box-shadow: 0 0 20px rgba(155, 89, 182, 0.7);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .box {
        height: 100px;
    }
    
    .box-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        grid-template-columns: 1fr;
        width: 85%;
    }
    
    .box {
        height: 80px;
    }
    
    .box-text {
        font-size: 1.1rem;
    }
    
    .box::after {
        font-size: 18px;
        top: 10px;
        right: 15px;
    }
}