        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Nirmala UI', 'Segoe UI', Tahoma, sans-serif;
        }
        :root {
            --primary: #165DFF;
            --secondary: #2C3E50;
            --accent: #FF9500;
            --light: #F8FAFC;
            --dark: #1A202C;
            --success: #22C55E;
            --warning: #F59E0B;
            --danger: #EF4444;
            --border: #E2E8F0;
        }
        body {
            line-height: 1.8;
            color: var(--dark);
            background-color: var(--light);
            padding-bottom: 3rem;
            font-size: 100%;
        }
        .container {
            width: 92%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 15px;
        }
        header {
            background-color: var(--secondary);
            color: white;
            padding: 1.2rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .logo {
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent);
            text-decoration: none;
            letter-spacing: 0.5px;
            font-family: 'Segoe UI Bold', sans-serif;
        }
        .logo span {
            color: var(--primary);
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            align-items: center;
        }
        .nav-links li {
            margin-left: 2.5rem;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            font-size: 1rem;
        }
        .nav-links a:hover {
            color: var(--accent);
            transform: translateY(-2px);
        }
        .btn {
            display: inline-block;
            padding: 0.7rem 1.4rem;
            background-color: var(--primary);
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 1rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }
        .btn:hover {
            background-color: #0F4CD4;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px -1px rgba(0, 0, 0, 0.15);
        }
        .btn-login {
            background-color: var(--accent);
            color: var(--secondary);
        }
        .btn-login:hover {
            background-color: #E68A00;
            color: white;
        }
        .menu-toggle {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--accent);
        }
        .hero {
            background: linear-gradient(rgba(28, 42, 64, 0.85), rgba(28, 42, 64, 0.85)), url('hero-glory-toss.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 6rem 0;
            text-align: center;
            margin-bottom: 3rem;
            border-radius: 0 0 20px 20px;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            color: var(--accent);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            line-height: 1.3;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2.5rem;
            color: #f1f5f9;
        }
        .btn-group {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        main {
            padding: 1rem 0 4rem;
        }
        section {
            margin-bottom: 4rem;
            scroll-margin-top: 100px;
        }
        .entry-content {
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            padding: 2.5rem;
            margin-bottom: 2.5rem;
        }
        h1 {
            color: var(--secondary);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.8rem;
            border-bottom: 4px solid var(--primary);
            display: inline-block;
            font-weight: 700;
        }
        h2 {
            color: var(--secondary);
            font-size: 2.2rem;
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--border);
            font-weight: 700;
        }
        h3 {
            color: var(--secondary);
            font-size: 1.6rem;
            margin: 2rem 0 1.2rem;
            font-weight: 600;
            position: relative;
            padding-left: 1rem;
        }
        h3::before {
            content: "•";
            color: var(--accent);
            position: absolute;
            left: 0;
            font-size: 1.8rem;
            line-height: 1;
        }
        h4 {
            color: var(--primary);
            font-size: 1.3rem;
            margin: 1.5rem 0 1rem;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
            font-size: 1.05rem;
        }
        .toc {
            background: #F8FAFC;
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 1.5rem;
            margin: 2rem 0;
            display: inline-block;
            min-width: 300px;
        }
        .toc-title {
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 1rem;
            color: var(--secondary);
        }
        .toc ul {
            list-style: none;
            padding-left: 0;
        }
        .toc li {
            margin-bottom: 0.5rem;
        }
        .toc a {
            color: var(--primary);
            text-decoration: none;
            transition: all 0.2s ease;
        }
        .toc a:hover {
            color: var(--accent);
            padding-left: 5px;
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin: 2.5rem 0;
        }
        .feature-card {
            background: #F8FAFC;
            padding: 1.8rem;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            border-top: 5px solid var(--primary);
            transition: all 0.3s ease;
        }
        .feature-card:hover {
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            transform: translateY(-3px);
        }
        .feature-card h4 {
            color: var(--primary);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        .feature-card h4 span {
            font-size: 1.5rem;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 2.5rem 0;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        th, td {
            padding: 1.2rem;
            text-align: left;
            border-bottom: 1px solid var(--border);
        }
        th {
            background-color: var(--secondary);
            color: white;
            font-weight: 600;
        }
        tr:hover {
            background-color: #F8FAFC;
        }
        tr:last-child td {
            border-bottom: none;
        }
        ul {
            margin-bottom: 1.5rem;
            padding-left: 2rem;
        }
        ul li {
            margin-bottom: 0.8rem;
            text-align: justify;
        }
        ol {
            margin-bottom: 1.5rem;
            padding-left: 2.5rem;
        }
        ol li {
            margin-bottom: 0.8rem;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(255, 149, 0, 0.1);
            padding: 0.3rem 0.6rem;
            border-radius: 6px;
            font-weight: 600;
            color: var(--dark);
            border-left: 4px solid var(--accent);
        }
        .stat-badge {
            display: inline-block;
            background-color: var(--primary);
            color: white;
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            margin: 0 0.3rem 0.5rem 0;
        }
        blockquote {
            border-left: 4px solid var(--primary);
            padding: 1rem 1.5rem;
            margin: 1.5rem 0;
            background-color: #F8FAFC;
            border-radius: 0 6px 6px 0;
            font-style: italic;
        }
        .daman-recommendation {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 2rem;
            border-radius: 12px;
            margin: 3rem 0;
            text-align: center;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        .daman-recommendation h3 {
            color: white;
            margin-bottom: 1rem;
            padding-left: 0;
        }
        .daman-recommendation h3::before {
            display: none;
        }
        .daman-recommendation a {
            color: var(--accent);
            font-weight: 600;
            text-decoration: underline;
        }
        footer {
            background-color: var(--secondary);
            color: white;
            padding: 4rem 0 2rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2.5rem;
            margin-bottom: 3rem;
        }
        .footer-section h3 {
            color: var(--accent);
            margin-bottom: 1.5rem;
            padding-left: 0;
        }
        .footer-section h3::before {
            display: none;
        }
        .footer-section ul {
            list-style: none;
            padding-left: 0;
        }
        .footer-section ul li {
            margin-bottom: 1rem;
        }
        .footer-section a {
            color: #CBD5E1;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }
        .footer-section a:hover {
            color: var(--accent);
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 2rem;
            color: #94A3B8;
        }
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: var(--secondary);
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                display: none;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 1rem 0;
            }
            .hero h1 {
                font-size: 2.4rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .btn-group {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }
            .feature-grid {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .entry-content {
                padding: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .hero {
                padding: 4rem 0;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .logo {
                font-size: 1.6rem;
            }
            .entry-content {
                padding: 1.2rem;
            }
            .toc {
                min-width: 100%;
            }
        }
        .fade-in {
            animation: fadeIn 0.8s ease-in;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
