/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #333333;
    overflow: hidden;
    position: relative;
}

/* Container */
.container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 800px;
    padding: 20px;
}

.content {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

/* Logo */
.logo-container {
    margin-bottom: 40px;
    animation: fadeIn 1.5s ease-out;
}

.logo {
    max-width: 150px;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}
