 
        #cycleBoy {
      position: absolute;
      bottom: 15px;
      left: 0;
      width: 200px;
      height: 200px;
      animation: rideCycle 11s linear forwards;
    }

    #road {
      position: absolute;
      bottom: 0vw;
      left: 0;
      width: 120vw;
      height: 25vw;
      background: url('../images/road.png') repeat-x;  /*using ../ here for one back folder*/
      background-size: cover;
      animation: moveRoad 5s linear infinite;
    }

    @keyframes rideCycle {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(100vw);
      }
    }

    @keyframes moveRoad {
      0% {
        background-position: 0;
      }
      100% {
        background-position: -100%;
      }
    }


        /*-------------------------------------*/
        :root {
            --primary-color: orange;
            --secondary-color: orange;
            --accent-color: orange;
            --text-color: orange;
        }

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

        body {
            font-family: system-ui, -apple-system, sans-serif;
            background: url('../images/orange_garden1.jpg') no-repeat center bottom fixed;
            background-size: cover;
            color: var(--text-color);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: absolute;
            bottom: 0%;
        }

        .loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;  /* Ensure it covers the full height of the screen */
    background: linear-gradient(
        rgba(0, 0, 0, 0.3),  
        rgba(0, 0, 0, 0)  
    );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 1; 
    transition: none;
}





        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--secondary-color);
            border-radius: 50%;
            pointer-events: none;
            opacity: 0;
        }

        .loading-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2.5rem;
            position: relative;
        }

        .loader-ring {
            position: relative;
            width: 150px;
            height: 150px;
        }

        .loader-ring::before,
        .loader-ring::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 13px solid transparent; /*1st half round size*/
            border-top-color: var(--primary-color);
            animation: spin 2s linear infinite;
        }

        .loader-ring::after {
            border: 7px solid transparent;  /*2nd half round size*/
            border-top-color: var(--secondary-color);
            animation: spin 1.5s linear infinite reverse;
        }

        .loader-core {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }

        .progress-container {
            width: 240px;
            position: relative;
        }

        .progress-bar {
            width: 100%;
            height: 4px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            overflow: hidden;
            position: relative;
        }

        .progress {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            width: 0%;
            transition: width 1s ;
        }

        .progress-text {
            position: absolute;
            top: -25px;
            right: 0;
            font-size: 0.875rem;
            font-weight: 500;
            opacity: 0.8;
        }

        .loading-text {
            font-size: 1.2rem;
            font-weight: 500;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            
        }

        @font-face {
    font-family: 'Heaters';
    src: url('../fonts/Heaters.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.header {
    text-align: center;
    position: absolute;
    top: 5%;
    width: 100%;
    font-size: 7rem;
    
    font-weight: 500;
    font-family: 'Heaters', 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    
}


        .refresh-btn {
            margin-top: 2rem;
            padding: 0.875rem 2rem;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 500;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .refresh-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 255, 255, 0.2),
                transparent
            );
            transition: 0.5s;
        }

        .refresh-btn:hover::before {
            left: 100%;
        }

        .refresh-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
        }

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

        @keyframes pulse {
            0%, 100% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 0.6;
            }
            50% {
                transform: translate(-50%, -50%) scale(1.2);
                opacity: 0.8;
            }
        }

        @keyframes shimmer {
            0% {
                background-position: -200% center;
            }
            100% {
                background-position: 200% center;
            }
        }

        @keyframes particleFloat {
            0% {
                transform: translateY(0) translateX(0);
                opacity: 0;
            }
            50% {
                opacity: 0.8;
            }
            100% {
                transform: translateY(-100px) translateX(var(--translateX));
                opacity: 0;
            }
        }

        /* Adjust the media query for screens larger than 750px,
        in original size on adjust the font that while i made mobile view it will set good
        original desktop view modified temprary for mobile view in media section */
@media (max-width: 750px) {
    /* Loader ring adjustments */
    .loader-ring {
        width: 100px;
        height: 100px;
    }

    .loader-core {
        width: 50px;
        height: 50px;
    }

    body {
        background: url('../images/orange_garden1.jpg') no-repeat left top fixed; /*only center (bottom) change*/
        
        overflow: hidden;
        
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        position: fixed;
        bottom: 0%;
        width: 100vw;
        height: 100%;
        
        
        
    }

    /* Progress container */
    .progress-container {
        width: 180px;
        margin: auto; /* Center the container */
    
    }

    /* Loading text */
    .loading-text {
        font-size: 1rem;
        text-align: center; /* Ensure proper alignment */
        
    }

    /* Header adjustments */
    .header {
        font-size: 5rem; /* Slightly smaller font for better fit */
        padding: 0 8px;
        
        line-height: 1; /* Adjust line height for readability */
        text-align: center; /* Center align for small screens */
    }

    /* Loading screen adjustments */
    .loading-screen {
        
        
    box-sizing: border-box; /* Ensure padding doesn't affect width/height */
    position: fixed;
    top: 0;
    left:0 ;
    width: 100vw;
    height: 100vh;  /* Ensure it covers the full height of the screen */
    background: linear-gradient(
        rgba(0, 0, 0, 0.3),  
        rgba(0, 0, 0, 0)  
    );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 1; 
    transition: none;
    }

    /* Cycle boy image */
    #cycleBoy {
        width: auto;  /* Smaller size for mobile */
        height: 40vw;
        position: absolute; /* Ensure proper positioning */
        bottom: 2vw;
        left: 0vw;
        transform: translateX(-50%); /* Center horizontally */
    }

    /* Road adjustments */
    #road {
        height: 30vw; /* Reduce height for mobile */
        position: absolute;
        width: 105vw; /* Ensure it spans the full width */
        margin-top: 10vw; /* Add spacing for better visuals */
        bottom: 0vw;
        left: -12px;
        animation: none;
    }
}



   
