/* ============================================
   /public/css/splash.css
   For index.wct only
   ============================================ */

:root {
    --blue: #0000ff;
    --red: #dd0000;
    --dark-blue: #1e3650;
    --pink: #df0741;
    --white: #ffffff;
    --gray: #cccccc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
                url('/public/graphics/blackcat.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}

.container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.title {
    font-size: clamp(2.6rem, 8vw, 4.5rem);
    font-family: Arial Narrow, 'Franklin Gothic Medium', Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 1.2em;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8),
                 0 0 25px rgba(0,0,255,0.35);
}

.blue-text {
    color: var(--blue);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7), 0 0 15px rgba(0, 0, 255, 0.4);
}

.red-text {
    color: var(--red);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7), 0 0 15px rgba(221, 0, 0, 0.4);
}

.white-text {
    color: var(--white);
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.2rem;
    margin: 0 auto 2.5rem;
    max-width: 900px;
    justify-items: center;
}

.logo-item img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.5);
    transition: transform 0.15s ease;
}

.logo-item img:hover {
    transform: scale(1.04);
}

.continue-btn {
    display: inline-block;
    background-color: var(--pink);
    border: 3px solid var(--dark-blue);
    border-radius: 12px;
    color: white;
    font-size: 1.35rem;
    font-weight: bold;
    padding: 0.4em 1em;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.continue-btn:hover,
.continue-btn:focus {
    background-color: #f50b55;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(223,7,65,0.5);
}

.countdown {
    display: block;
    margin-top: 1rem;
    font-size: 1.1rem;
    color: var(--gray);
    font-weight: 500;
}

.footer {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 40px;
}

.preload-background {
    position: absolute;
    top: -9999px;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: -1;
}

@media (max-width: 640px) {
    .title {
        font-size: clamp(2.2rem, 7vw, 3.4rem);
    }
    .continue-btn {
        font-size: 1.2rem;
        padding: 0.8em 2em;
    }
}