* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #2b2d31;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 3rem;
    padding-bottom: 3rem;
    overflow-y: auto;
}

.splash-container {
    text-align: center;
    padding: 3rem;
    background: #1e1f22;
    backdrop-filter: blur(10px);
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    border: 1px solid #3a3c42;
    position: relative;
    max-width: 900px;
    width: 100%;
}

.header {
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 4px;
}

h1 {
    font-size: .8rem;
    color: #dbdee1;
    text-shadow: none;
    letter-spacing: 2px;
    margin: 0;
}

.help-link {
    font-size: .8rem;
    color: #dbdee1;
    text-decoration: none;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.help-link:hover {
    color: #ffffff;
}

.category-selector {
    margin-top: 3rem;
    display: flex;
    justify-content: flex-start;
    margin-bottom: 1.5rem;
}

.commands-list {
    text-align: left;
    background: #2b2d31;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #3a3c42;
    max-height: none;
    overflow-y: visible;
}

.button-container {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 4rem;
}

.nav-button {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #dbdee1;
    background: #2b2d31;
    border: 1px solid #3a3c42;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    display: inline-block;
}

.nav-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    background: #383a40;
    border-color: #4e5058;
}

.nav-button:active {
    transform: translateY(-1px);
}

.commands-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.commands-list li {
    color: #dbdee1;
    padding: 0.25rem 0;
    font-size: 0.85rem;
    line-height: 1.3;
}

.commands-list strong {
    color: #ffffff;
}

.commands-list .subcommand {
    padding-left: 1.5rem;
    font-size: 0.75rem;
    padding-top: 0.15rem;
    padding-bottom: 0.15rem;
}

.commands-list .category-title {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #3a3c42;
}

.category-dropdown {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #dbdee1;
    background: #2b2d31;
    border: 1px solid #3a3c42;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-width: 200px;
}

.category-dropdown:hover {
    background: #383a40;
    border-color: #4e5058;
}

.category-dropdown:focus {
    outline: none;
    border-color: #4e5058;
}

.category-dropdown option {
    background: #2b2d31;
    color: #dbdee1;
}

@media (max-width: 600px) {
    h1 {
        font-size: 2.5rem;
    }

    .button-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-button {
        width: 100%;
    }
}
