html {
    box-sizing: border-box;
    height: 100%;
    margin: 0;
    padding: 0;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
    margin: 0;
    padding: 0;
    height: 100%;
    background: linear-gradient(135deg, #0a3d5c 0%, #184F74 25%, #2a6f97 50%, #CAA876 75%, #e0c097 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

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

body::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(202, 168, 118, 0.15) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    gap: 40px;
}

.content img {
    width: 600px;
    max-width: 80vw;
    height: auto;
    display: block;
    background: transparent;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.redirect-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 24px;
    background-color: #184F74 !important;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(24, 79, 116, 0.4);
    width: 64px;
    height: 64px;
}

.redirect-button:hover {
    background-color: #1a5a85;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(24, 79, 116, 0.5);
}

.redirect-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(24, 79, 116, 0.3);
}

.redirect-button svg {
    transition: transform 0.3s ease;
}

.redirect-button:hover svg {
    transform: translateX(4px);
}