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

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 25%, #fdc830 50%, #76b852 75%, #8dc26f 100%);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    padding: 20px;
}

.container {
    text-align: center;
    animation: fadeIn 0.8s ease-in;
}

.logo {
    max-width: 550px;
    width: 100%;
    height: auto;
    margin-bottom: 40px;
    filter: drop-shadow(0 10px 25px rgba(0,0,0,0.3));
}

h1 {
    font-size: clamp(2rem, 8vw, 4.5rem);
    font-weight: 900;
    color: white;
    text-shadow:
        3px 3px 0 #000,
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000,
        4px 4px 15px rgba(0,0,0,0.5);
    margin-bottom: 20px;
    line-height: 1.2;
}

.subtitle {
    font-size: clamp(1.2rem, 4vw, 2rem);
    font-weight: 700;
    color: white;
    text-shadow:
        2px 2px 0 #000,
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000;
}

.footer {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
}

.footer a:hover {
    color: white;
    text-decoration: underline;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 350px;
        margin-bottom: 30px;
    }
}
