* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #8B4513;
            --secondary: #D2B48C;
            --accent: #CD853F;
            --light: #F5DEB3;
            --dark: #5C3317;
            --text: #333;
        }
        body {
            line-height: 1.6;
            color: var(--text);
            background-color: #f9f6f0;
            padding-bottom: 50px;
        }
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        header {
            background-color: var(--primary);
            color: white;
            padding: 20px 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--light);
            text-decoration: none;
            display: inline-block;
        }
        .logo span {
            color: var(--accent);
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 30px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        .nav-links a:hover {
            color: var(--accent);
        }
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
        }
        .btn {
            display: inline-block;
            padding: 10px 20px;
            background-color: var(--accent);
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            transition: background-color 0.3s;
            margin-right: 10px;
        }
        .btn:hover {
            background-color: var(--dark);
        }
        .btn-login {
            background-color: var(--secondary);
        }
        main {
            padding: 40px 0;
        }
        .page-title {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
            border-bottom: 3px solid var(--accent);
            padding-bottom: 10px;
        }
        .intro {
            font-size: 1.1rem;
            margin-bottom: 30px;
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .content-section {
            margin-bottom: 40px;
            background-color: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .section-title {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        .section-title::before {
            content: "▪";
            color: var(--accent);
            margin-right: 10px;
            font-size: 1.5rem;
        }
        .subsection-title {
            font-size: 1.4rem;
            color: var(--dark);
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 15px;
            text-align: justify;
        }
        ul {
            margin-left: 30px;
            margin-bottom: 20px;
        }
        li {
            margin-bottom: 10px;
        }
        .highlight {
            background-color: var(--light);
            padding: 2px 5px;
            border-radius: 3px;
            font-weight: 600;
        }
        footer {
            background-color: var(--dark);
            color: white;
            padding: 30px 0;
            margin-top: 50px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
            margin-bottom: 20px;
            padding-right: 20px;
        }
        .footer-section h3 {
            color: var(--accent);
            margin-bottom: 15px;
            font-size: 1.2rem;
        }
        .game-types a, .tags a {
            display: inline-block;
            background-color: var(--secondary);
            color: var(--dark);
            padding: 5px 10px;
            border-radius: 20px;
            text-decoration: none;
            margin-right: 8px;
            margin-bottom: 8px;
            font-size: 0.9rem;
        }
        .game-types a:hover, .tags a:hover {
            background-color: var(--accent);
            color: white;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            margin-top: 20px;
            border-top: 1px solid var(--secondary);
            font-size: 0.9rem;
            color: var(--light);
        }
        .daman-link {
            color: var(--accent);
            font-weight: 600;
            text-decoration: none;
        }
        .daman-link:hover {
            text-decoration: underline;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--primary);
                padding: 20px;
                box-shadow: 0 5px 5px rgba(0,0,0,0.2);
            }
            .nav-links.show {
                display: flex;
            }
            .nav-links li {
                margin: 10px 0;
            }
            .page-title {
                font-size: 2rem;
            }
            .section-title {
                font-size: 1.5rem;
            }
        }
