        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --bg-color: #ffffff;
            --text-color: #333333;
            --card-bg: #f8f9fa;
            --border-color: #e9ecef;
            --primary-color: #007bff;
            --primary-hover: #0056b3;
            --secondary-color: #6c757d;
            --success-color: #28a745;
            --warning-color: #ffc107;
        }

        [data-theme="dark"] {
            --bg-color: #1a1a1a;
            --text-color: #ffffff;
            --card-bg: #2d2d2d;
            --border-color: #404040;
            --primary-color: #4dabf7;
            --primary-hover: #339af0;
            --secondary-color: #adb5bd;
            --success-color: #51cf66;
            --warning-color: #ffd43b;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--bg-color);
            transition: all 0.3s ease;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background: white;
            border-bottom: 1px solid var(--border-color);
            padding: 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary-color);
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
            border-radius: 8px;
            margin-right: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
        }

        .theme-toggle {
            background: var(--card-bg);
            border: 2px solid var(--border-color);
            border-radius: 25px;
            padding: 8px 16px;
            cursor: pointer;
            color: var(--text-color);
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .theme-toggle:hover {
            border-color: var(--primary-color);
            background: var(--primary-color);
            color: white;
        }


        /* Slideshow */
        .slideshow-container {
            position: relative;
            max-width: 800px;
            margin: 2rem auto 1REM AUTO;
            border-radius: 16px;
            overflow: hidden;
        }

        .slide {
            display: none;
            position: relative;
        }

        .slide.active {
            display: block;
        }

        .slide img {
            width: 100%;
            object-fit: cover;
            border-radius: 16px;
        }
        .nav-dots {
            text-align: center;
            margin-top: 1rem;
        }

        .dot {
            height: 12px;
            width: 12px;
            margin: 0 5px;
            background-color: var(--border-color);
            border-radius: 50%;
            display: inline-block;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active, .dot:hover {
            background-color: var(--primary-color);
        }

        /* Game Description */
        .game-info {
            padding: 2rem 0;
            background: var(--card-bg);
        }

        .info-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .info-text h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--text-color);
        }

        .info-text p {
            font-size: 1.1rem;
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
        }

        .features {
            list-style: none;
            padding: 0;
        }

        .features li {
            padding: 0.8rem 0;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            align-items: center;
        }

        .features li:before {
            content: "✓";
            color: var(--success-color);
            font-weight: bold;
            margin-right: 12px;
            font-size: 1.2rem;
        }

        .rating-showcase {
            background: var(--bg-color);
            padding: 2rem;
            border-radius: 16px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .rating-stars {
            font-size: 2rem;
            color: var(--warning-color);
            margin-bottom: 1rem;
        }

        .rating-text {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--text-color);
            margin-bottom: 0.5rem;
        }

        .rating-count {
            color: var(--secondary-color);
            font-size: 0.9rem;
        }

        /* Download Section */
        .download-section {
            padding: 2rem 0;
            text-align: center;
        }

        .download-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--text-color);
        }

        .download-section p {
            font-size: 1.2rem;
            color: var(--secondary-color);
            margin-bottom: 3rem;
        }

        .download-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .download-btn {
            background: var(--primary-color);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
        }

        .download-btn:hover {
            background: var(--primary-hover);
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(0, 123, 255, 0.4);
        }

        .download-btn.secondary {
            background: var(--secondary-color);
            box-shadow: 0 8px 20px rgba(108, 117, 125, 0.3);
        }

        .download-btn.secondary:hover {
            background: #5a6268;
            box-shadow: 0 12px 30px rgba(108, 117, 125, 0.4);
        }

        .download-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .info-card {
            background: var(--card-bg);
            padding: 2rem;
            border-radius: 16px;
            text-align: center;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }

        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .info-card h3 {
            color: var(--primary-color);
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        .info-card p {
            color: var(--secondary-color);
            font-size: 0.95rem;
        }

        /* Footer */
        footer {
            background: var(--card-bg);
            border-top: 1px solid var(--border-color);
            padding: 2rem 0;
            text-align: center;
            color: var(--secondary-color);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .info-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .download-buttons {
                flex-direction: column;
                align-items: center;
            }

            .download-btn {
                width: 280px;
                justify-content: center;
            }
            
        }

/* Hero section */
        .brand-logo {
            font-family: 'Teko', sans-serif;
            font-size: 2.5rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #007bff;
            text-shadow: 2px 2px 0px #004ab8, 
                        4px 4px 0px rgba(0,0,0,0.2);
            -webkit-background-clip: text;
            background-clip: text;
        }

        .hero {
            background: #232222;
            position: relative;
            padding: 4rem 0 6rem;
            margin-bottom: -2rem;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100%;
            background-image: url('images/unnamed-3-32-150x150.png');
            background-size: cover;
            background-position: center;
            opacity: .4;
            z-index: 1;
            filter: blur(6px);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .hero h1 {
            font-family: 'Teko', sans-serif;
            font-size: 4.5rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #ffffff;
            text-shadow: 2px 2px 0px #007bff, 
                        4px 4px 0px rgba(0,0,0,0.1);
        }
        

        .hero p {
            color: #ffffff;
            font-weight: bold;
            font-size: 1.25rem;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Responsive Stardew Valley */
        @media (max-width:768px) {
            .hero h1 {
            font-size: 3rem;
            }

            .hero p {
                font-size: 16px;
                margin-bottom: 2rem;
            }

        }

        .slideshow {
            margin-top: 0;
            background: white;
            position: relative;
            z-index: 2;
            padding-bottom: 20px;
        }

/* Keep styles specific to the install-video area so external CSS remains untouched */
    .install-video { background: linear-gradient(180deg, rgba(255, 184, 3, 0.27), rgba(0,0,0,0.02)); }
    .install-video .container { max-width: 980px; margin: 0 auto; padding: 0 1rem; }
    .install-video h2 { font-family: 'Teko', sans-serif; font-size: 2rem; margin-bottom: .8rem; letter-spacing: .5px; text-align: center;box-sizing: border-box; }
    .install-video p { color: #666; margin-bottom: 1rem; }
    .install-video .video-card { box-shadow: 0 8px 24px rgba(16,24,40,0.08); border-radius: 12px; overflow: hidden; background: #000; }
    .install-video iframe { display: block; width: 100%; height: 100%; }
    /* Maintain 16:9 aspect and provide an inner wrapper for rounded corners */
    .install-video .video-wrap { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; }
    .install-video .video-wrap .video-card { position: absolute; inset: 0; }

    @media (max-width: 520px) {
        .install-video h2 { font-size: 1.5rem; }
    }