@font-face {
    font-family: 'gsl';
    src: url('/assets/fonts/GoogleSansFlex-VariableFont_GRAD\,ROND\,opsz\,slnt\,wdth\,wght.ttf') format('truetype');
}

:root {
            --primary-gradient: linear-gradient(135deg, #23ee344f  0%, #45ee2367  50%, #00b2002d 100%);
            --secondary-gradient: linear-gradient(45deg, #19e919, #5de264, #5cce66, #76b984);
            --glass-bg: rgba(255, 255, 255, 0.3);
            --glass-border: rgba(65, 182, 230, 0.2);
            --text-primary: #1a365d;
            --text-secondary: #2d3748;
            --shadow-light: 0 8px 32px rgba(65, 182, 230, 0.2);
            --shadow-strong: 0 25px 50px rgba(65, 182, 230, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'gsl', sans-serif;
            
            background-color: #fff;

            background-image:
                url('/assets/img/bg_left_bottom.png'),
                url('/assets/img/bg_right_top.png');

            background-repeat:
                no-repeat,
                no-repeat;

            background-position:
                bottom left,
                right top;

            min-height: 100vh;
            position: relative;
        }

        /* Animated Background */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .bg-shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(1px);
            animation: float 20s infinite ease-in-out;
        }

        .bg-shape:nth-child(1) {
            width: 300px;
            height: 300px;
            background: linear-gradient(45deg, #b9b9b920, #eeeeee20);
            top: -150px;
            left: -150px;
            animation-delay: 0s;
        }

        .bg-shape:nth-child(2) {
            width: 200px;
            height: 200px;
            background: linear-gradient(45deg, #b9b9b920, #eeeeee20);
            top: 50%;
            right: -100px;
            animation-delay: -5s;
        }

        .bg-shape:nth-child(3) {
            width: 150px;
            height: 150px;
            background: linear-gradient(45deg, #b9b9b920, #eeeeee20);
            bottom: -75px;
            left: 30%;
            animation-delay: -10s;
        }

        .bg-shape:nth-child(4) {
            width: 250px;
            height: 250px;
            background: linear-gradient(45deg, #b9b9b920, #eeeeee20);
            top: 20%;
            left: 20%;
            animation-delay: -15s;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px) rotateZ(0deg);
            }

            25% {
                transform: translateY(-20px) rotateZ(90deg);
            }

            50% {
                transform: translateY(-40px) rotateZ(180deg);
            }

            75% {
                transform: translateY(-20px) rotateZ(270deg);
            }
        }

        /* Main Container */
        .container {
            min-height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            position: relative;
        }

        /* Main Content Card */
        .maintenance-card {
            background: transparent;
            backdrop-filter: none;
            border: none;
            border-radius: 0;
            /* padding: 30px 20px; */
            max-width: 900px;
            width: 100%;
            text-align: center;
            box-shadow: none;
            position: relative;
            overflow: visible;
            animation: slideInUp 0.8s ease-out;
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px) scale(0.9);
            }

            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .title-note h2{text-transform: uppercase;font-size: 53px;font-weight: bold;}

        .banner-container {
            
            perspective: 1000px;
            position: relative;
            padding: 40px 0px 30px 0px;
        }
        .banner-container img{max-width: 100%;}

        .title-details{color:#9C9C9C;font-size: 23px;}

        .time-maintenance{color:#3943B3;font-size: 36px;margin-top: 25px;}
        .d-none{display: none !important;}
        .subtitle{color:#374455;font-size: 28px;margin-top: 20px;}

        .shbet-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            animation: logoFloat 3s ease-in-out infinite;
        }

        .logo-image {
            width: 420px;
            height: auto;
            max-width: 100%;
            transition: all 0.3s ease;
        }

        .text-logo {
            font-size: 4rem;
            font-weight: 900;
            background: linear-gradient(135deg, #ff6b35, #ff8e53, #ffb347);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -2px;
            filter: drop-shadow(0 5px 15px rgba(255, 107, 53, 0.4));
            transition: all 0.3s ease;
        }

        .text-logo:hover {
            transform: scale(1.05);
            filter: drop-shadow(0 8px 25px rgba(255, 107, 53, 0.6));
        }

        .logo-image:hover {
            transform: scale(1.05);
        }

        @keyframes logoFloat {

            0%,
            100% {
                transform: translateY(0px) scale(1);
            }

            50% {
                transform: translateY(-8px) scale(1.02);
            }
        }

        /* 3D Icon */
        .icon-container {
            margin-bottom: 20px;
            perspective: 1000px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            /* height: 100px; */
        }

        .gear-container {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 80px;
            height: 60px;
        }

        .gear-1 {
            font-size: 45px;
            background: var(--secondary-gradient);
            background-size: 400% 400%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 4s ease-in-out infinite, rotateClockwise 4s linear infinite;
            transform-origin: center;
            position: absolute;
            left: 0px;
            top: 7px;
            z-index: 2;
        }

        .gear-2 {
            font-size: 45px;
            background: var(--secondary-gradient);
            background-size: 400% 400%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 4s ease-in-out infinite, rotateCounterClockwise 4s linear infinite;
            transform-origin: center;
            position: absolute;
            right: 0px;
            top: 15px;
            z-index: 1;
        }

        @keyframes rotateClockwise {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        @keyframes rotateCounterClockwise {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(-360deg);
            }
        }

        @keyframes gradientShift {

            0%,
            100% {
                background-position: 0% 50%;
            }

            25% {
                background-position: 100% 50%;
            }

            50% {
                background-position: 100% 100%;
            }

            75% {
                background-position: 0% 100%;
            }
        }

        /* Typography */
        .title {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 15px;
            background: linear-gradient(135deg, #1a365d, #2d3748, #2c5282);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -1px;
            line-height: 1.2;
        }

        .subtitle {
            font-size: 1.3rem;
            color: var(--text-secondary);
            margin-bottom: 35px;
            font-weight: 500;
            line-height: 1.6;
        }

        /* Animated Progress Ring */
        .progress-container {
            margin: 40px 0;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .progress-ring {
            transform: rotate(-90deg);
            width: 120px;
            height: 120px;
        }

        .progress-ring-circle {
            stroke: rgba(255, 255, 255, 0.2);
            stroke-width: 8;
            fill: transparent;
            r: 50;
            cx: 60;
            cy: 60;
        }

        .progress-ring-fill {
            stroke: url(#gradient);
            stroke-width: 8;
            fill: transparent;
            r: 50;
            cx: 60;
            cy: 60;
            stroke-dasharray: 314.16;
            stroke-dashoffset: 78.54;
            /* 75% = 314.16 - (314.16 * 0.75) */
            stroke-linecap: round;
            animation: progressAnimation 3s ease-out;
        }

        @keyframes progressAnimation {
            from {
                stroke-dashoffset: 314.16;
            }

            to {
                stroke-dashoffset: 78.54;
            }
        }

        .progress-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 1.5rem;
            font-weight: 700;
            color: #1a365d;
            text-shadow: 0 2px 10px rgba(65, 182, 230, 0.3);
        }

        /* Status Animation */
        .status-container {
            margin: 40px 0;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 150px;
        }

        .status-icon {
            font-size: 3.5rem;
            background: var(--secondary-gradient);
            background-size: 400% 400%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: iconFloat 3s ease-in-out infinite, gradientShift 4s ease-in-out infinite;
            filter: drop-shadow(0 10px 20px rgba(65, 182, 230, 0.3));
            cursor: pointer;
            transition: all 0.3s ease;
            margin-bottom: 20px;
        }

        .status-icon:hover {
            transform: scale(1.1);
            animation-play-state: paused;
        }

        @keyframes iconFloat {

            0%,
            100% {
                transform: translateY(0px) scale(0.95);
            }

            50% {
                transform: translateY(-10px) scale(1);
            }
        }

        .status-message {
            position: relative;
            background: var(--glass-bg);
            backdrop-filter: blur(15px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 12px 20px;
            box-shadow: var(--shadow-light);
            animation: messageFloat 2.5s ease-in-out infinite;
            max-width: 250px;
        }

        .status-message::before {
            content: '';
            position: absolute;
            top: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-bottom: 8px solid rgba(255, 255, 255, 0.3);
        }

        .message-text {
            font-size: 1rem;
            color: var(--text-primary);
            font-weight: 500;
            white-space: nowrap;
        }

        @keyframes messageFloat {

            0%,
            100% {
                opacity: 0.8;
                transform: translateY(0px);
            }

            50% {
                opacity: 1;
                transform: translateY(-5px);
            }
        }

        /* Countdown Timer */
        .countdown {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin: 40px 0;
        }

        .countdown-item {
            background: var(--glass-bg);
            backdrop-filter: blur(15px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 20px 10px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .countdown-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .countdown-item:hover::before {
            transform: translateX(100%);
        }

        .countdown-item:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 30px rgba(65, 182, 230, 0.2);
        }

        .countdown-number {
            font-size: 2rem;
            font-weight: 700;
            color: #1a365d;
            line-height: 1;
            text-shadow: 0 2px 10px rgba(65, 182, 230, 0.3);
        }

        .countdown-label {
            font-size: 0.85rem;
            color: #2d3748;
            margin-top: 8px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Footer */
        .footer {
            /* position: fixed; */
            max-width: 600px;
            margin: auto;
            bottom: 20px;
            /* left: 50%;
            transform: translateX(-50%); */
            color: #4a5568;
            font-size: 0.9rem;
            text-align: center;
            backdrop-filter: blur(10px);
            padding: 10px 20px;
            border-radius: 25px;
            background: rgba(255, 255, 255, 0.3);
            border: 1px solid rgba(65, 182, 230, 0.2);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .maintenance-card {
                /* padding: 25px 15px; */
            }

            .logo-image {
                width: 320px;
            }

            .text-logo {
                font-size: 3rem;
            }

            .title {
                font-size: 2.3rem;
            }

            .subtitle {
                
            }

            .gear-container {
                width: 60px;
                height: 45px;
            }

            .gear-1 {
                font-size: 32px;
                left: 0px;
                top: 6px;
            }

            .gear-2 {
                font-size: 32px;
                right: 0px;
                top: 11px;
            }

            .countdown {
                gap: 10px;
            }

            .countdown-item {
                padding: 15px 8px;
                border-radius: 15px;
            }

            .countdown-number {
                font-size: 1.6rem;
            }

            .countdown-label {
                font-size: 0.75rem;
            }

            .progress-ring {
                width: 100px;
                height: 100px;
            }

            .progress-text {
                font-size: 1.3rem;
            }

            .status-container {
                height: 120px;
                margin: 30px 0;
            }

            .status-icon {
                font-size: 2.8rem;
                margin-bottom: 15px;
            }

            .status-message {
                padding: 10px 15px;
                max-width: 200px;
            }

            .message-text {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .logo-image {
                width: 280px;
            }

            .text-logo {
                font-size: 2.5rem;
            }

            .title {
                font-size: 2rem;
            }

            .gear-container {
                width: 50px;
                height: 35px;
            }

            .gear-1 {
                font-size: 24px;
                left: 0px;
                top: 5px;
            }

            .gear-2 {
                font-size: 24px;
                right: 0px;
                top: 8px;
            }

            .countdown {
                grid-template-columns: repeat(3, 1fr);
                gap: 12px;
            }

            .countdown-item {
                padding: 18px 12px;
            }

            .status-container {
                height: 100px;
                margin: 25px 0;
            }

            .status-icon {
                font-size: 2.2rem;
                margin-bottom: 12px;
            }

            .status-message {
                padding: 8px 12px;
                border-radius: 15px;
                max-width: 180px;
            }

            .message-text {
                font-size: 0.8rem;
            }
        }

        /* Loading Animation */
        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.7;
            }
        }

        .loading-dots::after {
            content: '';
            animation: pulse 1.5s ease-in-out infinite;
        }

         @keyframes particleFloat {
                0% {
                    opacity: 1;
                    transform: translateY(0) scale(1);
                }
                100% {
                    opacity: 0;
                    transform: translateY(-50px) scale(0);
                }
            }


@media (max-width: 992px) {

    .title-note h2{font-size: 25px;}
    .title-details{font-size: 16px;}
    .time-maintenance{font-size: 25px;}
    .subtitle{font-family: 21px;}
    body{
        background-image:
                url('/assets/img/bg_left_bottom_mobile.png'),
                url('/assets/img/bg_right_top_mobile.png');
    }

}
