/* Reset default margin and padding */
html, body {
    margin: 0;
    padding: 0;
}

.crowthulhu {
    position: relative;
    height: 100vh;
    width: 100%;
    background-size: contain; /* Ensures the image covers the navbar */
    background-position:center;
    background-repeat: no-repeat;
    background-color: black;
    background-image: url('../images/crowthulhu.png');
}

/* 404 suggestions overlay matching Crowthulhu theme */
.suggestions-container {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    max-width: 600px;
    width: 90%;
    background: rgba(30, 30, 30, 0.95);
    border: 2px solid #5D3FD3;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    z-index: 10;
}

.suggestions-title {
    color: #ffe066;
    font-size: 1.8rem;
    margin: 0 0 12px 0;
    text-align: center;
    font-weight: 600;
}

.suggestions-intro {
    color: #f7f5f0;
    font-size: 1rem;
    margin: 0 0 16px 0;
    text-align: center;
}

.suggestions-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.suggestions-list li {
    margin-bottom: 10px;
    padding: 10px 14px;
    background: rgba(93, 63, 211, 0.15);
    border-left: 3px solid #5D3FD3;
    border-radius: 6px;
    transition: background 0.2s, border-color 0.2s;
}

.suggestions-list li:hover {
    background: rgba(93, 63, 211, 0.25);
    border-left-color: #8e44ad;
}

.suggestions-list a {
    color: #ffe066;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
}

.suggestions-list a:hover {
    color: #ffd966;
    text-decoration: underline;
}

.suggestions-fallback {
    color: #f7f5f0;
    text-align: center;
    font-size: 1rem;
    padding: 20px;
}

.suggestions-loading {
    color: #ffe066;
    text-align: center;
    font-size: 1rem;
    padding: 20px;
}

.suggestions-score {
    float: right;
    font-size: 0.85rem;
    color: #f7f5f0;
}

@media (max-width: 768px) {
    .suggestions-container {
        top: 10%;
        padding: 16px;
    }
    .suggestions-title {
        font-size: 1.4rem;
    }
    .suggestions-list a {
        font-size: 1rem;
    }
}