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

@font-face {
    font-family: 'Gilroy';
    src: url('https://fonts.cdnfonts.com/s/19472/Gilroy-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #5C3BB9;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    position: relative;
}

.logo-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.logo-container img {
    width: 80px;
    height: auto;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}

.message {
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: rgb(255, 255, 255);
    letter-spacing: 0.3px;
    line-height: 1.4;
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

@media (max-width: 768px) {
    .logo-container img {
        width: 70px;
    }

    .message {
        font-size: 16px;
        padding: 0 20px;
        bottom: 30px;
        white-space: normal;
    }
}

@media (max-width: 480px) {
    .logo-container img {
        width: 60px;
    }

    .message {
        font-size: 14px;
        bottom: 25px;
    }
}