
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: url('https://www.transparenttextures.com/patterns/stardust.png') repeat, linear-gradient(to bottom, #0d1b3d, #1f1f4c);
    color: white;
    overflow-x: hidden;
}

header, footer {
    position: fixed;
    width: 100%;
    background-color: rgba(10, 10, 30, 0.6);
    color: #ccc;
    text-align: center;
    padding: 10px 0;
    font-size: 1.1em;
    z-index: 1000;
    font-family: 'Courier New', Courier, monospace;
}

header {
    top: 0;
}
footer {
    bottom: 0;
}

.container {
    text-align: center;
    padding-top: 90px;
    padding-bottom: 90px;
    max-width: 1000px;
    margin: 0 auto;
}

.logo {
    width: 30vw;
    min-width: 120px;
    max-width: 250px;
    height: auto;
    margin-bottom: 20px;
}

.site-name {
    font-size: 3.5em;
    color: #f8f8f8;
    font-family: 'Georgia', serif;
    margin: 10px 0 20px;
}

.subtitle {
    font-size: 1.3em;
    color: #ddd;
    margin-bottom: 10px;
    padding: 0 10px;
}

.loading-text {
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 30px;
}

.dots::after {
    content: '';
    animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
    0%, 20% { content: ''; }
    40% { content: '.'; }
    60% { content: '..'; }
    80%, 100% { content: '...'; }
}

.image-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 20px 10px;
}

.image-slider img {
    width: 100%;
    max-width: 180px;
    aspect-ratio: 1/1;
    object-fit: contain;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px;
    transition: transform 0.3s ease;
}

.image-slider img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .site-name {
        font-size: 2.2em;
    }

    .subtitle {
        font-size: 1.1em;
    }

    .logo {
        width: 50vw;
    }

    .image-slider img {
        max-width: 40vw;
    }

    header, footer {
        font-size: 0.9em;
        padding: 8px 0;
    }
}
