* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('./APP/2.jpeg');
    background-size: cover;
    background-position: center;
    color: white;
}

.container {
    text-align: center;
    padding: 40px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 90%;
}

.logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    background-color: white;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.logo img {
    max-width: 100%;
    max-height: 100%;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.9;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    outline: none;
    flex: 1;
    min-width: 150px;
}

.btn-primary {
    background: linear-gradient(45deg, #6e8efb, #a777e3);
    color: white;
    box-shadow: 0 4px 15px rgba(110, 142, 251, 0.4);
}

.btn-secondary {
    background: linear-gradient(45deg, #ff9a9e, #fad0c4);
    color: #333;
    box-shadow: 0 4px 15px rgba(255, 154, 158, 0.4);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 600px) {
    .buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
    }
}