        .glass-tm {
            background: var(--hero-bg-dark-gradient);
            border-radius: 28px;
            padding: 45px 28px;
            margin: 30px 0;
            position: relative;
            overflow: hidden;
        }

        .glass-tm::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        .glass-tm .gl-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }

        .glass-tm .gl-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text-on-navy);
            margin: 0;
        }

        .glass-tm .gl-nav {
            display: flex;
            gap: 10px;
        }

        .glass-tm .gl-btn {
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 12px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }

        .glass-tm .gl-btn:hover {
            background: var(--gold);
            border-color: var(--gold);
            transform: scale(1.05);
        }

        .glass-tm .gl-btn img {
            width: 14px;
            filter: brightness(0) invert(1);
        }

        /* Glass Card */
        .gl-card {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 22px;
            padding: 26px;
            height: 100%;
            display: flex;
            flex-direction: column;
            transition: all 0.3s;
        }

        .gl-card:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-4px);
        }

        /* Top Row */
        .gl-top {
            display: flex;
            align-items: center;
            margin-bottom: 18px;
        }

        .gl-avatar {
            width: 52px;
            height: 52px;
            border-radius: 16px;
            background: var(--gold);
            border: 2px solid rgba(255, 255, 255, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--navy);
            font-weight: 700;
            font-size: 1.2rem;
            margin-inline-start: 14px;
        }

        .gl-info {
            flex-grow: 1;
        }

        .gl-info h5 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-on-navy);
            margin: 0 0 3px 0;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 0;
        }

        .gl-info .gl-verified {
            width: 20px;
            height: 20px;
            background: var(--gold);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .gl-info .gl-verified svg {
            width: 12px;
            height: 12px;
            fill: var(--navy);
        }

        .gl-info span {
            font-size: 0.82rem;
            color: var(--text-on-navy-muted);
        }

        .gl-rating {
            background: rgba(255, 255, 255, 0.2);
            padding: 8px 14px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            gap: 5px;
            color: var(--text-on-navy);
            font-weight: 700;
        }

        .gl-rating .star {
            color: #ffd700;
        }

        /* Comment */
        .gl-comment {
            color: var(--text-on-navy);
            font-size: 0.94rem;
            line-height: 24px;
            padding: 0;
            flex-grow: 1;
        }

        /* Footer */
        .gl-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 16px;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            margin-top: auto;
        }

        .gl-stars {
            display: flex;
            gap: 3px;
            direction: ltr;
        }

        .gl-stars span {
            font-size: 14px;
            color: #ffd700;
        }

        .gl-stars span.off {
            color: var(--text-on-navy-faint);
        }

        .gl-stars .rate {
            color: #fff;
            font-size: 25px;
            font-weight: 700;
        }

        @media (max-width: 768px) {
            .glass-tm {
                padding: 35px 18px;
            }

            .gl-card {
                padding: 22px;
            }

            .gl-avatar {
                width: 46px;
                height: 46px;
                font-size: 1.1rem;
            }
        }
