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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background: #ffffff;
    color: #333;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.logo {
    margin-bottom: 40px;
    animation: fadeInDown 0.8s ease;
}

.logo-image {
    max-width: 400px;
    width: 100%;
    height: auto;
}

.content {
    animation: fadeInUp 0.8s ease;
}

h1 {
    font-size: 42px;
    font-weight: 700;
    color: #4a3f8f;
    margin-bottom: 20px;
}

p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, #c43383 0%, #4a3f8f 100%);
    color: #ffffff;
    text-decoration: none;
    padding: 16px 48px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(196, 51, 131, 0.3);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 51, 131, 0.4);
}

.btn:active {
    transform: translateY(0);
}

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

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

@media (max-width: 768px) {
    .logo-image {
        max-width: 280px;
    }

    h1 {
        font-size: 32px;
    }

    p {
        font-size: 16px;
    }

    .btn {
        padding: 14px 36px;
        font-size: 16px;
    }
}
