@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(45deg, #f5f7fa, #c3cfe2, #e0eafc, #cfdef3);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

.animated-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='rgba(255,255,255,0.1)' fill-opacity='1' d='M0,96L48,122.7C96,149,192,203,288,208C384,213,480,171,576,144C672,117,768,107,864,122.7C960,139,1056,181,1152,181.3C1248,181,1344,139,1392,117.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-position: bottom;
    animation: wave 20s linear infinite;
    opacity: 0.5;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes wave {
    0% {
        background-position-x: 0;
    }
    100% {
        background-position-x: 1440px;
    }
}

.container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
    padding: 40px;
    width: 100%;
    max-width: 800px;
    text-align: center;
}

.main-logo {
    margin-bottom: 40px;
}

.logo {
    transition: transform 0.3s ease;
}

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

.sp-logo {
    width: 140px;
    height: auto;
}

footer {
    margin-top: 30px;
    padding: 20px;
    text-align: center;
    width: 100%;
}

.maltepe-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.maltepe-logo:hover {
    transform: scale(1.1);
}

.content {
    margin-top: 30px;
}

h1 {
    color: #1a237e;
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: 600;
}

h2 {
    color: #303f9f;
    font-size: 1.8em;
    margin-bottom: 15px;
    font-weight: 500;
}

p {
    color: #455a64;
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 30px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    margin: 30px 0;
    overflow: hidden;
}

.progress {
    width: 75%;
    height: 100%;
    background: linear-gradient(90deg, #1a237e, #303f9f);
    border-radius: 3px;
    animation: progress 2s ease-in-out infinite;
}

@keyframes progress {
    0% {
        width: 0%;
    }
    100% {
        width: 75%;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 20px;
    }
    
    .sp-logo {
        width: 120px;
    }
    
    .maltepe-logo {
        width: 50px;
        height: 50px;
    }
    
    h1 {
        font-size: 2em;
    }
    
    h2 {
        font-size: 1.5em;
    }
}
