
        :root {
            --ogazro-primary: #007bff;
            --ogazro-primary-dark: #0056b3;
            --ogazro-accent: #00d4ff;
            --ogazro-bg-light: #f4f7fa;
            --ogazro-text-main: #2d3436;
            --ogazro-text-muted: #636e72;
            --ogazro-white: #ffffff;
            --ogazro-glass: rgba(255, 255, 255, 0.85);
            --ogazro-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            --ogazro-radius: 16px;
            --ogazro-max-width: 1100px;
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            color: var(--ogazro-text-main);
            background-color: var(--ogazro-bg-light);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Typography */
        h1, h2, h3 {
            line-height: 1.2;
            word-break: keep-all;
            white-space: normal;
        }

        p {
            font-size: clamp(1rem, 1vw + 0.5rem, 1.125rem);
            line-height: 1.8;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        /* Layout Helper */
        .ogazro-container {
            max-width: var(--ogazro-max-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        .ogazro-flex {
            display: flex;
            flex-wrap: wrap;
        }

        .ogazro-child {
            min-width: 0;
        }

        /* Header & Navigation */
        .ogazro-header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: var(--ogazro-glass);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .ogazro-nav {
            height: 72px;
            align-items: center;
            justify-content: space-between;
        }

        .ogazro-logo {
            flex: 0 0 auto;
        }

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

        .ogazro-menu {
            list-style: none;
            gap: 8px;
            align-items: center;
        }

        .ogazro-menu li a {
            text-decoration: none;
            color: var(--ogazro-text-main);
            font-size: 14px;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 8px;
            transition: all 0.2s ease;
        }

        .ogazro-menu li a:hover {
            background: rgba(0, 123, 255, 0.08);
            color: var(--ogazro-primary);
        }

        .ogazro-menu li a.ogazro-active {
            background: var(--ogazro-primary);
            color: var(--ogazro-white);
        }

        /* Hero Section - Extension Specific */
        .ogazro-hero-section {
            padding-top: 160px;
            padding-bottom: 80px;
            background: radial-gradient(circle at top right, rgba(0, 212, 255, 0.1), transparent);
            text-align: center;
        }

        .ogazro-hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .ogazro-badge {
            display: inline-block;
            background: rgba(0, 123, 255, 0.1);
            color: var(--ogazro-primary);
            padding: 6px 16px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 13px;
            margin-bottom: 24px;
        }

        .ogazro-hero-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            margin-bottom: 24px;
            color: #1a1a1a;
        }

        .ogazro-hero-subtitle {
            font-size: 1.25rem;
            color: var(--ogazro-text-muted);
            margin-bottom: 48px;
        }

        /* Floating Browser Hub */
        .ogazro-browser-hub {
            background: var(--ogazro-white);
            border-radius: var(--ogazro-radius);
            box-shadow: var(--ogazro-shadow);
            padding: 40px;
            margin-top: 20px;
            border: 1px solid rgba(0, 0, 0, 0.03);
        }

        .ogazro-grid-browsers {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }

        .ogazro-browser-card {
            padding: 32px;
            border-radius: 12px;
            border: 1px solid #edf2f7;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: left;
            position: relative;
            overflow: hidden;
        }

        .ogazro-browser-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
            border-color: var(--ogazro-primary);
        }

        .ogazro-browser-icon {
            width: 56px;
            height: 56px;
            background: #f8fafc;
            border-radius: 12px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }

        .ogazro-browser-name {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .ogazro-browser-desc {
            font-size: 0.95rem;
            color: var(--ogazro-text-muted);
            margin-bottom: 24px;
        }

        .ogazro-btn-install {
            display: inline-block;
            width: 100%;
            text-align: center;
            padding: 12px 24px;
            background: var(--ogazro-primary);
            color: var(--ogazro-white);
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            transition: background 0.2s;
        }

        .ogazro-btn-install:hover {
            background: var(--ogazro-primary-dark);
        }

        /* Features Section */
        .ogazro-features-section {
            padding: 96px 0;
            background: #ffffff;
        }

        .ogazro-section-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .ogazro-feature-row {
            align-items: center;
            gap: 64px;
            margin-bottom: 80px;
        }

        .ogazro-feature-text {
            flex: 1;
            min-width: 300px;
        }

        .ogazro-feature-image {
            flex: 1;
            min-width: 300px;
            background: var(--ogazro-bg-light);
            border-radius: 20px;
            padding: 20px;
            box-shadow: inset 0 0 20px rgba(0,0,0,0.02);
        }

        .ogazro-feature-image img {
            width: 100%;
            border-radius: 12px;
            display: block;
        }

        .ogazro-feature-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--ogazro-primary);
        }

        .ogazro-feature-list {
            list-style: none;
            margin-top: 24px;
        }

        .ogazro-feature-list li {
            position: relative;
            padding-left: 28px;
            margin-bottom: 12px;
            font-weight: 500;
        }

        .ogazro-feature-list li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 8px;
            width: 12px;
            height: 12px;
            background: var(--ogazro-accent);
            border-radius: 3px;
        }

        /* Dynamic Content Section */
        .ogazro-news-section {
            padding: 80px 0;
            background: #f8fafc;
        }

        .ogazro-news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
        }

        .ogazro-news-card {
            background: var(--ogazro-white);
            padding: 32px;
            border-radius: 16px;
            border: 1px solid rgba(0,0,0,0.05);
        }

        /* CTA Section */
        .ogazro-cta-final {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--ogazro-primary) 0%, #0056b3 100%);
            color: var(--ogazro-white);
            text-align: center;
            border-radius: 40px;
            margin: 40px 24px;
        }

        .ogazro-cta-final h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 24px;
        }

        /* Footer */
        .ogazro-footer {
            background: #1a1a1a;
            color: #a0aec0;
            padding: 80px 0 40px;
        }

        .ogazro-footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 48px;
            margin-bottom: 64px;
        }

        .ogazro-footer-brand h3 {
            color: var(--ogazro-white);
            font-size: 24px;
            margin-bottom: 16px;
        }

        .ogazro-footer-links h4 {
            color: var(--ogazro-white);
            margin-bottom: 20px;
            font-size: 16px;
        }

        .ogazro-footer-links ul {
            list-style: none;
        }

        .ogazro-footer-links ul li {
            margin-bottom: 12px;
        }

        .ogazro-footer-links ul li a {
            color: inherit;
            text-decoration: none;
            transition: color 0.2s;
        }

        .ogazro-footer-links ul li a:hover {
            color: var(--ogazro-white);
        }

        .ogazro-copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
        }

        /* Mobile Adjustments */
        @media (max-width: 768px) {
            .ogazro-nav {
                flex-direction: column;
                height: auto;
                padding: 16px 0;
            }
            .ogazro-menu {
                margin-top: 16px;
                justify-content: center;
                gap: 4px;
            }
            .ogazro-menu li a {
                font-size: 12px;
                padding: 6px 8px;
            }
            .ogazro-hero-section {
                padding-top: 120px;
            }
            .ogazro-feature-row {
                flex-direction: column;
                text-align: center;
            }
            .ogazro-feature-list li {
                text-align: left;
            }
            .ogazro-cta-final {
                margin: 20px 16px;
                border-radius: 24px;
            }
        }
    