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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #f5f5f7;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.background-blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('Splashscreen-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(3.6px);
    transform: scale(1.1);
    z-index: -1;
}

.background-blur::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 20, 0.85), rgba(30, 10, 25, 0.75));
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.logo-container {
    margin-bottom: 3rem;
    animation: fadeInDown 1s ease-out;
}

.logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

.content {
    max-width: 800px;
    width: 100%;
    text-align: center;
    animation: fadeInUp 1s ease-out 0.3s both;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.info-section {
    background: rgba(15, 15, 25, 0.75);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.intro {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: #d1d5db;
    font-weight: 400;
}

.game-announcement {
    margin: 2.5rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.15), rgba(80, 0, 80, 0.15));
    border-left: 3px solid #dc2626;
    border-radius: 12px;
}

.game-announcement h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fca5a5;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.game-description {
    font-size: 1.3rem;
    font-style: italic;
    color: #e5e7eb;
    font-weight: 300;
}

.studio-info {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.studio-info p {
    font-size: 1.1rem;
    margin: 0.8rem 0;
    color: #9ca3af;
    line-height: 1.8;
    font-weight: 400;
}

.studio-info strong {
    color: #f3f4f6;
    font-weight: 600;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .logo {
        max-width: 280px;
    }

    h1 {
        font-size: 1.8rem;
    }

    .info-section {
        padding: 2rem 1.5rem;
    }

    .intro {
        font-size: 1rem;
    }

    .game-announcement h2 {
        font-size: 1.2rem;
    }

    .game-description {
        font-size: 1.1rem;
    }

    .studio-info p {
        font-size: 1rem;
    }
}