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

html, body {
    width: 100%;
    height: 100%;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #09203f 0%, #537895 100%);
    color: #fff;
}

.wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 15px;
}

.info-card {
    background-color: rgba(20, 40, 70, 0.7);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.25);
    width: 100%;
    max-width: 460px;
    padding: 36px;
    text-align: center;
    position: relative;
}

.info-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
    background-color: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

h1 {
    margin: 40px 0 20px;
    font-size: 28px;
    font-weight: 700;
}

#status-text {
    font-size: 18px;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 12px;
}

.error-message {
    font-size: 16px;
    color: #ff8080;
    margin-top: 10px;
}

@media (max-width: 480px) {
    .info-card {
        padding: 26px;
    }

    h1 {
        font-size: 22px;
    }

    #status-text, .error-message {
        font-size: 16px;
    }
}
