* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #003558 0%, #004a7a 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    overflow: hidden;
}

.container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(246, 182, 11, 0.1) 0%, transparent 70%);
    animation: pulse 10s ease-in-out infinite;
}

.content {
    position: relative;
    text-align: center;
    max-width: 800px;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(246, 182, 11, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.logo-container {
    margin-bottom: 40px;
    animation: bounceIn 1.5s ease-out;
}

.logo {
    max-width: 250px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(246, 182, 11, 0.3));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05) rotate(2deg);
}

.title {
    font-size: 3rem;
    font-weight: 700;
    color: #F6B60B;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    animation: slideInDown 1s ease-out;
}

.divider {
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #F6B60B, transparent);
    margin: 0 auto 30px;
    border-radius: 2px;
    animation: expandWidth 1.5s ease-out;
}

.message {
    font-size: 1.25rem;
    line-height: 1.8;
    color: white;
    margin-bottom: 40px;
    animation: fadeIn 2s ease-out;
}

.icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.gear {
    animation: rotate 4s linear infinite;
    filter: drop-shadow(0 5px 10px rgba(246, 182, 11, 0.5));
}

.gear-1 {
    animation-delay: 0s;
}

.gear-2 {
    animation-delay: 0.5s;
    animation-direction: reverse;
}

.gear-3 {
    animation-delay: 1s;
}

.sub-message {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    animation: fadeIn 2.5s ease-out;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 150px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        padding: 40px 30px;
    }

    .title {
        font-size: 2rem;
    }

    .message {
        font-size: 1rem;
    }

    .logo {
        max-width: 180px;
    }

    .icon-container {
        font-size: 2rem;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 30px 20px;
    }

    .title {
        font-size: 1.5rem;
    }

    .message {
        font-size: 0.9rem;
    }

    .logo {
        max-width: 150px;
    }

    .icon-container {
        font-size: 1.5rem;
        gap: 15px;
    }
}
