
        :root {
            --r6tl-primary: #FF6C37;
            --r6tl-primary-dark: #E05216;
            --r6tl-accent: #00F2FE;
            --r6tl-bg-dark: #1C1C1C;
            --r6tl-bg-light: #F9F9F9;
            --r6tl-text-main: #212121;
            --r6tl-text-muted: #666666;
            --r6tl-white: #FFFFFF;
            --r6tl-border: #EEEEEE;
            --r6tl-gap: 8px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            line-height: 1.6;
            color: var(--r6tl-text-main);
            background-color: var(--r6tl-white);
            word-break: keep-all;
            overflow-wrap: break-word;
        }

        /* Layout Container */
        .r6tl-container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }

        /* Navigation */
        .r6tl-navbar {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--r6tl-border);
            padding: 12px 0;
        }

        .r6tl-nav-wrapper {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }

        .r6tl-logo {
            flex: 0 0 auto;
            min-width: 0;
        }

        .r6tl-logo img {
            height: 36px;
            display: block;
        }

        .r6tl-nav-links {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 16px;
            margin-left: auto;
        }

        .r6tl-nav-links li {
            min-width: 0;
        }

        .r6tl-nav-links a {
            text-decoration: none;
            color: var(--r6tl-text-main);
            font-size: 14px;
            font-weight: 500;
            padding: 8px 4px;
            transition: color 0.3s ease;
        }

        .r6tl-nav-links a:hover, .r6tl-nav-links a.active {
            color: var(--r6tl-primary);
            border-bottom: 2px solid var(--r6tl-primary);
        }

        /* Hero Section - Documentation Style */
        .r6tl-hero {
            background: linear-gradient(135deg, var(--r6tl-bg-dark) 0%, #333333 100%);
            padding: 96px 0;
            color: var(--r6tl-white);
            position: relative;
            overflow: hidden;
        }

        .r6tl-hero::after {
            content: "";
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 108, 55, 0.2) 0%, transparent 70%);
            pointer-events: none;
        }

        .r6tl-hero-content {
            max-width: 800px;
        }

        .r6tl-hero h1 {
            font-size: clamp(2rem, 4vw + 1rem, 3.5rem);
            line-height: 1.2;
            margin-bottom: 24px;
            font-weight: 800;
        }

        .r6tl-hero p {
            font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
            color: #CCCCCC;
            max-width: 600px;
            margin-bottom: 32px;
        }

        /* Scripting Guide Content Section */
        .r6tl-guide-grid {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 48px;
            padding: 64px 0;
        }

        .r6tl-sidebar {
            position: sticky;
            top: 100px;
            height: fit-content;
        }

        .r6tl-sidebar-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 16px;
            padding-bottom: 16px;
            border-bottom: 2px solid var(--r6tl-primary);
        }

        .r6tl-sidebar-nav {
            list-style: none;
        }

        .r6tl-sidebar-nav li {
            margin-bottom: 12px;
        }

        .r6tl-sidebar-nav a {
            color: var(--r6tl-text-muted);
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s;
        }

        .r6tl-sidebar-nav a:hover {
            color: var(--r6tl-primary);
            padding-left: 5px;
        }

        .r6tl-main-content h2 {
            font-size: 28px;
            margin-bottom: 24px;
            color: var(--r6tl-bg-dark);
        }

        .r6tl-main-content h3 {
            font-size: 22px;
            margin: 32px 0 16px;
        }

        .r6tl-main-content p {
            margin-bottom: 16px;
            line-height: 1.8;
            color: #444;
        }

        /* Code Block Design */
        .r6tl-code-block {
            background: #2D2D2D;
            color: #F8F8F2;
            padding: 24px;
            border-radius: 12px;
            font-family: 'Courier New', Courier, monospace;
            margin: 24px 0;
            overflow-x: auto;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border-left: 4px solid var(--r6tl-primary);
        }

        /* Orchestration Matrix Section */
        .r6tl-matrix-section {
            background-color: var(--r6tl-bg-light);
            padding: 80px 0;
        }

        .r6tl-matrix-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            margin-top: 40px;
        }

        .r6tl-matrix-card {
            flex: 1;
            min-width: 300px;
            background: var(--r6tl-white);
            padding: 32px;
            border-radius: 16px;
            border: 1px solid var(--r6tl-border);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .r6tl-matrix-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
        }

        .r6tl-matrix-stage {
            text-transform: uppercase;
            font-size: 12px;
            letter-spacing: 1px;
            color: var(--r6tl-primary);
            font-weight: 700;
            margin-bottom: 8px;
        }

        .r6tl-matrix-method {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .r6tl-tooling-item {
            margin-bottom: 12px;
            font-size: 14px;
        }

        .r6tl-tooling-label {
            font-weight: 600;
            color: var(--r6tl-text-main);
            display: block;
        }

        .r6tl-tooling-desc {
            color: var(--r6tl-text-muted);
        }

        /* Call to Action */
        .r6tl-cta {
            padding: 80px 0;
            text-align: center;
        }

        .r6tl-btn {
            display: inline-block;
            background: linear-gradient(to right, var(--r6tl-primary), var(--r6tl-primary-dark));
            color: var(--r6tl-white);
            padding: 16px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s;
            box-shadow: 0 10px 20px rgba(255, 108, 55, 0.3);
        }

        .r6tl-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 30px rgba(255, 108, 55, 0.4);
        }

        /* Footer */
        .r6tl-footer {
            background: var(--r6tl-bg-dark);
            color: var(--r6tl-white);
            padding: 64px 0 32px;
        }

        .r6tl-footer-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            border-bottom: 1px solid #333;
            padding-bottom: 48px;
        }

        .r6tl-footer-brand {
            flex: 0 0 300px;
            min-width: 0;
        }

        .r6tl-footer-brand h2 {
            font-size: 24px;
            margin-bottom: 16px;
        }

        .r6tl-footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 64px;
        }

        .r6tl-footer-column {
            min-width: 150px;
        }

        .r6tl-footer-column h4 {
            margin-bottom: 24px;
            font-size: 16px;
        }

        .r6tl-footer-column ul {
            list-style: none;
        }

        .r6tl-footer-column li {
            margin-bottom: 12px;
        }

        .r6tl-footer-column a {
            color: #999;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }

        .r6tl-footer-column a:hover {
            color: var(--r6tl-primary);
        }

        .r6tl-copyright {
            padding-top: 32px;
            text-align: center;
            font-size: 14px;
            color: #666;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .r6tl-nav-links {
                display: none; /* Mobile menu logic usually goes here */
            }

            .r6tl-guide-grid {
                grid-template-columns: 1fr;
            }

            .r6tl-sidebar {
                display: none;
            }

            .r6tl-matrix-card {
                flex: 0 0 100%;
            }
        }

    