        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.7;
            font-size: 1.1rem;
            overflow-x: hidden;
        }
        a {
            color: #f97316;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ea580c;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            color: #fbbf24;
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: 1px;
            text-decoration: none;
        }
        .logo a:hover {
            color: #f59e0b;
        }
        .main-nav {
            display: flex;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-list a {
            color: #e2e8f0;
            font-weight: 600;
            padding: 0.5rem 0;
            border-bottom: 2px solid transparent;
        }
        .nav-list a:hover {
            color: #fbbf24;
            border-bottom-color: #fbbf24;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: #fbbf24;
            border-radius: 2px;
        }
        .breadcrumb {
            background-color: #f1f5f9;
            padding: 0.8rem 0;
            font-size: 0.9rem;
            margin-bottom: 2rem;
            border-bottom: 1px solid #cbd5e1;
        }
        .breadcrumb a {
            color: #64748b;
        }
        .breadcrumb a:hover {
            color: #f97316;
        }
        .main-content {
            background-color: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
            margin-bottom: 3rem;
        }
        h1 {
            color: #1e293b;
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 6px solid #f97316;
            padding-left: 1rem;
        }
        h2 {
            color: #334155;
            font-size: 2rem;
            margin-top: 3rem;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #e2e8f0;
        }
        h3 {
            color: #475569;
            font-size: 1.6rem;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            line-height: 1.8;
        }
        .lead {
            font-size: 1.3rem;
            color: #4f46e5;
            font-weight: 500;
            margin-bottom: 2rem;
            padding: 1rem;
            background-color: #eef2ff;
            border-radius: 8px;
            border-left: 4px solid #4f46e5;
        }
        .highlight {
            background-color: #fef3c7;
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-weight: 600;
            color: #92400e;
        }
        .bold {
            font-weight: 800;
            color: #1e293b;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        .section-divider {
            height: 1px;
            background: linear-gradient(to right, transparent, #cbd5e1, transparent);
            margin: 3rem 0;
        }
        .image-container {
            margin: 2.5rem auto;
            text-align: center;
            max-width: 900px;
        }
        .image-container img {
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            border: 1px solid #e2e8f0;
        }
        .image-caption {
            font-style: italic;
            color: #64748b;
            margin-top: 0.8rem;
            font-size: 0.95rem;
        }
        ul, ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.7rem;
        }
        blockquote {
            border-left: 5px solid #10b981;
            background-color: #ecfdf5;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
            font-style: italic;
            color: #065f46;
        }
        .player-quote {
            border-left: 5px solid #8b5cf6;
            background-color: #f5f3ff;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .quote-author {
            text-align: right;
            font-weight: bold;
            color: #7c3aed;
            margin-top: 0.8rem;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            box-shadow: 0 0 10px rgba(0,0,0,0.05);
        }
        .data-table th, .data-table td {
            border: 1px solid #cbd5e1;
            padding: 1rem;
            text-align: left;
        }
        .data-table th {
            background-color: #1e3a8a;
            color: white;
            font-weight: 600;
        }
        .data-table tr:nth-child(even) {
            background-color: #f8fafc;
        }
        .tip-box {
            background-color: #dbeafe;
            border: 1px solid #93c5fd;
            border-radius: 10px;
            padding: 1.5rem;
            margin: 2rem 0;
        }
        .tip-box h4 {
            color: #1d4ed8;
            margin-bottom: 0.5rem;
        }
        .site-footer {
            background-color: #0f172a;
            color: #cbd5e1;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-section h4 {
            color: #fbbf24;
            margin-bottom: 1.2rem;
            font-size: 1.3rem;
        }
        .game-types-list, .tag-list {
            list-style: none;
            margin-left: 0;
        }
        .game-types-list li, .tag-list li {
            margin-bottom: 0.6rem;
        }
        .game-types-list a, .tag-list a {
            color: #94a3b8;
            display: block;
            padding: 0.3rem 0;
        }
        .game-types-list a:hover, .tag-list a:hover {
            color: #f97316;
            padding-left: 0.5rem;
            transition: all 0.2s ease;
        }
        friend-link {
            display: block;
            margin-top: 1rem;
        }
        friend-link a {
            color: #60a5fa;
            font-weight: 500;
        }
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #334155;
            font-size: 0.95rem;
            color: #94a3b8;
        }
        .daman-recommendation {
            text-align: center;
            font-size: 1.1rem;
            color: #e2e8f0;
            margin-bottom: 1.5rem;
            padding: 1rem;
            background-color: #1e293b;
            border-radius: 8px;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .main-nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: #1e3a8a;
                flex-direction: column;
                padding: 1rem 0;
                box-shadow: 0 5px 10px rgba(0,0,0,0.2);
            }
            .main-nav.active {
                display: flex;
            }
            .nav-list {
                flex-direction: column;
                gap: 0;
                width: 100%;
            }
            .nav-list li {
                width: 100%;
                text-align: center;
            }
            .nav-list a {
                display: block;
                padding: 1rem;
                border-bottom: 1px solid #334155;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .main-content {
                padding: 1.5rem;
            }
            .header-container, .footer-content {
                padding: 0 15px;
            }
        }
