<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Excel Games - Fun and Interactive Excel Challenges</title>
    <meta name="description" content="Explore a world of fun and interactive Excel games. Challenge your skills with puzzles, quizzes, and more, all within Excel. Perfect for learning and entertainment.">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta name="google-site-verification" content="CF-uru4ZV2vS7cCmzOmJCfHv964eoeciPHh8IAR4cRQ" />
    <link rel="icon" href="game-favicon.ico" type="image/x-icon">
    <link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png">
    <link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
    <link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
    <link rel="icon" type="image/ico" href="favicon.ico">
    <script async src="https://www.googletagmanager.com/gtag/js?id=G-BGRH5JFJ3B"></script>
    <script>
      window.dataLayer = window.dataLayer || [];
      function gtag(){dataLayer.push(arguments);}
      gtag('js', new Date());
      gtag('config', 'G-BGRH5JFJ3B');
    </script>
    <style>
        :root {
            --primary-color: #4CAF50;
            --secondary-color: #FFD700;
            --background-color: #f0f0f0;
            --primary-red: #FF6347;
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            font-family: 'Arial', sans-serif;
            background-color: var(--background-color);
            display: flex;
            flex-direction: column;
            align-items: center;
            min-height: 100vh;
            line-height: 1.6;
        }
        #game-container, #game-instructions, #game-faq, #website-recommendations {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            width: 90%;
            max-width: 800px;
            padding: 20px;
            margin: 20px 0;
            text-align: center;
        }
        #game-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
        }
        #status {
            font-size: 18px;
            font-weight: bold;
            color: #333;
        }
        #score {
            color: var(--primary-color);
        }
        #grid {
            display: grid;
            grid-template-columns: repeat(10, 1fr);
            gap: 4px;
            background-color: #f9f9f9;
            border: 2px solid #e0e0e0;
            border-radius: 5px;
            padding: 10px;
        }
        .cell {
            aspect-ratio: 1;
            border: 1px solid #ddd;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
            background-color: white;
            font-weight: bold;
        }
        .cell:hover {
            background-color: #f0f0f0;
        }
        .player {
            background-color: var(--primary-color);
            color: white;
        }
        .treasure {
            background-color: var(--secondary-color);
            color: black;
        }
        .obstacle {
            background-color: #FF6347;
            cursor: not-allowed;
        }
        #game-controls {
            margin-top: 15px;
            display: flex;
            justify-content: center;
            gap: 10px;
        }
        .btn {
            padding: 10px 20px;
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .btn:hover {
            background-color: #45a049;
        }
        @media (max-width: 600px) {
            #game-container, #game-instructions, #game-faq, #website-recommendations {
                width: 95%;
                padding: 10px;
            }
            .cell {
                font-size: 12px;
            }
        }
        #game-instructions h2, 
        #game-faq h2, 
        #website-recommendations h2 {
            text-align: center;
            color: var(--primary-color);
            margin-bottom: 20px;
            border-bottom: 2px solid var(--primary-color);
            padding-bottom: 10px;
        }
        #game-instructions article,
        #game-faq article {
            margin-bottom: 15px;
        }
        #game-instructions h3,
        #game-faq h3 {
            color: #333;
            margin-bottom: 10px;
        }
        #game-instructions p,
        #game-faq p {
            color: #666;
            line-height: 1.6;
        }
        #website-recommendations a {
            display: block;
            margin: 5px 0;
            color: var(--primary-color);
            text-decoration: none;
        }
        #website-recommendations a:hover {
            text-decoration: underline;
        }

		/* Popular Games Grid */
#popular-games {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    width: 90%;
    max-width: 800px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
}
#popular-games h2 {
    color: var(--primary-color);
    margin-bottom: 16px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}
.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.game-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: transform 0.2s, box-shadow 0.2s;
    background: #fafafa;
}
.game-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}
.game-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}
.game-card span {
    font-size: 12px;
    font-weight: 600;
    padding: 6px 4px;
    text-align: center;
    line-height: 1.3;
}
@media (max-width: 600px) {
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    .game-card span {
        font-size: 11px;
    }
}

/* Partner Network Styles - Dark Background Version */
.partner-network {
    margin: 30px 0 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.partner-details {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 5px;
    transition: background 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.partner-details[open] {
    background: rgba(0, 0, 0, 0.3);
}

.partner-summary {
    cursor: pointer;
    padding: 15px 20px;
    font-size: 15px;
    color: #FFFFFF;
    text-align: center;
    list-style: none;
    user-select: none;
    transition: color 0.3s;
    font-weight: 500;
}

.partner-summary:hover {
    color: var(--primary-red);
}

.partner-summary::-webkit-details-marker {
    display: none;
}

.partner-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    padding: 25px 20px 20px;
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.partner-category {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.category-title {
    color: var(--primary-red);
    font-size: 14px;
    margin: 0 0 12px 0;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 49, 49, 0.3);
    font-weight: 600;
}

.partner-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.partner-links a {
    color: #E0E0E0;
    text-decoration: none;
    font-size: 13px;
    padding: 6px 8px;
    border-radius: 4px;
    transition: all 0.2s;
    display: block;
}

.partner-links a:hover {
    color: #FFFFFF;
    background: rgba(255, 49, 49, 0.2);
    padding-left: 12px;
}

/* Mobile Responsive for Partner Network */
@media (max-width: 768px) {
    .partner-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 15px 15px;
    }
    
    .partner-summary {
        font-size: 14px;
        padding: 12px 15px;
    }
    
    .category-title {
        font-size: 13px;
    }
    
    .partner-links a {
        font-size: 12px;
    }
}
    </style>
 <script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-4670089645960510"
     crossorigin="anonymous"></script>   
</head>
<body>
    <div id="game-container">
        <div id="game-header">
            <div id="status"><h1>Excel Games</h1></div>
            <div id="score">Moves: 0</div>
        </div>
        <div id="grid"></div>
        <div id="game-controls">
            <button class="btn" onclick="game.resetGame()">Reset Game</button>
            <button class="btn" onclick="game.changedifficulty()">Change Difficulty</button>
            <a href="https://excelgames.cc/squardle" target="_blank">Squardle</a>
            <a href="https://excelgames.cc/waffle-game" target="_blank">Waffle Game</a>
            <a href="https://excelgames.cc/gamelist" target="_blank">More Games</a>
        </div>
    </div>

    <section id="popular-games">
        <h2>Popular Games</h2>
        <div class="games-grid">
            <a href="/slope-unblocked" class="game-card">
                <img src="/game1/slopeunblocked-logo2-m240x240.jpg" alt="Slope" loading="lazy">
                <span>Slope</span>
            </a>
            <a href="/subway-surfers" class="game-card">
                <img src="/game1/subway-surfers-m240x240.png" alt="Subway Surfers" loading="lazy">
                <span>Subway Surfers</span>
            </a>
            <a href="/drift-hunters" class="game-card">
                <img src="/game1/drift-hunters-m240x240.jpg" alt="Drift Hunters" loading="lazy">
                <span>Drift Hunters</span>
            </a>
            <a href="/moto-x3m" class="game-card">
                <img src="/game1/moto-x3m-m240x240.jpg" alt="Moto X3M" loading="lazy">
                <span>Moto X3M</span>
            </a>
            <a href="/smash-karts" class="game-card">
                <img src="/game1/smash-karts-m240x240.jpg" alt="Smash Karts" loading="lazy">
                <span>Smash Karts</span>
            </a>
            <a href="/retro-bowl" class="game-card">
                <img src="/game1/retro-bowl-m240x240.png" alt="Retro Bowl" loading="lazy">
                <span>Retro Bowl</span>
            </a>
            <a href="/paper-minecraft" class="game-card">
                <img src="/game1/paper-minecraft-m240x240.jpg" alt="Paper Minecraft" loading="lazy">
                <span>Paper Minecraft</span>
            </a>
            <a href="/run-3" class="game-card">
                <img src="/game1/run-3-m240x240.jpg" alt="Run 3" loading="lazy">
                <span>Run 3</span>
            </a>
            <a href="/friday-night-funkin" class="game-card">
                <img src="/game1/friday-night-funkin-m240x240.jpg" alt="Friday Night Funkin" loading="lazy">
                <span>Friday Night Funkin</span>
            </a>
            <a href="/drive-mad" class="game-card">
                <img src="/game1/drive-mad-m240x240.png" alt="Drive Mad" loading="lazy">
                <span>Drive Mad</span>
            </a>
            <a href="/madalin-stunt-cars-2" class="game-card">
                <img src="/game1/madalin-stunt-cars-2-m240x240.jpg" alt="Madalin Stunt Cars 2" loading="lazy">
                <span>Madalin Stunt Cars 2</span>
            </a>
            <a href="/monkey-mart" class="game-card">
                <img src="/game1/monkeymart-m240x240.jpg" alt="Monkey Mart" loading="lazy">
                <span>Monkey Mart</span>
            </a>
            <a href="/basketball-legends" class="game-card">
                <img src="/game1/basketball-legends-m240x240.jpeg" alt="Basketball Legends" loading="lazy">
                <span>Basketball Legends</span>
            </a>
            <a href="/escape-road" class="game-card">
                <img src="/game1/escape-road-m240x240.jpg" alt="Escape Road" loading="lazy">
                <span>Escape Road</span>
            </a>
            <a href="/cookie-clicker" class="game-card">
                <img src="/game1/cookie-clicker-m240x240.png" alt="Cookie Clicker" loading="lazy">
                <span>Cookie Clicker</span>
            </a>
            <a href="/idle-breakout" class="game-card">
                <img src="/game1/idle-breakout-m240x240.jpg" alt="Idle Breakout" loading="lazy">
                <span>Idle Breakout</span>
            </a>
            <a href="/hill-climb-racing" class="game-card">
                <img src="/game1/100x100-m240x240.png" alt="Hill Climb Racing" loading="lazy">
                <span>Hill Climb Racing</span>
            </a>
            <a href="/granny" class="game-card">
                <img src="/game1/granny-m240x240.png" alt="Granny" loading="lazy">
                <span>Granny</span>
            </a>
            <a href="/moto-x3m-winter" class="game-card">
                <img src="/game1/moto-x3m-winter-m240x240.jpg" alt="Moto X3M Winter" loading="lazy">
                <span>Moto X3M Winter</span>
            </a>
            <a href="/drift-hunters-max" class="game-card">
                <img src="/game1/drift-hunters-max-m240x240.jpg" alt="Drift Hunters Max" loading="lazy">
                <span>Drift Hunters Max</span>
            </a>
        </div>
    </section>

    <section id="game-instructions">
        <h2>Excel Game Instructions</h2>
        
        <article class="instruction-overview">
            <h3>Excel Game Overview</h3>
            <p>Excel Adventure is an exciting grid-based treasure hunting game where your goal is to navigate from the start to the treasure while avoiding obstacles.</p>
        </article>
        
        <article class="instruction-how-to-play">
            <h3>How to Play</h3>
            <p>The game is played on a 10x10 grid. You start at the bottom-left corner (green cell) and must reach the treasure at the top-right corner (gold cell).</p>
        </article>
        
        <article class="instruction-movement-rules">
            <h3>Movement Rules</h3>
            <p>You can only move to adjacent cells (up, down, left, or right). Red cells are obstacles that you cannot pass through. Plan your moves carefully!</p>
        </article>
    </section>

    <section id="game-faq">
        <h2>Frequently Asked Questions</h2>
        
        <article class="faq-item">
            <h3>Q: Can I move diagonally?</h3>
            <p>A: No, you can only move to adjacent cells vertically or horizontally.</p>
        </article>
        
        <article class="faq-item">
            <h3>Q: What happens if I hit an obstacle?</h3>
            <p>A: You cannot move through obstacles. You'll need to find an alternative route.</p>
        </article>
        
        <article class="faq-item">
            <h3>Q: How do I change the game difficulty?</h3>
            <p>A: Click the "Change Difficulty" button to cycle through Easy, Medium, and Hard levels.</p>
        </article>
    </section>

    <section id="website-recommendations">
		        <!-- Partner Network Section -->
        <div class="partner-network">
            <details class="partner-details">
                <summary class="partner-summary">
                    🌐 Our Partner Network · 60+ Quality Sites
                </summary>
                
                <div class="partner-container">
                    <!-- Gaming Sites -->
                    <div class="partner-category">
                        <h4 class="category-title">🎮 Gaming</h4>
                        <div class="partner-links">
                            <a href="https://hellowordl.cc/" target="_blank" rel="noopener">Hello Wordl</a>
                            <a href="https://www.pokemonguide.org/" target="_blank" rel="noopener">Pokemon Guide</a>
                            <a href="https://snailsbob.org/" target="_blank" rel="noopener">Snail Bob</a>
                            <a href="https://redlightgreenlightgame.net/" target="_blank" rel="noopener">Red Light Green Light Game</a>
                            <a href="https://excelgames.cc/" target="_blank" rel="noopener">Excel Game</a>
                            <a href="https://block-blast-unblocked.com/" target="_blank" rel="noopener">Block Blast Unblocked</a>
                            <a href="https://incrediboxsprunkifree.org/" target="_blank" rel="noopener">Incredibox Sprunki</a>
                            <a href="https://crazycattle3ditch.com/" target="_blank" rel="noopener">Crazy Cattle 3D</a>
                            <a href="https://checkersonline247.com/" target="_blank" rel="noopener">Checkers Online</a>
                            <a href="https://wafflegames.net/" target="_blank" rel="noopener">Waffle Game</a>
							<a href="https://offlinedinorunner.com/" target="_blank" rel="noopener">Offline Dino Runner</a>
                        </div>
                    </div>
                    
                    <!-- Tools & Calculators -->
                    <div class="partner-category">
                        <h4 class="category-title">🛠️ Tools & Calculators</h4>
                        <div class="partner-links">
                            <a href="https://www.globeask.com/" target="_blank" rel="noopener">Globe Ask</a>
                            <a href="https://live-clock.com/" target="_blank" rel="noopener">Live Clock</a>
                            <a href="https://www.strongrandompassword.com/" target="_blank" rel="noopener">Strong Random Password Generator</a>
                            <a href="https://www.myipinquire.com/" target="_blank" rel="noopener">IP Saya</a>
                            <a href="https://www.calculationassistant.com/" target="_blank" rel="noopener">Calculation Assistant</a>
                            <a href="https://www.whatismyipaddressinquire.com/" target="_blank" rel="noopener">Random IP</a>
                            <a href="https://www.masters-tool.com/" target="_blank" rel="noopener">Masters Tool</a>
                            <a href="https://www.mathematicalcalculator.com/" target="_blank" rel="noopener">Mathematical Calculator</a>
                            <a href="https://tothepowerof2.com/" target="_blank" rel="noopener">Power Calculator</a>
                            <a href="https://littlebeartools.com/" target="_blank" rel="noopener">Little Bear Tools</a>
                            <a href="https://todayluckynumber.org" target="_blank" rel="noopener">Today Lucky Number</a>
                            <a href="https://military-time-chart.org/" target="_blank" rel="noopener">Military Time Chart</a>
                            <a href="https://chronologicalagescalculator.com/" target="_blank" rel="noopener">Chronological Age Calculator</a>
                            <a href="https://12weeksfromtoday.com/" target="_blank" rel="noopener">12 Weeks From Today</a>
                            <a href="https://weeks-from-today.com/" target="_blank" rel="noopener">Weeks From Today</a>
                            <a href="https://bottleneckcalculator.work/" target="_blank" rel="noopener">Bottleneck Calculator</a>
                            <a href="https://datecalculators.org/" target="_blank" rel="noopener">Date Calculator</a>
                            <a href="https://sleepcalculators.org/" target="_blank" rel="noopener">Sleep Calculator</a>
                            <a href="https://findpercentagecalculator.net/" target="_blank" rel="noopener">Find Percentage Calculator</a>
                            <a href="https://www.todaycalculator.com" target="_blank" rel="noopener">Today Calculator</a>
                            <a href="https://dogcatagedcalculator.com/" target="_blank" rel="noopener">Dog Age Calculator</a>
                            <a href="https://www.youragecalculator.com/" target="_blank" rel="noopener">Age Calculator</a>
                            <a href="https://freepdftoimg.com/" target="_blank" rel="noopener">PDF to JPG Converter</a>
                        </div>
                    </div>
                    
                    <!-- Fonts & Generators -->
                    <div class="partner-category">
                        <h4 class="category-title">🎨 Fonts & Generators</h4>
                        <div class="partner-links">
                            <a href="https://letterstonumbers.com/" target="_blank" rel="noopener">Letters to Numbers</a>
                            <a href="https://bratfontgenerator.com/" target="_blank" rel="noopener">Brat Font Generator</a>
                            <a href="https://tap-code.org/" target="_blank" rel="noopener">Tap Code</a>
                            <a href="https://5letterwordswithiinthemiddle.com/" target="_blank" rel="noopener">5 Letter Words</a>
                            <a href="https://freaky-font.net/" target="_blank" rel="noopener">Freaky Font</a>
                            <a href="https://heartemoji.net/" target="_blank" rel="noopener">Heart Emoji</a>
                            <a href="https://villainnamegenerator.org/" target="_blank" rel="noopener">Villain Name Generator</a>
                            <a href="https://imagetophoto.com/" target="_blank" rel="noopener">Image to Photo</a>
                            <a href="https://imagetoimage.cn/" target="_blank" rel="noopener">Image to Image</a>
							<a href="https://japanesename.net/" target="_blank" rel="noopener">Japanese Names</a>
                        </div>
                    </div>
                    
                    <!-- Shopping & Services -->
                    <div class="partner-category">
                        <h4 class="category-title">🛒 Shopping & Services</h4>
                        <div class="partner-links">
                            <a href="https://collapsible-stool.com/" target="_blank" rel="noopener">Folding Stool</a>
                            <a href="https://overallsshop.com/" target="_blank" rel="noopener">Overalls Shop</a>
                            <a href="https://www.shopsages.com/" target="_blank" rel="noopener">Shop Sages</a>
                            <a href="https://chessmenswears.com/" target="_blank" rel="noopener">Chess Menswear</a>
                            <a href="https://doctors-healthcare-plans.com/" target="_blank" rel="noopener">Doctors Healthcare Plans</a>
                            <a href="https://bestdashcam2026.com/" target="_blank" rel="noopener">Best Dash Cam 2026</a>
                            <a href="https://bestdashcamfrontandrear.net/" target="_blank" rel="noopener">Best Dash Cam Front and Rear</a>
                            <a href="https://redtigerdashcam.net/" target="_blank" rel="noopener">Redtiger Dash Cam</a>
                        </div>
                    </div>
                    
                    <!-- Hosting & Tech -->
                    <div class="partner-category">
                        <h4 class="category-title">💻 Hosting & Tech</h4>
                        <div class="partner-links">
                            <a href="https://affordablevpsserver.com/" target="_blank" rel="noopener">Affordable VPS Server</a>
                            <a href="https://windows-vps.org/" target="_blank" rel="noopener">Windows VPS</a>
                            <a href="https://bestdedicatedwebhostingserver.com/" target="_blank" rel="noopener">Best Dedicated Web Hosting</a>
                            <a href="https://virtualserversvps.com/" target="_blank" rel="noopener">Virtual Server VPS</a>
                            <a href="https://aiimagegenerators.net/" target="_blank" rel="noopener">Best AI Image Generator</a>
                        </div>
                    </div>
                </div>
            </details>
        </div>
        <!--<h2>Recommended Websites</h2>
        <a href="https://hellowordl.cc/" target="_blank">hello wordl</a>
        <a href="https://www.globeask.com/" target="_blank">Globe Ask</a>
        <a href="https://live-clock.com/" target="_blank">Live Clock</a>
        <a href="https://www.pokemonguide.org/" target="_blank">Pokemon Guide</a>
        <a href="https://www.strongrandompassword.com/">Strong Random Password Generator</a>
        <a href="https://www.myipinquire.com/" target="_blank" title="ipsaya">ipsaya</a>
        <a href="https://www.calculationassistant.com/" target="_blank">Calculation Assistant</a>
        <a href="https://www.whatismyipaddressinquire.com/" target="_blank">Random IP</a>
        <a href="https://www.masters-tool.com/" target="_blank">Masters Tool</a>
        <a href="https://www.mathematicalcalculator.com/"  target="_blank">mathematical calculator</a>
        <a href="https://tothepowerof2.com/" target="_blank">2 to the power of what is 1/64</a>
        <a href="https://littlebeartools.com/" target="_blank">Little Bear Tools</a>
        <a href="https://snailsbob.org/" target="_blank">Snail Bob</a>
        <a href="https://redlightgreenlightgame.net/" target="_blank">Red Light Green Light Game</a>
        <a href="https://block-blast-unblocked.com/" target="_blank">Block Blast Unblocked</a>
        <a href="https://incrediboxsprunkifree.org/" target="_blank">Incredibox Sprunki</a>
        <a href="https://todayluckynumber.org" target="_blank">Today Lucky Number</a>
        <a href="https://military-time-chart.org/" target="_blank">Military Time Chart</a>
        <a href="https://chronologicalagescalculator.com/" target="_blank">Chronological Age Calculator</a>
        <a href="https://12weeksfromtoday.com/" target="_blank">12 Weeks From Today</a>
        <a href="https://letterstonumbers.com/" target="_blank">Letters to Numbers</a>
        <a href="https://bratfontgenerator.com/" target="_blank">Brat Generator</a>
        <a href="https://weeks-from-today.com/" target="_blank">Weeks From Today</a>
        <a href="https://bottleneckcalculator.work/" target="_blank">Bottleneck Calculator</a>
        <a href="https://letterstonumbers.com/" target="_blank">Numbers to Letters</a>
        <a href="https://bratfontgenerator.com/" target="_blank">Brat Font</a>
        <a href="https://tap-code.org/" target="_blank">Tap Code</a>
        <a href="https://5letterwordswithiinthemiddle.com/" target="_blank">5 letter words with i in the middle</a>
        <a href="https://freaky-font.net/" target="_blank">Freaky Font</a>
        <a href="https://heartemoji.net/" target="_blank">Heart Emoji</a>
        <a href="https://villainnamegenerator.org/" target="_blank">Villain Name Generator</a>
        <a href="https://crazycattle3ditch.com/" target="_blank">Crazy Cattle 3D</a>
        <a href="https://checkersonline247.com/" target="_blank">Checkers</a>
        <a href="https://collapsible-stool.com/" target="_blank" title="Folding Stool">Folding Stool</a>
        <a href="https://overallsshop.com/" target="_blank" title="Overalls">Overalls</a>
        <a href="https://www.shopsages.com/" target="_blank" title="Shop Sages">Shop Sages</a>
        <a href="https://datecalculators.org/" target="_blank" title="Date Calculator">Date Calculator</a>
        <a href="https://sleepcalculators.org/" target="_blank" title="Sleep Calculator">Sleep Calculator</a>
        <a href="https://findpercentagecalculator.net/" target="_blank" title="Find Percentage Calculator">Find Percentage Calculator</a>
        <a href="https://chessmenswears.com/" target="_blank" title="Chess Menswear">Chess Menswear</a>
        <a href="https://wafflegames.net/" target="_blank" title="Waffle Game">Waffle Game</a>
        <a href="https://dogcatagedcalculator.com/" target="_blank" title="Dog Age Calculator">Dog Age Calculator</a>
        <a href="https://www.todaycalculator.com" target="_blank" title="Today Calculator">Today Calculator</a>
        <a href="https://freepdftoimg.com/" target="_blank" title="PDF to JPG">PDF to JPG</a>
         <a href="https://doctors-healthcare-plans.com/" target="_blank" title="Doctors Healthcare Plans">Doctors Healthcare Plans</a>
            <a href="https://affordablevpsserver.com/" target="_blank" title="Affordable VPS Server">Affordable VPS Server</a>
            <a href="https://windows-vps.org/" target="_blank" title="Windows VPS">Windows VPS</a>
            <a href="https://bestdedicatedwebhostingserver.com/" target="_blank" title="Best Dedicated Web Hosting Server">Best Dedicated Web Hosting Server</a>
            <a href="https://virtualserversvps.com/" target="_blank" title="Virtual Server">Virtual Server</a>
            <a href="https://www.youragecalculator.com/" target="_blank" title="Age Calculator">Age Calculator</a>
            <a href="https://bestdashcam2026.com/" target="_blank" title="Best Dash Cam 2026">Best Dash Cam 2026</a>
            <a href="https://bestdashcamfrontandrear.net/" target="_blank" title="Best Dash Cam Front and Rear">Best Dash Cam Front and Rear</a>
            <a href="https://aiimagegenerators.net/" target="_blank" title="Best AI Image Generator">Best AI Image Generator</a>
            <a href="https://redtigerdashcam.net/" target="_blank" title="Redtiger Dash Cam">Redtiger Dash Cam</a>
        	<a href="https://imagetophoto.com/" target="_blank" title="Image to Photo">Image to Photo</a>
			<a href="https://imagetoimage.cn/" target="_blank" title="Image to Image">Image to Image</a>-->
    </section>

    <script>
        class ExcelGame {
            constructor(size = 10) {
                this.size = size;
                this.grid = [];
                this.playerPosition = null;
                this.treasurePosition = null;
                this.moves = 0;
                this.difficulty = 'easy';
                this.initializeGame();
            }

            initializeGame() {
                const gridElement = document.getElementById('grid');
                gridElement.innerHTML = '';
                gridElement.style.gridTemplateColumns = `repeat(${this.size}, 1fr)`;

                // Create the grid
                for (let i = 0; i < this.size * this.size; i++) {
                    const cell = document.createElement('div');
                    cell.classList.add('cell');
                    cell.dataset.index = i;
                    cell.addEventListener('click', () => this.movePlayer(i));
                    gridElement.appendChild(cell);
                    this.grid.push(cell);
                }

                // Place player
                this.playerPosition = 0;
                this.grid[this.playerPosition].classList.add('player');
                this.grid[this.playerPosition].textContent = '🧑';

                // Place treasure
                this.treasurePosition = this.size * this.size - 1;
                this.grid[this.treasurePosition].classList.add('treasure');
                this.grid[this.treasurePosition].textContent = '💎';

                // Add obstacles based on difficulty
                this.addObstacles();

                this.updateStatus();
            }

            addObstacles() {
                const obstacleCount = this.difficulty === 'easy' ? 3 : 
                                      this.difficulty === 'medium' ? 6 : 10;
                
                for (let i = 0; i < obstacleCount; i++) {
                    let obstacleIndex;
                    do {
                        obstacleIndex = Math.floor(Math.random() * (this.size * this.size));
                    } while (
                        obstacleIndex === this.playerPosition || 
                        obstacleIndex === this.treasurePosition || 
                        this.grid[obstacleIndex].classList.contains('obstacle')
                    );

                    this.grid[obstacleIndex].classList.add('obstacle');
                    this.grid[obstacleIndex].textContent = '🚫';
                }
            }

            movePlayer(targetIndex) {
                const currentRow = Math.floor(this.playerPosition / this.size);
                const currentCol = this.playerPosition % this.size;
                const targetRow = Math.floor(targetIndex / this.size);
                const targetCol = targetIndex % this.size;

                const isValidMove = 
                    Math.abs(currentRow - targetRow) + Math.abs(currentCol - targetCol) === 1 &&
                    !this.grid[targetIndex].classList.contains('obstacle');

                if (isValidMove) {
                    this.grid[this.playerPosition].classList.remove('player');
                    this.grid[this.playerPosition].textContent = '';

                    this.playerPosition = targetIndex;
                    this.grid[this.playerPosition].classList.add('player');
                    this.grid[this.playerPosition].textContent = '🧑';
                    this.moves++;

                    if (this.playerPosition === this.treasurePosition) {
                        this.showWinMessage();
                    }

                    this.updateStatus();
                } else {
                    alert('Invalid move! Only move to adjacent non-obstacle cells.');
                }
            }

            showWinMessage() {
                alert(`Congratulations! 🎉 
You found the treasure in ${this.moves} moves!
Difficulty: ${this.difficulty}`);
                this.resetGame();
            }

            updateStatus() {
                const scoreElement = document.getElementById('score');
                scoreElement.textContent = `Moves: ${this.moves}`;
            }

            resetGame() {
                this.moves = 0;
                this.initializeGame();
            }

            changedifficulty() {
                const difficulties = ['easy', 'medium', 'hard'];
                const currentIndex = difficulties.indexOf(this.difficulty);
                this.difficulty = difficulties[(currentIndex + 1) % difficulties.length];
                alert(`Difficulty changed to: ${this.difficulty}`);
                this.resetGame();
            }
        }

        const game = new ExcelGame();
    </script>
    <script type="text/javascript" src="https://platform-api.sharethis.com/js/sharethis.js#property=6788bd9f6240770012bc8d38&product=sticky-share-buttons&source=platform" async="async"></script>

<footer style="width:100%;background:#222;padding:16px 0;margin-top:30px;text-align:center;">
  <a href="/contact" rel="nofollow" style="color:#aaa;font-size:14px;margin:0 12px;text-decoration:none;">Contact Us</a>
  <a href="/about" rel="nofollow" style="color:#aaa;font-size:14px;margin:0 12px;text-decoration:none;">About Us</a>
  <a href="/privacy" rel="nofollow" style="color:#aaa;font-size:14px;margin:0 12px;text-decoration:none;">Privacy Policy</a>
  <a href="/terms" rel="nofollow" style="color:#aaa;font-size:14px;margin:0 12px;text-decoration:none;">Terms of Use</a>
</footer>
</body>
</html>
