<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Under Maintenance - SeafarerJobs.com</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .container {
            background: white;
            padding: 60px 50px;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            text-align: center;
            max-width: 500px;
            width: 100%;
            animation: slideUp 0.6s ease-out;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 30px;
            position: relative;
        }

        .gear {
            width: 50px;
            height: 50px;
            border: 4px solid #667eea;
            border-radius: 50%;
            position: absolute;
            top: 15px;
            left: 15px;
            animation: spin 4s linear infinite;
        }

        .gear::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 20px;
            height: 20px;
            background: #667eea;
            border-radius: 50%;
        }

        .gear::after {
            content: '';
            position: absolute;
            top: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 8px;
            height: 12px;
            background: #667eea;
            border-radius: 2px;
            box-shadow: 0 58px 0 #667eea, 0 -58px 0 #667eea, 58px 0 0 #667eea, -58px 0 0 #667eea;
        }

        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .wrench {
            width: 30px;
            height: 6px;
            background: #764ba2;
            position: absolute;
            bottom: 10px;
            right: 10px;
            border-radius: 3px;
            transform: rotate(-45deg);
            animation: wrench 2s ease-in-out infinite;
        }

        .wrench::before {
            content: '';
            position: absolute;
            left: -6px;
            top: -4px;
            width: 10px;
            height: 14px;
            border: 3px solid #764ba2;
            border-radius: 50%;
            background: transparent;
        }

        @keyframes wrench {
            0%, 100% { transform: rotate(-45deg); }
            50% { transform: rotate(-30deg); }
        }

        h1 {
            color: #2d3748;
            font-size: 32px;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .subtitle {
            color: #667eea;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        p {
            color: #718096;
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .divider {
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            margin: 25px auto;
            border-radius: 2px;
        }

        .status {
            display: inline-block;
            background: #f7fafc;
            border: 1px solid #e2e8f0;
            padding: 12px 25px;
            border-radius: 30px;
            margin-top: 20px;
        }

        .status-dot {
            display: inline-block;
            width: 8px;
            height: 8px;
            background: #48bb78;
            border-radius: 50%;
            margin-right: 8px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        .status-text {
            color: #4a5568;
            font-size: 14px;
            font-weight: 500;
        }

        .footer {
            margin-top: 30px;
            color: #a0aec0;
            font-size: 13px;
        }

        .footer a {
            color: #667eea;
            text-decoration: none;
        }

        .footer a:hover {
            text-decoration: underline;
        }

        @media (max-width: 480px) {
            .container {
                padding: 40px 30px;
            }
            h1 {
                font-size: 26px;
            }
        }
    </style>
</head>
<body>
    <div class="container">
        <div class="icon">
            <div class="gear"></div>
            <div class="wrench"></div>
        </div>
        
        <div class="subtitle">Under Maintenance</div>
        <h1>We'll Be Back Soon!</h1>
        
        <div class="divider"></div>
        
        <p>SeafarerJobs.com is currently undergoing scheduled maintenance to improve your experience.</p>
        <p>We're working hard to bring you an even better platform for maritime careers.</p>
        
        <div class="status">
            <span class="status-dot"></span>
            <span class="status-text">Systems are being upgraded</span>
        </div>
        
        <div class="footer">
            <p>Need urgent assistance?</p>
            <p>Contact us at <a href="mailto:support@seafarerjobs.com">support@seafarerjobs.com</a></p>
        </div>
    </div>
</body>
</html>