/* Particle.js Container */
        #particles-js {
            position: fixed;
            width: 100%;
            height: 100%;
            background-color: #4c1864;
            background: linear-gradient(135deg, rgba(73, 25, 104, 0.9) 0%, rgba(69, 31, 151, 0.9) 100%),
                url('../images/jobseeker/coming-soon.jpg') no-repeat center center;
            z-index: 1;
        }
        
        /* Content Container */
        .coming-soon-container {
            position: relative;
            z-index: 10;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-align: center;
            padding: 60px 20px;
        }
        
        .coming-soon-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 50px;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            box-shadow: 0 25px 45px rgba(0, 0, 0, 0.3);
            transform-style: preserve-3d;
            perspective: 1000px;
        }
        
        .logo {
            margin-bottom: 40px;
            transform: translateZ(50px);
        }
        
        .logo img {
            height: 80px;
            filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
        }
        
        h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 4rem;
            font-weight: 900;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 3px;
            text-shadow: 0 5px 15px rgba(0,0,0,0.3);
            transform: translateZ(40px);
        }
        
        .subtitle {
            font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
            font-weight: 400;
            margin-bottom: 50px;
            opacity: 0.9;
            transform: translateZ(30px);
        }
        
        .countdown {
            display: flex;
            justify-content: center;
            gap: 25px;
            margin-bottom: 60px;
            transform: translateZ(20px);
        }
        
        .countdown-item {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 25px 20px;
            min-width: 120px;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: all 0.4s ease;
        }
        
        .countdown-item:hover {
            transform: translateY(-10px) scale(1.05);
            background: rgba(255, 255, 255, 0.2);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }
        
        .countdown-number {
            font-family: 'Montserrat', sans-serif;
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1;
            background: linear-gradient(to right, #F7B205, #ffd700);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 10px rgba(247, 178, 5, 0.3);
        }
        
        .countdown-label {
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            opacity: 0.8;
            margin-top: 10px;
        }
        
        .notification-form {
            max-width: 500px;
            margin: 0 auto;
            transform: translateZ(10px);
        }
        
        .form-control {
            font-family: 'Poppins', sans-serif;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: #fff;
            height: 55px;
            margin-bottom: 20px;
            border-radius: 50px;
            padding-left: 25px;
            font-size: 1rem;
            transition: all 0.3s;
        }
        
        .form-control:focus {
            background: rgba(255, 255, 255, 0.15);
            border-color: #F7B205;
            box-shadow: 0 0 0 0.25rem rgba(247, 178, 5, 0.25);
        }
        
        .form-control::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .btn-primary {
            font-family: 'Montserrat', sans-serif;
            background: linear-gradient(135deg, #F7B205 0%, #ffd700 100%);
            border: none;
            color: #000;
            font-weight: 700;
            padding: 15px 40px;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            transition: all 0.4s;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            background: linear-gradient(135deg, #ffc72c 0%, #ffe066 100%);
        }
        
        .social-links {
            margin-top: 50px;
            transform: translateZ(20px);
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: #fff;
            font-size: 1.3rem;
            margin: 0 12px;
            transition: all 0.4s;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.15);
        }
        
        .social-links a:hover {
            background: #F7B205;
            color: #000;
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animated {
            animation: fadeInUp 1s both;
        }
        
        .delay-1 {
            animation-delay: 0.2s;
        }
        
        .delay-2 {
            animation-delay: 0.4s;
        }
        
        .delay-3 {
            animation-delay: 0.6s;
        }
        
        .delay-4 {
            animation-delay: 0.8s;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
            
            .subtitle {
                font-size: 1.2rem;
            }
            
            .countdown {
                flex-wrap: wrap;
                gap: 15px;
            }
            
            .countdown-item {
                min-width: calc(50% - 30px);
                padding: 15px 10px;
            }
            
            .countdown-number {
                font-size: 2.5rem;
            }
            
            .coming-soon-content {
                padding: 30px 20px;
            }
        }