 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --primary-color: #4a6fa5;
            --secondary-color: #6e9cd2;
            --accent-color: #ff9e40;
            --light-color: #f8f9fa;
            --dark-color: #343a40;
            --gray-color: #6c757d;
            --success-color: #28a745;
            --danger-color: #dc3545;
            --border-radius: 8px;
            --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* Header Styles */
        header {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 1rem 2rem;
            box-shadow: var(--box-shadow);
            position: relative;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            display: flex;
            align-items: center;
        }

        .logo i {
            margin-right: 10px;
            color: var(--accent-color);
        }

        .nav-desktop {
            display: flex;
        }

        .nav-desktop a {
            color: white;
            text-decoration: none;
            margin-left: 1.5rem;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-desktop a:hover {
            color: var(--accent-color);
        }

        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }

        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: var(--primary-color);
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            padding: 1rem;
            box-shadow: var(--box-shadow);
            z-index: 1000;
        }

        .nav-mobile.active {
            display: flex;
        }

        .nav-mobile a {
            color: white;
            text-decoration: none;
            padding: 0.8rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
        }

        .nav-mobile a i {
            margin-right: 10px;
            width: 20px;
        }

        /* Main Content */
        main {
            flex: 1;
            padding: 2rem;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        .page-title {
            text-align: center;
            margin-bottom: 2rem;
            color: var(--primary-color);
        }

        .game-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
            gap: 1rem;
            background: white;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
        }

        .stats {
            display: flex;
            gap: 1.5rem;
        }

        .stat {
            display: flex;
            flex-direction: column;
            align-items: center;
            min-width: 80px;
        }

        .stat-value {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color);
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--gray-color);
        }

        .controls {
            display: flex;
            gap: 1rem;
        }

        .btn {
            padding: 0.8rem 1.5rem;
            border: none;
            border-radius: var(--border-radius);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary {
            background-color: var(--primary-color);
            color: white;
        }

        .btn-primary:hover:not(:disabled) {
            background-color: var(--secondary-color);
            transform: translateY(-2px);
        }

        .btn-primary:disabled {
            background-color: var(--gray-color);
            cursor: not-allowed;
        }

        .btn-secondary {
            background-color: var(--light-color);
            color: var(--dark-color);
            border: 1px solid #ddd;
        }

        .btn-secondary:hover {
            background-color: #e9ecef;
            transform: translateY(-2px);
        }

        .game-container {
            background: white;
            border-radius: var(--border-radius);
            padding: 2rem;
            box-shadow: var(--box-shadow);
            margin-bottom: 2rem;
            display: flex;
            justify-content: center;
        }

        .game-board {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.2rem;
            max-width: 500px;
        }

        .hole {
            width: 120px;
            height: 120px;
            background: linear-gradient(to bottom, #8B4513, #A0522D);
            border-radius: 50%;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            box-shadow: inset 0 10px 0 rgba(0, 0, 0, 0.3);
        }

        .hole:after {
            content: '';
            position: absolute;
            width: 140px;
            height: 50px;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 50%;
            bottom: -25px;
            left: -10px;
        }

        .mole {
            width: 90px;
            height: 90px;
            background: #795548;
            border-radius: 50%;
            position: absolute;
            bottom: -90px;
            left: 15px;
            transition: bottom 0.3s ease;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #5D4037;
            font-size: 3.5rem;
        }

        .mole.up {
            bottom: 15px;
        }

        .mole.whacked {
            background: var(--accent-color);
            animation: whack 0.3s;
        }

        @keyframes whack {
            0% { transform: scale(1); }
            50% { transform: scale(1.2); }
            100% { transform: scale(1); }
        }

        .game-over {
            text-align: center;
            margin-top: 2rem;
            padding: 1.5rem;
            background-color: #e8f5e9;
            border-radius: var(--border-radius);
            border: 1px solid var(--success-color);
            color: var(--success-color);
            font-weight: 600;
            display: none;
        }

        .game-over.show {
            display: block;
            animation: fadeIn 0.5s;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .history-container {
            background: white;
            border-radius: var(--border-radius);
            padding: 2rem;
            box-shadow: var(--box-shadow);
            margin-bottom: 2rem;
        }

        .history-title {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            padding-bottom: 0.8rem;
            border-bottom: 2px solid var(--light-color);
            flex-wrap: wrap;
            gap: 1rem;
        }

        .history-list {
            max-height: 300px;
            overflow-y: auto;
        }

        .history-item {
            display: flex;
            justify-content: space-between;
            padding: 1rem 0;
            border-bottom: 1px solid #eee;
            align-items: center;
        }

        .history-item:last-child {
            border-bottom: none;
        }

        .history-timestamp {
            color: var(--gray-color);
            font-size: 0.9rem;
        }

        .history-result {
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .seo-section {
            background: white;
            border-radius: var(--border-radius);
            padding: 2rem;
            box-shadow: var(--box-shadow);
            margin-bottom: 2rem;
        }

        .seo-section h2 {
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .seo-section p {
            margin-bottom: 1rem;
            line-height: 1.8;
        }

        .seo-section ul {
            margin-left: 2rem;
            margin-bottom: 1rem;
        }

        .seo-section li {
            margin-bottom: 0.8rem;
            line-height: 1.6;
        }

        /* Footer Styles */
        footer {
            background-color: var(--dark-color);
            color: white;
            padding: 3rem 2rem 1.5rem;
            margin-top: 2rem;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .footer-section h3 {
            font-size: 1.2rem;
            margin-bottom: 1.2rem;
            color: var(--accent-color);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
            display: flex;
            align-items: center;
        }

        .footer-links a i {
            margin-right: 8px;
            width: 20px;
        }

        .footer-links a:hover {
            color: var(--accent-color);
        }

        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .header-container {
                padding: 0;
            }

            .nav-desktop {
                display: none;
            }

            .mobile-toggle {
                display: block;
            }

            .game-info {
                flex-direction: column;
                align-items: stretch;
            }

            .stats {
                justify-content: space-around;
            }

            .controls {
                justify-content: center;
            }

            .game-board {
                grid-template-columns: repeat(3, 1fr);
                gap: 1rem;
            }

            .hole {
                width: 100px;
                height: 100px;
            }

            .mole {
                width: 75px;
                height: 75px;
                font-size: 2.8rem;
            }
        }

        @media (max-width: 480px) {
            header {
                padding: 1rem;
            }
            
            .logo {
                font-size: 1.5rem;
            }

            .game-board {
                grid-template-columns: repeat(3, 1fr);
                gap: 0.7rem;
            }

            .hole {
                width: 80px;
                height: 80px;
            }

            .mole {
                width: 60px;
                height: 60px;
                font-size: 2.2rem;
                left: 10px;
            }
            
            main {
                padding: 1rem;
            }
            
            .game-container, .history-container, .seo-section {
                padding: 1.5rem;
            }

            .history-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
            }

            .history-timestamp {
                margin-left: 1.7rem;
            }
        }