        * {
            font-family: 'Prompt', sans-serif;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: #f4f7fc;
            color: #333;
            font-size: 14px;
            line-height: 1.6;
        }

        /* Navbar สไตล์โมเดิร์น */
        .navbar-modern {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            padding: 10px 0;
            transition: all 0.3s ease;
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .brand-text {
            font-size: 24px;
            font-weight: 700;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-link {
            font-weight: 500;
            color: #2d3748 !important;
            padding: 8px 16px !important;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .nav-link:hover {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white !important;
            transform: translateY(-2px);
        }

        .nav-link.active {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white !important;
        }

        /* Hero Section */
        .hero-section {
            position: relative;
            min-height: 60vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            overflow: hidden;
            padding: 120px 0 80px;
            margin-top: 40px;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://img5.pic.in.th/file/secure-sv1/13070434268ce53e04c29d3b12e9da98.jpg') center/cover;
            opacity: 0.1;
            animation: zoomInOut 20s infinite alternate;
        }

        @keyframes zoomInOut {
            0% { transform: scale(1); }
            100% { transform: scale(1.1); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            color: white;
            text-align: center;
        }

        .hero-title {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
            animation: fadeInUp 1s ease;
        }

        .hero-subtitle {
            font-size: 20px;
            margin-bottom: 30px;
            opacity: 0.9;
            animation: fadeInUp 1s ease 0.2s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Stats Cards */
        .stats-container {
            margin-top: -50px;
            position: relative;
            z-index: 10;
        }

        .stat-card {
            background: white;
            border-radius: 20px;
            padding: 30px 20px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            height: 100%;
        }

        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
        }

        .stat-icon {
            width: 80px;
            height: 80px;
            line-height: 80px;
            border-radius: 50%;
            margin: 0 auto 20px;
            font-size: 32px;
            color: white;
        }

        .stat-icon.daily { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
        .stat-icon.monthly { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
        .stat-icon.disabled { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }

        .stat-number {
            font-size: 32px;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 18px;
            color: #718096;
            font-weight: 500;
        }

        /* Job Cards */
        .job-section {
            padding: 80px 0;
        }

        .section-title {
            font-size: 36px;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 40px;
            position: relative;
            padding-bottom: 15px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 2px;
        }

        .job-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            margin-bottom: 30px;
            border: none;
        }

        .job-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
        }

        .job-header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 15px 20px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .job-header.monthly { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
        .job-header.disabled { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }

        .job-number {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 18px;
        }

        .job-title {
            font-size: 20px;
            font-weight: 600;
            margin: 0;
            flex: 1;
        }

        .job-body {
            padding: 20px;
        }

        .job-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-bottom: 15px;
        }

        .job-info-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #4a5568;
        }

        .job-info-item i {
            width: 20px;
            color: #667eea;
            font-size: 16px;
        }

        .job-info-item.monthly i { color: #f5576c; }
        .job-info-item.disabled i { color: #4facfe; }

        .job-description {
            background: #f7fafc;
            padding: 15px;
            border-radius: 10px;
            margin: 15px 0;
        }

        .job-status {
            display: inline-block;
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: 500;
            font-size: 14px;
        }

        .job-status.urgent {
            background: #fed7d7;
            color: #c53030;
        }

        .job-status.normal {
            background: #c6f6d5;
            color: #22543d;
        }

        .job-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 1px solid #e2e8f0;
            font-size: 13px;
            color: #718096;
        }

        /* Info Cards */
        .info-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 80px 0;
            color: white;
        }

        .info-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 30px;
            height: 100%;
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s ease;
        }

        .info-card:hover {
            transform: translateY(-10px);
            background: rgba(255,255,255,0.15);
        }

        .info-icon {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .info-title {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .info-list {
            list-style: none;
            padding: 0;
        }

        .info-list li {
            padding: 10px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .info-list li i {
            width: 24px;
            font-size: 18px;
        }

        .info-note {
            margin-top: 20px;
            padding: 15px;
            background: rgba(0,0,0,0.2);
            border-radius: 10px;
            font-size: 14px;
        }

        /* Footer */
        .footer-section {
            background: #1a202c;
            color: white;
            padding: 60px 0 20px;
        }

        .footer-title {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .footer-contact {
            list-style: none;
            padding: 0;
        }

        .footer-contact li {
            padding: 10px 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-contact i {
            width: 24px;
            color: #667eea;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: #667eea;
            color: white;
            transform: translateY(-3px);
        }

        .map-container {
            border-radius: 20px;
            overflow: hidden;
            margin-top: 20px;
        }

        .copyright {
            text-align: center;
            padding-top: 40px;
            margin-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #a0aec0;
        }

        /* Loading Spinner */
        .spinner-container {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 200px;
        }

        .custom-spinner {
            width: 50px;
            height: 50px;
            border: 3px solid #e2e8f0;
            border-top-color: #667eea;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 32px;
            }
            
            .hero-subtitle {
                font-size: 18px;
            }
            
            .stat-card {
                margin-bottom: 20px;
            }
            
            .job-info {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 28px;
            }
        }

        /* Cookie Consent */
        #cookieConsent {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background: white;
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
            z-index: 9999;
            display: none;
            max-width: 400px;
            margin: 0 auto;
        }

        @media (min-width: 768px) {
            #cookieConsent {
                left: auto;
                right: 20px;
                margin: 0;
            }
        }

.visitor-stat-item {
    background: rgba(255,255,255,0.1);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
}
.visitor-stat-item i {
    color: #667eea;
}


/* เพิ่มในส่วน style */
.visitor-stat-item {
    background: rgba(255,255,255,0.1);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    min-width: 150px;
}

.visitor-stat-item:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

.visitor-stat-item i {
    color: #667eea;
    margin-right: 8px;
}

/* สำหรับโทรศัพท์มือถือ */
@media (max-width: 768px) {
    .visitor-stat-item {
        min-width: 120px;
        font-size: 12px;
        padding: 5px 12px;
    }
}


   /* Animation สำหรับสถานะด่วน */
@keyframes blink {
    0% { 
        background: #fed7d7;
        color: #c53030;
        opacity: 1;
    }
    30% { 
        background: #c53030;
        color: white;
        opacity: 0.9;
        transform: scale(1.05);
        box-shadow: 0 0 15px rgba(197, 48, 48, 0.5);
    }
    70% { 
        background: #c53030;
        color: white;
        opacity: 0.9;
        transform: scale(1.05);
        box-shadow: 0 0 15px rgba(197, 48, 48, 0.5);
    }
    100% { 
        background: #fed7d7;
        color: #c53030;
        opacity: 1;
    }
}

.job-status.urgent {
    animation: blink 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
    font-weight: 600;
    border: 1px solid #c53030;
}

.job-status.urgent i {
    animation: pulse 3s ease-in-out infinite;
}
.job-status.urgent:hover {
    animation: none;
    background: #c53030 !important;
    color: white !important;
    transform: scale(1.05);
    transition: all 0.3s ease;
    cursor: pointer;
}



@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* สถานะปกติ */
.job-status.normal {
    background: #c6f6d5;
    color: #22543d;
    border: 1px solid #22543d;
}

.job-status.normal:hover {
    background: #22543d !important;
    color: white !important;
    transition: all 0.3s ease;
}
