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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 600px;
}

.card {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.logo {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    max-width: 450px;
    height: auto;
    display: block;
}

h1 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 20px;
    font-weight: 700;
}

.message {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 30px;
    line-height: 1.6;
}

.new-url {
    background: #f7fafc;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    border-left: 4px solid #667eea;
}

.new-url strong {
    display: block;
    color: #2d3748;
    margin-bottom: 10px;
    font-size: 1rem;
}

.url-link {
    color: #667eea;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    word-break: break-all;
}

.url-link:hover {
    text-decoration: underline;
}

.btn-redirect {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.btn-redirect:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

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

footer {
    margin-top: 30px;
    text-align: center;
}

footer p {
    color: white;
    font-size: 0.9rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .card {
        padding: 40px 30px;
    }

    .logo img {
        max-width: 300px;
    }

    h1 {
        font-size: 2rem;
    }

    .message {
        font-size: 1.1rem;
    }

    .url-link {
        font-size: 1.1rem;
    }

    .btn-redirect {
        padding: 15px 40px;
        font-size: 1rem;
    }
}
