 /* overall style */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Microsoft JhengHei', '微軟正黑體', sans-serif;
        }

        /* main body */
        body {
            background-color: #f8f3e9;
            color: #333;
            line-height: 1.6;
        }

        #language-label {
            color: white;
            font-weight: bold; /* optional, makes it stand out */
        }

        /* header */
        header {
            background-color: #c8102e;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            color: #fff;
            font-size: 1.8rem;
            font-weight: bold;
        }

        /* mainContent */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 3rem 2rem;
        }
        
        /* trailer Title */
        .game-video h2 {
            font-size: 2rem;
            color: #c8102e;
            margin-bottom: 2rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #f0e6d2;
        }

        .video-container {
            position: relative;
            padding-bottom: 177.78%; /* 9:16 aspect ratio */
            height: 0;
            overflow: hidden;
        }
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 200px;
        }


        /* game Title */
        .game-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .game-title h1 {
            font-size: 2.5rem;
            color: #c8102e;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }

        .game-title p {
            font-size: 1.2rem;
            color: #666;
        }

        /* screencap */
        .game-screenshot {
            text-align: center;
            margin-bottom: 4rem;
            background-color: #fff;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }

        .game-screenshot img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            border: 5px solid #f0e6d2;
        }

        /* Feature */
        .game-features {
            margin-bottom: 4rem;
        }

        .game-features h2 {
            font-size: 2rem;
            color: #c8102e;
            margin-bottom: 2rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #f0e6d2;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background-color: #fff;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
        }

        .feature-card h3 {
            color: #c8102e;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        /* game rule */
        .game-rules {
            margin-bottom: 4rem;
            background-color: #fff;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }

        .game-rules h2 {
            font-size: 2rem;
            color: #c8102e;
            margin-bottom: 2rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #f0e6d2;
        }

        .rules-list {
            list-style-position: inside;
            padding-left: 1rem;
        }

        .rules-list li {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        /* footer */
        footer {
            background-color: #c8102e;
            color: #fff;
            text-align: center;
            padding: 2rem 0;
            margin-top: 5rem;
        }

        .social-media {
            text-align: center;
            margin: 2rem 0;
        }

        .social-links a {
            margin: 0 10px;
            display: inline-block;
            transition: transform 0.3s ease;
        }

        .social-links a:hover {
            transform: scale(1.2);
        }

        /* responsive */
        @media (max-width: 768px) {
            .game-title h1 {
                font-size: 2rem;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .container {
                padding: 2rem 1rem;
            }
        }