
        :root {
            --primary: #ff4d4d;
            --primary-dark: #e60000;
            --accent: #ff9900;
            --text-main: #2c3e50;
            --text-sub: #5d6d7e;
            --bg-light: #fdfefe;
            --bg-soft: #f4f7f6;
            --white: #ffffff;
            --spacing-unit: 8px;
            --max-w: 1280px;
        }

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

        body {
            font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
            color: var(--text-main);
            background-color: var(--bg-light);
            line-height: 1.8;
            overflow-x: hidden;
            word-break: keep-all;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .lmrbri-zabud {
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
            min-width: 0;
        }

        .lmrbri-wapur {
            width: 100%;
            max-width: var(--max-w);
            margin: 0 auto;
            padding: 0 calc(var(--spacing-unit) * 3);
            min-width: 0;
        }

        /* Navigation Area: uwawu, onilev */
        .lmrbri-uwawu {
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0,0,0,0.05);
        }

        .lmrbri-uwawu .lmrbri-wapur {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            height: 80px;
        }

        .lmrbri-logo {
            width: 180px;
            min-width: 0;
        }

        .lmrbri-onilev {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: calc(var(--spacing-unit) * 4);
        }

        .lmrbri-onilev a {
            font-size: 1.1rem;
            font-weight: 500;
            color: var(--text-main);
            position: relative;
            padding: 4px 0;
        }

        .lmrbri-onilev a:hover, .lmrbri-onilev a.active {
            color: var(--primary);
        }

        .lmrbri-onilev a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s;
        }

        .lmrbri-onilev a:hover::after, .lmrbri-onilev a.active::after {
            width: 100%;
        }

        /* Hero/Display Area: iwusesi, retowo, akuw */
        .lmrbri-iwusesi {
            padding: calc(var(--spacing-unit) * 12) 0;
            background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
            overflow: hidden;
        }

        .lmrbri-iwusesi .lmrbri-wapur {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: calc(var(--spacing-unit) * 6);
        }

        .lmrbri-retowo {
            flex: 1;
            min-width: 320px;
            word-break: break-word;
        }

        .lmrbri-retowo h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            line-height: 1.2;
            margin-bottom: calc(var(--spacing-unit) * 3);
            color: var(--primary-dark);
            font-weight: 800;
        }

        .lmrbri-retowo p {
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            color: var(--text-sub);
            margin-bottom: calc(var(--spacing-unit) * 5);
            max-width: 600px;
        }

        .lmrbri-akuw {
            flex: 1;
            min-width: 320px;
            position: relative;
        }

        .lmrbri-akuw img {
            border-radius: 24px;
            box-shadow: 0 30px 60px rgba(255, 77, 77, 0.15);
            transform: perspective(1000px) rotateY(-5deg);
            transition: transform 0.5s ease;
        }

        .lmrbri-akuw:hover img {
            transform: perspective(1000px) rotateY(0deg);
        }

        /* Buttons: odipiko, pumaz */
        .lmrbri-pumaz {
            display: flex;
            flex-wrap: wrap;
            gap: calc(var(--spacing-unit) * 2);
        }

        .lmrbri-odipiko {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 40px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .lmrbri-odipiko-main {
            background: var(--primary);
            color: var(--white);
            box-shadow: 0 10px 20px rgba(255, 77, 77, 0.3);
        }

        .lmrbri-odipiko-main:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(255, 77, 77, 0.4);
        }

        .lmrbri-odipiko-outline {
            border: 2px solid var(--primary);
            color: var(--primary);
        }

        .lmrbri-odipiko-outline:hover {
            background: rgba(255, 77, 77, 0.05);
            transform: translateY(-3px);
        }

        /* Containers & Cards: naga, ebahaf, cura */
        .lmrbri-naga {
            padding: calc(var(--spacing-unit) * 12) 0;
        }

        .lmrbri-naga-alt {
            background-color: var(--bg-soft);
        }

        .lmrbri-title-block {
            text-align: center;
            margin-bottom: calc(var(--spacing-unit) * 8);
            width: 100%;
        }

        .lmrbri-title-block h2 {
            font-size: clamp(2rem, 4vw, 2.8rem);
            margin-bottom: 16px;
            position: relative;
            display: inline-block;
        }

        .lmrbri-title-block h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
        }

        .lmrbri-ebahaf-grid {
            display: flex;
            flex-wrap: wrap;
            gap: calc(var(--spacing-unit) * 4);
            justify-content: center;
        }

        .lmrbri-cura {
            background: var(--white);
            padding: calc(var(--spacing-unit) * 5);
            border-radius: 20px;
            flex: 1;
            min-width: 300px;
            max-width: 400px;
            transition: all 0.4s ease;
            border: 1px solid rgba(0,0,0,0.03);
            display: flex;
            flex-direction: column;
            word-break: break-word;
        }

        .lmrbri-cura:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
            border-color: var(--primary);
        }

        .lmrbri-cura-img {
            margin-bottom: 24px;
            border-radius: 12px;
            overflow: hidden;
        }

        .lmrbri-cura h3 {
            font-size: 1.5rem;
            margin-bottom: 16px;
            color: var(--primary);
        }

        /* Feature Detailed Section */
        .lmrbri-feature-split {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: calc(var(--spacing-unit) * 8);
            margin-bottom: calc(var(--spacing-unit) * 12);
        }

        .lmrbri-feature-split:nth-child(even) {
            flex-direction: row-reverse;
        }

        .lmrbri-feature-text {
            flex: 1;
            min-width: 320px;
        }

        .lmrbri-feature-visual {
            flex: 1;
            min-width: 320px;
        }

        .lmrbri-feature-visual img {
            border-radius: 30px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        }

        /* FAQ: lmrbri-faq */
        .lmrbri-faq {
            width: 100%;
            max-width: 900px;
            margin: 0 auto;
        }

        .lmrbri-faq-item {
            margin-bottom: 24px;
            padding: 24px;
            background: var(--white);
            border-radius: 16px;
            border-left: 5px solid var(--primary);
        }

        .lmrbri-faq-item h3 {
            margin-bottom: 12px;
            font-size: 1.25rem;
            color: var(--text-main);
        }

        /* Footer: ipegudo, agepaz */
        .lmrbri-ipegudo {
            background: #1a1a1a;
            color: #bdc3c7;
            padding: calc(var(--spacing-unit) * 10) 0 calc(var(--spacing-unit) * 4);
            margin-top: auto;
        }

        .lmrbri-agepaz {
            display: flex;
            flex-wrap: wrap;
            gap: calc(var(--spacing-unit) * 6);
            margin-bottom: calc(var(--spacing-unit) * 8);
        }

        .lmrbri-agepaz-col {
            flex: 1;
            min-width: 200px;
        }

        .lmrbri-agepaz-col h4 {
            color: var(--white);
            margin-bottom: 24px;
            font-size: 1.2rem;
        }

        .lmrbri-agepaz-col ul {
            list-style: none;
        }

        .lmrbri-agepaz-col li {
            margin-bottom: 12px;
        }

        .lmrbri-agepaz-col a:hover {
            color: var(--primary);
        }

        .lmrbri-brand-text {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 16px;
        }

        .lmrbri-copyright {
            width: 100%;
            padding-top: calc(var(--spacing-unit) * 4);
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center;
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            .lmrbri-retowo { text-align: center; }
            .lmrbri-pumaz { justify-content: center; }
            .lmrbri-onilev { display: none; } /* Simplified mobile nav */
        }
    