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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to right, #f5f7fa, #c3cfe2);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #333;
    position: relative;
}

.version {
    position: absolute;
    top: 40px;
    left: 40px;
    font-size: 18px;
    color: #666;
    background: rgba(255, 255, 255, 0.8);
    padding: 8px 16px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-weight: 200;
}

.container {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 500px;
}

.logo {
    width: 200px;
    margin-bottom: 20px;
    object-fit: contain;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

h1 {
    margin-bottom: 10px;
    font-weight: 600;
    color: #2c3e50;
}

p {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    margin: 15px 0;
}

a {
    display: block;
    width: 100%;
    padding: 12px 0;
    background-color: #3498db;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s, transform 0.2s;
}

a:hover {
    background-color: #2ecc71;
    transform: scale(1.02);
} 
