        body {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        min-height: 100vh;
        }

        .header-area {
        background: rgba(255, 255, 255, 0.15) !important;
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .page-heading b {
        color: white !important;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        letter-spacing: 0.5px;
        }

        .logo-wrapper img {
        border-radius: 8px;
        background: white;
        padding: 4px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        /* Animated Background */
        .page-content-wrapper::before {
        content: '';
        position: absolute;
        top: -100px;
        left: -100px;
        width: 300px;
        height: 300px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        animation: float 6s ease-in-out infinite;
        }

        .page-content-wrapper::after {
        content: '';
        position: absolute;
        bottom: -50px;
        right: -50px;
        width: 200px;
        height: 200px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        animation: float 6s ease-in-out infinite 2s;
        }

        @keyframes float {
        0%, 100% {
        transform: translateY(0) scale(1);
        }
        50% {
        transform: translateY(-20px) scale(1.05);
        }
        }

        .offline-area-wrapper {
        min-height: calc(100vh - 200px);
        position: relative;
        z-index: 1;
        }

        .offline-text {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border-radius: 24px;
        padding: 3rem 2rem;
        max-width: 600px;
        margin: 0 auto;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        animation: slideUp 0.6s ease-out;
        }

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

        .offline-text img {
        max-width: 280px;
        filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
        animation: bounce 2s ease-in-out infinite;
        }

        .icon-wrapper-custom {
        width: 280px;
        height: 280px;
        margin: 0 auto;
        animation: bounce 2s ease-in-out infinite;
        }

        .icon-wrapper-custom svg {
        width: 100%;
        height: 100%;
        filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
        }

        @keyframes bounce {
        0%, 100% {
        transform: translateY(0);
        }
        50% {
        transform: translateY(-10px);
        }
        }

        .offline-text h5 {
        font-size: 1.75rem;
        color: #2d3748;
        margin-bottom: 1rem;
        font-weight: 700;
        }

        .offline-text p {
        font-size: 1rem;
        color: #718096;
        line-height: 1.6;
        margin-bottom: 0;
        }

        .countdown {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        gap: 1rem !important;
        }

        .time-box {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
        padding: 1.25rem 1rem !important;
        border-radius: 16px !important;
        text-align: center;
        box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3) !important;
        min-width: 80px !important;
        transition: transform 0.3s ease;
        }

        .time-box:hover {
        transform: translateY(-5px);
        }

        .time-box .time {
        display: block;
        font-size: 2rem !important;
        font-weight: 700 !important;
        color: white !important;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .time-box small {
        display: block;
        font-size: 0.75rem !important;
        color: rgba(255, 255, 255, 0.9) !important;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-top: 0.5rem;
        font-weight: 600;
        }

        /* Responsive Mobile */
        @media (max-width: 640px) {
        .page-heading b {
        font-size: 1rem !important;
        }

        .logo-wrapper img {
        width: 30px !important;
        height: 30px !important;
        }

        .offline-text {
        padding: 2rem 1.5rem;
        border-radius: 20px;
        }

        .offline-text h5 {
        font-size: 1.5rem;
        }

        .offline-text p {
        font-size: 0.95rem;
        }

        .offline-text img {
        max-width: 200px;
        margin-bottom: 1.5rem !important;
        }

        .icon-wrapper-custom {
        width: 200px;
        height: 200px;
        }

        .countdown {
        gap: 0.75rem !important;
        }

        .time-box {
        min-width: 70px !important;
        padding: 1rem 0.75rem !important;
        }

        .time-box .time {
        font-size: 1.75rem !important;
        }

        .time-box small {
        font-size: 0.7rem !important;
        }

        .page-content-wrapper::before {
        width: 200px;
        height: 200px;
        }

        .page-content-wrapper::after {
        width: 150px;
        height: 150px;
        }
        }

        @media (max-width: 380px) {
        .countdown {
        gap: 0.5rem !important;
        }

        .time-box {
        min-width: 65px !important;
        padding: 0.875rem 0.5rem !important;
        }

        .time-box .time {
        font-size: 1.5rem !important;
        }
        }

        /* Preloader styling */
        .preloader {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }
