<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Digital Zen & Relaxing Games Guide | relaxgames.info</title>
    <meta name="description" content="Discover a peaceful digital world with relaxgames.info. Your guide to mindful play, stress relief, and digital wellbeing.">
    <link rel="canonical" href="https://relaxgames.info/">
    <style>
        * { margin: 0; padding: 0; box-sizing: border-box; }
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

        :root {
            --bg: #f9fbf9;
            --fg: #2d3436;
            --card: #ffffff;
            --primary: #a8c3a0;
            --primary-fg: #ffffff;
            --muted: #636e72;
            --border: #edf2ed;
            --secondary-bg: #f0f4f0;
            --accent: #d4a5a5;
            --radius: 16px;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
            --shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.07);
        }

        body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--fg); line-height: 1.6; }
        a { color: var(--muted); text-decoration: none; transition: 0.2s; }
        a:hover { color: var(--primary); }

        .container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

        .header { position: sticky; top: 0; z-index: 50; background: rgba(249, 251, 249, 0.8); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
        .header .container { display: flex; align-items: center; justify-content: space-between; height: 70px; }
        .logo { font-weight: 800; font-size: 1.25rem; color: var(--fg); display: flex; align-items: center; gap: 0.5rem; text-transform: lowercase; }
        .logo span { color: var(--primary); }
        .nav { display: flex; gap: 2rem; }
        .nav a { font-size: 0.9rem; font-weight: 500; }
        .nav a.active { color: var(--primary); }

        .hero { background: #f0f4f0; padding: 6rem 0; text-align: center; color: var(--fg); border-bottom: 1px solid var(--border); }
        .hero h1 { font-size: 3rem; font-weight: 800; margin-bottom: 1.5rem; letter-spacing: -0.02em; }
        .hero p { font-size: 1.25rem; color: var(--muted); max-width: 700px; margin: 0 auto; }

        .content-section { padding: 5rem 0; }
        .grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 2.5rem; }
        
        .card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: all 0.3s ease; display: flex; flex-direction: column; }
        .card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
        .card-img { width: 100%; height: 220px; object-fit: cover; display: block; }
        .card-body { padding: 2rem; flex-grow: 1; }
        .card .tag { display: inline-block; font-size: 0.7rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.05em; background: var(--secondary-bg); padding: 0.4rem 0.8rem; border-radius: 50px; margin-bottom: 1rem; }
        .card h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--fg); line-height: 1.3; }
        .card .excerpt { font-size: 0.95rem; color: var(--muted); margin-bottom: 1.5rem; }
        .card .meta { font-size: 0.8rem; color: #b2bec3; font-weight: 500; }

        .footer { background: var(--card); border-top: 1px solid var(--border); padding: 5rem 0 2rem; margin-top: 4rem; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; }
        .footer h3 { font-size: 0.9rem; font-weight: 800; letter-spacing: 0.1em; margin-bottom: 1.5rem; color: var(--fg); }
        .footer p, .footer li { font-size: 0.9rem; color: var(--muted); line-height: 1.8; }
        .footer ul { list-style: none; }
        .footer-bottom-line { margin-top: 4rem; padding-top: 2rem; border-top: 1px solid var(--border); text-align: center; font-size: 0.85rem; color: var(--muted); }

        @media (max-width: 768px) {
            .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
            .hero h1 { font-size: 2.25rem; }
            .grid { grid-template-columns: 1fr; }
            .contact-grid { grid-template-columns: 1fr; }
        }
    </style>
</head>
<body>

<header class="header">
    <div class="container">
        <a href="/" class="logo">relax<span>games.info</span></a>
        <nav class="nav">
            <a href="/" class="active">Home</a>
            <a href="/guides">Guides</a>
            <a href="/about">Philosophy</a>
            <a href="/contact">Contact</a>
        </nav>
    </div>
</header>

<section class="hero">
    <div class="container">
        <h1>Digital Zen & Relaxing Games Guide</h1>
        <p>Your sanctuary for mindful gaming and digital serenity. Discover experiences that bring calm to your everyday life.</p>
    </div>
</section>

<main class="container content-section">
    <div class="grid">
        <a href="/mindful-play" class="card">
            <img src="img/zen-art.jpg" alt="Mindful Play" class="card-img">
            <div class="card-body">
                <span class="tag">Philosophy</span>
                <h3>Mindful Play: The Art of Digital Zen</h3>
                <p class="excerpt">Explore how simple digital interactions can become a form of meditation and help you find your inner balance.</p>
                <div class="meta">March 2026 • 5 min read</div>
            </div>
        </a>

        <a href="/calm-games" class="card">
            <img src="img/calm-games.jpg" alt="Calm Games" class="card-img">
            <div class="card-body">
                <span class="tag">Curated</span>
                <h3>Top 5 Calm Games for Daily Stress Relief</h3>
                <p class="excerpt">A handpicked selection of titles designed to lower heart rates and provide a gentle escape from the noise.</p>
                <div class="meta">March 2026 • 8 min read</div>
            </div>
        </a>

        <a href="/peaceful-space" class="card">
            <img src="img/digital-space.jpg" alt="Digital Space" class="card-img">
            <div class="card-body">
                <span class="tag">Environment</span>
                <h3>Creating Your Peaceful Digital Space</h3>
                <p class="excerpt">Simple steps to organize your devices and notifications to foster a more tranquil and focused atmosphere.</p>
                <div class="meta">March 2026 • 6 min read</div>
            </div>
        </a>

        <a href="/ambient-soundtracks" class="card">
            <img src="img/ambient-sound.jpg" alt="Ambient Sound" class="card-img">
            <div class="card-body">
                <span class="tag">Audio</span>
                <h3>The Sound of Serenity: Ambient Soundtracks</h3>
                <p class="excerpt">How high-quality audio design in relaxing games can significantly improve concentration and sleep quality.</p>
                <div class="meta">March 2026 • 7 min read</div>
            </div>
        </a>

        <a href="/nature-puzzles" class="card">
            <img src="img/nature-puzzles.jpg" alt="Nature Puzzles" class="card-img">
            <div class="card-body">
                <span class="tag">Nature</span>
                <h3>Nature Immersion in Modern Puzzles</h3>
                <p class="excerpt">Connecting with the natural world through digital landscapes and gentle problem-solving challenges.</p>
                <div class="meta">March 2026 • 5 min read</div>
            </div>
        </a>

        <a href="/digital-wellbeing" class="card">
            <img src="img/wellbeing.jpg" alt="Wellbeing" class="card-img">
            <div class="card-body">
                <span class="tag">Wellbeing</span>
                <h3>Digital Wellbeing: Balancing Screen Time</h3>
                <p class="excerpt">Expert advice on maintaining a healthy relationship with technology while enjoying your favorite relaxing pastimes.</p>
                <div class="meta">March 2026 • 10 min read</div>
            </div>
        </a>
    </div>
</main>

<footer class="footer">
    <div class="container">
        <div class="footer-grid">
            <div>
                <h3>ABOUT RELAXGAMES.INFO</h3>
                <p>We are a dedicated resource for individuals seeking peace in the digital age. Our mission is to curate content that promotes relaxation, mindfulness, and a healthy digital lifestyle through the world of calm gaming.</p>
            </div>
            <div>
                <h3>CONTACT US</h3>
                <p>ONLINE AMPLIFY LLC<br>
                1937 Rahilly Rd<br>
                Wildwood, FL 32163<br>
                United States</p>
            </div>
            <div>
                <h3>LEGAL</h3>
                <ul>
                    <li><a href="/privacy">Privacy Policy</a></li>
                    <li><a href="/terms">Terms of Service</a></li>
                    <li><a href="/cookies">Cookie Policy</a></li>
                </ul>
            </div>
        </div>
        <div class="footer-bottom-line">
            © 2026 All rights reserved. | relaxgames.info
        </div>
    </div>
</footer>

</body>
</html>