.splash-screen-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.splash-screen-modal {
    background-color: #2b2b2b;
    width: 600px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    color: #cecece;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    border: 1px solid #444;
}

.splash-top {
    display: flex;
    background-color: #1d1d1d;
    height: 250px;
}

.splash-image-container {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.splash-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.splash-version {
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: bold;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

.splash-links {
    width: 200px;
    padding: 20px;
    background-color: #232323;
    border-left: 1px solid #333;
}

.splash-bottom {
    display: flex;
    padding: 20px;
    gap: 40px;
}

.splash-column {
    flex: 1;
}

.splash-column h3, .splash-links h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 14px;
    color: #fff;
    font-weight: 500;
}

.splash-column ul, .splash-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.splash-column li, .splash-links li {
    margin-bottom: 5px;
}

.splash-column a, .splash-links a {
    text-decoration: none;
    color: #cecece;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background-color 0.1s;
}

.splash-column a:hover, .splash-links a:hover {
    background-color: #4772b3; /* Blender blue-ish */
    color: white;
}

.splash-links a.disabled {
    color: #666;
    pointer-events: none;
}

.splash-footer {
    padding: 10px 20px;
    background-color: #232323;
    border-top: 1px solid #333;
    font-size: 12px;
    color: #aaa;
    text-align: right;
}

.icon {
    width: 16px;
    display: inline-block;
    text-align: center;
}
