        :root {
            --bg-color: #040707;
            --bg-color-deep: #000000;
            --text-color: #ffffff;
            --text-muted: #8d8e8d;
            --accent-color: #c03130;
            --accent-hover: #e53c3a;
            --font-main: 'Luckiest Guy', cursive;
            --font-body: 'monoscope', monospace;
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--bg-color);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
            font-size: 18px;
        }

        /* Typography */
        h1,
        h2,
        h3,
        h4,
        .logo,
        .game-name {
            font-family: var(--font-main);
            font-weight: normal;
            line-height: 1.2;
            letter-spacing: 0.05em;
        }

        h1 {
            font-size: clamp(3rem, 8vw, 6rem);
            margin-bottom: 0.5rem;
            text-transform: uppercase;
        }

        h2 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 1.5rem;
            color: var(--accent-color);
        }

        h3 {
            font-size: clamp(1.5rem, 3vw, 2.5rem);
            margin-bottom: 0.5rem;
        }

        p {
            font-size: 1.2rem;
            font-weight: 300;
            margin-bottom: 1.5rem;
            color: var(--text-muted);
            max-width: 600px;
        }

        a {
            color: var(--text-color);
            text-decoration: none;
            transition: var(--transition);
        }

        a:hover {
            color: var(--accent-color);
        }

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

        section {
            padding: 8rem 0;
            position: relative;
            scroll-margin-top: 80px;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 2rem 0;
            z-index: 100;
            background: transparent;
            transition: all 0.3s ease;
        }

        nav.scrolled {
            background-color: #000000;
            padding: 1rem 0;
            border-bottom: 1px solid #ffffff;
        }

        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo img {
            height: 40px;
            transition: var(--transition);
        }

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

        .nav-links {
            display: flex;
            gap: 2rem;
        }

        .nav-links a {
            font-family: var(--font-body);
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 0.1em;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -4px;
            left: 0;
            background-color: var(--accent-color);
            transition: var(--transition);
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--accent-color);
        }

        /* Hero */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: radial-gradient(circle at center, var(--bg-color) 0%, var(--bg-color-deep) 100%);
        }

        .hero-left {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .hero-right {
            flex: 1;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            padding-right: 2rem;
        }

        .hero span.highlight {
            color: var(--accent-color);
        }

        /* Games Section (Text Highlight Style) */
        .game-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .game-item {
            position: relative;
            padding: 2rem;
            margin-bottom: 2rem;
            border: 2px dashed rgba(255, 255, 255, 0.4);
            border-radius: 12px;
            transition: var(--transition);
        }

        .game-item:hover,
        .game-item.active {
            border-color: #ffffff;
            background: rgba(0, 0, 0, 0.1);
        }

        .game-item:last-child {
            margin-bottom: 0;
        }

        .game-header {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .game-name {
            font-size: clamp(2rem, 5vw, 4rem);
            font-weight: 900;
            color: rgba(255, 255, 255, 0.4);
            text-transform: uppercase;
            transition: var(--transition);
            cursor: default;
            position: relative;
            z-index: 2;
        }

        .game-platform {
            font-weight: 700;
            letter-spacing: 0.1em;
            color: var(--accent-color);
            text-transform: uppercase;
        }

        .game-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .btn {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            border: 2px solid var(--text-color);
            color: var(--text-color);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            border-radius: 50px;
        }

        .btn:hover {
            background-color: var(--text-color);
            color: var(--bg-color);
        }

        .btn.primary {
            background-color: var(--accent-color);
            border-color: var(--accent-color);
            color: white;
        }

        .btn.primary:hover {
            background-color: var(--accent-hover);
            border-color: var(--accent-hover);
            transform: translateY(-2px);
        }

        /* Hover and Active Reveal Magic */
        .game-item:hover .game-name,
        .game-item.active .game-name {
            color: var(--text-color);
            transform: translateX(20px);
        }

        .game-image-preview {
            position: absolute;
            top: 50%;
            right: 10%;
            transform: translateY(-50%) scale(0.9) rotate(3deg);
            opacity: 0.4;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            z-index: 1;
            pointer-events: none;
            width: 300px;
            border-radius: 12px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            border: 4px solid transparent;
            filter: grayscale(80%);
        }

        .game-item:hover .game-image-preview,
        .game-item.active .game-image-preview {
            opacity: 1;
            transform: translateY(-50%) scale(1) rotate(-2deg);
            border: 4px solid var(--accent-color);
            filter: grayscale(0%);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
            z-index: 5;
        }

        /* Games Section Overrides */
        #games {
            background: linear-gradient(to bottom,
                    var(--bg-color-deep) 0%,
                    var(--accent-color) 15%,
                    var(--accent-color) 85%,
                    var(--bg-color-deep) 100%);
        }

        #games h2,
        #games .game-platform {
            color: #ffffff;
        }

        #games p,
        #games .about-text {
            color: rgba(255, 255, 255, 0.8);
        }

        #games .btn {
            border-color: #ffffff;
            color: #ffffff;
        }

        #games .btn:hover {
            background-color: #ffffff;
            color: var(--accent-color);
        }

        #games .btn.primary {
            background-color: #ffffff;
            color: var(--accent-color);
            border-color: #ffffff;
        }

        #games .btn.primary:hover {
            background-color: transparent;
            color: #ffffff;
            border-color: #ffffff;
        }

        #games .game-image-preview {
            border-color: transparent;
        }

        #games .game-item:hover .game-image-preview,
        #games .game-item.active .game-image-preview {
            border-color: #ffffff;
        }

        /* Playdate Special Banner */
        .playdate-banner {
            background: rgba(0, 0, 0, 0.2);
            border-left: 4px solid #adee00;
            padding: 2rem;
            margin-bottom: 4rem;
            border-radius: 0 12px 12px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .playdate-banner h3 {
            margin-bottom: 0;
            color: #adee00;
            /* Playdate classic yellow hint */
        }

        .playdate-banner span {
            margin-bottom: 0;
            color: var(--text-color);
        }

        .playdate-img {
            max-height: 200px;
            max-width: 100%;
            border-radius: 5px;
            border: 2px solid #ffffff;
        }

        /* About & Footer Section */
        #about,
        #contact,
        #devlog {
            text-align: center;
        }

        .about-text {
            font-size: 2rem;
            line-height: 1.4;
            max-width: 800px;
            color: var(--text-color);
            margin: 0 auto;
        }

        .social-grid {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 1rem;
        }

        .social-link {
            font-size: 2rem;
            color: var(--text-color);
        }

        .social-link:hover {
            color: var(--text-color);
            transform: translateY(-5px);
        }

        footer {
            padding: 4rem 0;
            background-color: #000;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
        }

        footer img {
            width: 150px;
            margin-bottom: 1rem;
            opacity: 0.5;
            transition: var(--transition);
        }

        footer img:hover {
            opacity: 1;
        }

        /* ArduboyFX Link Magic */
        .arduboy-link {
            color: #ffffff !important;
            text-decoration: none;
            display: inline-block;
            position: relative;
            transition: text-shadow 0.3s ease;
        }

        .arduboy-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 0;
            background-color: #ffffff;
            transition: width 0.3s ease-out;
            box-shadow: 0 0 5px #ffffff;
        }

        .arduboy-link:hover {
            text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
        }

        .arduboy-link:hover::after {
            width: 100%;
        }

        /* Devlog Section */
        #devlog {
            background-color: var(--bg-color-deep);
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-top: 2rem;
        }

        .blog-card {
            background: rgba(255, 255, 255, 0.03);
            border: 3px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            overflow: hidden;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            cursor: pointer;
            text-decoration: none;
            height: 100%;
        }

        .blog-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.05);
            border-color: var(--accent-color);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .blog-thumbnail-wrapper {
            width: 100%;
            padding-top: 56.25%;
            /* 16:9 Aspect Ratio */
            position: relative;
            overflow: hidden;
            background: #1a1a1a;
        }

        .blog-thumbnail {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .blog-card:hover .blog-thumbnail {
            transform: scale(1.1);
        }

        .blog-content {
            padding: 1.5rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        .blog-title {
            font-family: var(--font-main);
            font-size: 1.2rem;
            color: var(--text-color);
            line-height: 1.3;
            margin: 0;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 0.03em;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .btn {
                padding: 0.4rem 0.8rem;
                font-size: 0.8rem;
                white-space: nowrap;
            }

            .hero {
                flex-direction: column;
                justify-content: center;
                text-align: center;
                padding-top: 6rem;
            }

            .hero-left,
            .hero-right {
                flex: none;
                justify-content: center;
                padding: 0;
            }

            .hero-right {
                margin-top: 4rem;
            }

            .nav-links {
                display: none;
            }

            /* Could add a hamburger menu for full implementation */

            .game-item:hover .game-name {
                transform: translateX(5px);
            }

            .game-item {
                display: flex;
                flex-direction: column;
            }

            .game-header {
                order: 1;
            }

            .game-image-preview {
                order: 2;
                position: static;
                transform: none !important;
                width: 100%;
                opacity: 1;
                filter: none;
                border: 2px solid #ffffff !important;
                margin: 1rem 0;
            }

            .game-item>p {
                order: 3;
            }

            .game-links {
                order: 4;
            }

            section {
                padding: 4rem 0;
            }

            .about-text {
                font-size: 1.5rem;
            }

            .playdate-banner {
                flex-direction: column;
                text-align: center;
            }

            .blog-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .blog-grid {
                grid-template-columns: 1fr;
            }
        }